/* ==========================================================================
   Bustan Al Abeer Technical Services L.L.C
   Single stylesheet — works for both LTR (English) and RTL (Arabic)
   via CSS logical properties. Do not add a separate Arabic stylesheet.
   ========================================================================== */

:root {
  --ink-900: #08161C;
  --ink-700: #1B3039;
  --ink-500: #47616C;
  --ink-300: #8199A3;

  --brand-900: #06232B;
  --brand-800: #0A3742;
  --brand-700: #0B4A57;
  --brand-600: #0D6070;
  --brand-500: #0E7490;
  --brand-100: #E2F1F4;
  --brand-050: #F1F8F9;

  --accent-600: #C2790B;
  --accent-500: #E9960F;
  --accent-100: #FDF1DC;

  --surface: #FFFFFF;
  --surface-2: #F5F8F9;
  --surface-3: #EDF2F4;
  --line: #DFE7EA;

  --ok: #0F7B4F;

  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(8, 22, 28, .06), 0 2px 8px rgba(8, 22, 28, .05);
  --shadow-md: 0 4px 12px rgba(8, 22, 28, .07), 0 12px 32px rgba(8, 22, 28, .07);
  --shadow-lg: 0 10px 24px rgba(8, 22, 28, .09), 0 28px 60px rgba(8, 22, 28, .10);

  --wrap: 1180px;
  --gutter: 20px;

  --font-en: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-ar: "IBM Plex Sans Arabic", "Noto Kufi Arabic", -apple-system, "Segoe UI", Tahoma, sans-serif;
  --font: var(--font-en);
}

html[lang="ar"] { --font: var(--font-ar); }

/* ---------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html[lang="ar"] body { font-size: 17px; line-height: 1.85; }

img, svg, video { display: block; max-width: 100%; }
a { color: var(--brand-600); text-decoration: none; }
a:hover { color: var(--brand-800); }
ul, ol { padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 { color: var(--ink-900); line-height: 1.22; font-weight: 700; letter-spacing: -.015em; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4 { letter-spacing: 0; line-height: 1.4; }

h1 { font-size: clamp(2rem, 1.35rem + 2.7vw, 3.35rem); }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + .45vw, 1.35rem); }

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

.skip {
  position: absolute; inset-inline-start: -9999px; top: 0; z-index: 999;
  background: var(--brand-900); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip:focus { inset-inline-start: 0; color: #fff; }

/* ---------------------------------------------------------------- layout */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(52px, 7vw, 92px); }
.section--tight { padding-block: clamp(38px, 5vw, 62px); }
.section--alt { background: var(--surface-2); }
.section--dark { background: var(--brand-900); color: #C9DDE2; }
.section--dark h2, .section--dark h3 { color: #fff; }

.grid { display: grid; gap: 22px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } }

.lead { font-size: 1.1rem; color: var(--ink-500); max-width: 68ch; }
.muted { color: var(--ink-500); }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-600); margin-block-end: 14px;
}
html[lang="ar"] .kicker { letter-spacing: 0; text-transform: none; font-size: .88rem; }
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--accent-500); }

.head { max-width: 72ch; margin-block-end: 38px; }
.head p { margin-block-start: 12px; }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 650; font-size: .95rem; line-height: 1.2; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--brand-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brand-700); color: #fff; box-shadow: var(--shadow-md); }

.btn--accent { background: var(--accent-500); color: #2A1C02; }
.btn--accent:hover { background: var(--accent-600); color: #fff; }

.btn--ghost { border-color: var(--line); background: var(--surface); color: var(--ink-900); }
.btn--ghost:hover { border-color: var(--brand-500); color: var(--brand-700); }

.btn--light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--light:hover { background: #fff; color: var(--brand-900); }

.btn--wa { background: #1FA855; color: #fff; }
.btn--wa:hover { background: #17864380; background: #178643; color: #fff; }

.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* icons flip direction-sensitive arrows */
.btn .arw { transition: transform .2s ease; }
[dir="rtl"] .btn .arw { transform: scaleX(-1); }
.btn:hover .arw { transform: translateX(3px); }
[dir="rtl"] .btn:hover .arw { transform: scaleX(-1) translateX(3px); }

/* ---------------------------------------------------------------- header */
.topbar {
  background: var(--brand-900); color: #9FC3CC; font-size: .83rem;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; flex-wrap: wrap; }
.topbar a { color: #D6EAEF; }
.topbar a:hover { color: #fff; }
.topbar__set { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
@media (max-width: 720px) { .topbar__licence { display: none; } }
/* the sticky call bar already carries phone + WhatsApp on phones */
@media (max-width: 768px) { .topbar { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94); backdrop-filter: saturate(160%) blur(10px);
  border-block-end: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 18px; min-height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 12px; margin-inline-end: auto; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 11px; flex: none;
  background: linear-gradient(145deg, var(--brand-600), var(--brand-800));
  color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .95rem; letter-spacing: .02em;
  box-shadow: var(--shadow-sm);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-weight: 750; color: var(--ink-900); font-size: 1rem; }
.brand__sub { font-size: .73rem; color: var(--ink-500); letter-spacing: .04em; }
@media (max-width: 460px) { .brand__sub { display: none; } .site-header .wrap { min-height: 64px; gap: 12px; } }
html[lang="ar"] .brand__sub { letter-spacing: 0; font-size: .78rem; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  display: inline-block; padding: 10px 14px; border-radius: 9px;
  color: var(--ink-700); font-weight: 550; font-size: .95rem;
}
.nav a:hover { background: var(--surface-2); color: var(--brand-700); }
.nav a[aria-current="page"] { color: var(--brand-700); background: var(--brand-050); }

.has-drop { position: relative; }
.has-drop > a::after {
  /* physical borders on purpose: a down-chevron must stay a down-chevron in RTL */
  content: ""; display: inline-block; width: 6px; height: 6px; margin-inline-start: 7px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: .6;
}
.drop {
  position: absolute; inset-inline-start: 0; top: calc(100% + 8px);
  min-width: 320px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; padding: 9px 12px; font-size: .9rem; font-weight: 500; border-radius: 8px; }
.drop__all { margin-block-start: 4px; border-block-start: 1px solid var(--line); padding-block-start: 6px; }
.drop__all a { color: var(--brand-600); font-weight: 650; }

.header-cta { display: flex; align-items: center; gap: 10px; }

.lang {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px;
  border: 1px solid var(--line); border-radius: 999px; font-size: .85rem; font-weight: 600; color: var(--ink-700);
}
.lang:hover { border-color: var(--brand-500); color: var(--brand-700); }

.burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff;
  border-radius: 11px; cursor: pointer; padding: 0; place-items: center;
}
.burger span, .burger span::before, .burger span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink-900); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.burger span::before { transform: translateY(-6px); }
.burger span::after { transform: translateY(4px); }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(0) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-2px) rotate(-45deg); }

@media (max-width: 1040px) {
  .burger { display: grid; }
  .nav {
    position: fixed; inset-block-start: 0; inset-inline-end: 0; inset-block-end: 0;
    width: min(360px, 88vw); background: #fff; flex-direction: column; align-items: stretch;
    gap: 2px; padding: 86px 18px 28px; overflow-y: auto; box-shadow: var(--shadow-lg);
    transform: translateX(110%); transition: transform .25s ease; z-index: 90;
  }
  [dir="rtl"] .nav { transform: translateX(-110%); }
  .nav.is-open { transform: translateX(0); }
  .nav a { padding: 12px 14px; }
  .has-drop > a::after { display: none; }
  .drop {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; border-inline-start: 2px solid var(--line); border-radius: 0; padding: 2px 0;
    margin-inline-start: 14px; min-width: 0; display: none;
  }
  .has-drop.is-open .drop { display: block; }
  .header-cta .btn { display: none; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(8,22,28,.45); opacity: 0; visibility: hidden;
    transition: opacity .25s ease, visibility .25s; z-index: 80;
  }
  .nav-backdrop.is-on { opacity: 1; visibility: visible; }
}

/* ---------------------------------------------------------------- hero */
.hero {
  position: relative; background: var(--brand-900); color: #C9DDE2; overflow: hidden;
  padding-block: clamp(56px, 8vw, 104px);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(14,116,144,.55), transparent 62%),
    radial-gradient(760px 420px at 4% 108%, rgba(233,150,15,.16), transparent 60%);
}
.hero__grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 46px; align-items: center; }
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; gap: 34px; } }

.hero .kicker { color: #8FD3E0; }
.hero h1 { color: #fff; }
.hero p { margin-block-start: 18px; font-size: 1.08rem; color: #B7D2D9; max-width: 60ch; }
.hero .btn-row { margin-block-start: 28px; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-block-start: 26px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px; font-size: .8rem; font-weight: 600;
  padding: 7px 13px; border-radius: 999px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16); color: #D9EBEF;
}
.badge__dot { width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; flex: none; }

.stats { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.14); border-radius: var(--radius); overflow: hidden; margin-block-start: 52px; }
.stats > div { background: var(--brand-900); padding: 22px 18px; text-align: center; }
.stats b { display: block; font-size: 1.7rem; color: #fff; font-weight: 750; line-height: 1.1; }
.stats span { display: block; font-size: .82rem; color: #9FC3CC; margin-block-start: 6px; }
@media (max-width: 620px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------------------------------------------------------------- media placeholder */
.media {
  position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface-3); aspect-ratio: var(--ar, 4/3); box-shadow: var(--shadow-md);
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media__hint { display: none; }
.media.is-empty {
  display: grid; place-items: center; text-align: center; padding: 22px;
  background:
    repeating-linear-gradient(45deg, rgba(14,116,144,.05) 0 12px, transparent 12px 24px),
    var(--surface-3);
  border: 2px dashed #B9CBD2; box-shadow: none;
}
.media.is-empty .media__hint {
  display: block; font-size: .82rem; line-height: 1.6; color: var(--ink-500); font-weight: 600;
  letter-spacing: .01em; max-width: 30ch;
}
.media.is-empty .media__hint code {
  display: inline-block; margin-block-start: 6px; padding: 3px 9px; border-radius: 6px;
  background: #fff; border: 1px solid var(--line); color: var(--brand-700); font-size: .8rem;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; direction: ltr;
}
.media--hero { --ar: 4/3; }
.media--wide { --ar: 16/9; }
.media--square { --ar: 1/1; }

/* ---------------------------------------------------------------- cards */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column; gap: 10px; height: 100%;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #C9DBE0; }
.card h3 { font-size: 1.1rem; }
.card p { color: var(--ink-500); font-size: .95rem; }

.card__icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex: none;
  background: var(--brand-050); color: var(--brand-600); margin-block-end: 6px;
}
.card__icon svg { width: 23px; height: 23px; }
.card__more {
  margin-block-start: auto; padding-block-start: 12px; font-weight: 650; font-size: .9rem;
  color: var(--brand-600); display: inline-flex; align-items: center; gap: 7px;
}
.card--service { text-decoration: none; }
.card--service:hover .card__more { gap: 11px; }

.card--num { padding-block-start: 30px; }
.card__num {
  font-size: .78rem; font-weight: 800; letter-spacing: .1em; color: var(--accent-600);
  background: var(--accent-100); display: inline-grid; place-items: center;
  width: 30px; height: 30px; border-radius: 9px; margin-block-end: 8px;
}

.tag {
  display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--brand-600); background: var(--brand-050);
  padding: 5px 11px; border-radius: 999px; align-self: flex-start;
}
html[lang="ar"] .tag { text-transform: none; letter-spacing: 0; font-size: .8rem; }

/* ---------------------------------------------------------------- lists */
.ticks { display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; }
.ticks li::before {
  content: ""; flex: none; width: 21px; height: 21px; border-radius: 50%; margin-block-start: 3px;
  background: var(--brand-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230D6070' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
}

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 9px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
  font-size: .9rem; font-weight: 550; color: var(--ink-700);
}

/* ---------------------------------------------------------------- steps */
.steps { display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); counter-reset: s; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-block-start: 44px; }
.step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  position: absolute; inset-block-start: 0; inset-inline-start: 0;
  font-size: .95rem; font-weight: 800; color: var(--brand-600);
  background: #fff; border: 1.5px solid var(--brand-100); width: 34px; height: 34px;
  border-radius: 10px; display: grid; place-items: center;
}
.step h3 { font-size: 1.02rem; margin-block-end: 6px; }
.step p { font-size: .93rem; color: var(--ink-500); }
.section--alt .step::before { background: #fff; }

/* ---------------------------------------------------------------- faq */
.faq { display: grid; gap: 12px; max-width: 860px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 18px 22px; font-weight: 650; color: var(--ink-900); list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  /* physical borders on purpose: a down-chevron must stay a down-chevron in RTL */
  content: ""; flex: none; width: 10px; height: 10px;
  border-right: 2px solid var(--brand-600); border-bottom: 2px solid var(--brand-600);
  transform: rotate(45deg) translateY(-3px); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(225deg) translateY(-3px); }
.faq details[open] summary { border-block-end: 1px solid var(--line); }
.faq .faq__a { padding: 16px 22px 20px; color: var(--ink-500); font-size: .96rem; }

/* ---------------------------------------------------------------- cta band */
.band {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-900));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(30px, 4.5vw, 52px);
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.band h2 { color: #fff; }
.band p { color: #B7D2D9; margin-block-start: 8px; max-width: 54ch; }

/* ---------------------------------------------------------------- page head */
.pagehead {
  background: var(--brand-900); color: #B7D2D9; padding-block: clamp(40px, 6vw, 72px);
  position: relative; overflow: hidden;
}
.pagehead::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 420px at 82% -20%, rgba(14,116,144,.5), transparent 62%);
}
.pagehead .wrap { position: relative; }
.pagehead h1 { color: #fff; }
.pagehead p { margin-block-start: 14px; color: #B7D2D9; max-width: 68ch; }

.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .84rem; margin-block-end: 16px; color: #7FA7B2; }
.crumbs a { color: #A9CBD3; }
.crumbs a:hover { color: #fff; }
.crumbs span::after { content: "/"; margin-inline-start: 8px; opacity: .5; }
[dir="rtl"] .crumbs span::after { content: "\\"; }
.crumbs span:last-child::after { content: none; }
.crumbs__last { color: #C4DCE2; }

/* ---------------------------------------------------------------- service page */
.split { display: grid; grid-template-columns: 1.35fr .65fr; gap: 42px; align-items: start; }
@media (max-width: 960px) { .split { grid-template-columns: 1fr; gap: 30px; } }

.prose > * + * { margin-block-start: 18px; }
.prose h2 { margin-block-start: 34px; }
.prose p { color: var(--ink-700); }

.aside {
  position: sticky; top: 96px; display: grid; gap: 18px;
}
@media (max-width: 960px) { .aside { position: static; } }
.panel {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
}
.panel--dark { background: var(--brand-900); border-color: var(--brand-800); color: #B7D2D9; }
.panel--dark h3 { color: #fff; }
.panel h3 { font-size: 1.05rem; margin-block-end: 12px; }
.panel .btn { margin-block-start: 6px; }

.sidelist { display: grid; gap: 2px; }
.sidelist a {
  display: block; padding: 10px 12px; border-radius: 8px; font-size: .92rem; color: var(--ink-700); font-weight: 500;
}
.sidelist a:hover { background: #fff; color: var(--brand-700); }
.sidelist a[aria-current="true"] { background: #fff; color: var(--brand-700); font-weight: 650; box-shadow: var(--shadow-sm); }

/* ---------------------------------------------------------------- table */
.table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.table th, .table td { padding: 13px 16px; border-block-end: 1px solid var(--line); text-align: start; vertical-align: top; }
.table th { width: 42%; color: var(--ink-500); font-weight: 600; }
.table td { color: var(--ink-900); font-weight: 600; }
.table tr:last-child th, .table tr:last-child td { border-block-end: 0; }

/* ---------------------------------------------------------------- forms */
.form { display: grid; gap: 16px; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form .row2 { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field label { font-size: .88rem; font-weight: 650; color: var(--ink-900); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 4px rgba(14,116,144,.12);
}
.field .req { color: #C2410C; }
.form__note { font-size: .86rem; color: var(--ink-500); }
.form__msg {
  display: none; padding: 14px 16px; border-radius: var(--radius-sm); font-size: .92rem; font-weight: 600;
  background: #E9F7F0; color: var(--ok); border: 1px solid #BFE6D4;
}
.form__msg.is-on { display: block; }

/* ---------------------------------------------------------------- contact */
.contact-list { display: grid; gap: 4px; }
.contact-row {
  display: flex; gap: 14px; align-items: flex-start; padding: 15px 0; border-block-end: 1px solid var(--line);
}
.contact-row:last-child { border-block-end: 0; }
.contact-row__ico {
  width: 40px; height: 40px; flex: none; border-radius: 11px; background: var(--brand-050);
  color: var(--brand-600); display: grid; place-items: center;
}
.contact-row__ico svg { width: 19px; height: 19px; }
.contact-row__k { font-size: .8rem; color: var(--ink-500); font-weight: 600; }
.contact-row__v { font-weight: 650; color: var(--ink-900); }
.contact-row__v a { color: var(--ink-900); }
.contact-row__v a:hover { color: var(--brand-600); }
.ltr { direction: ltr; unicode-bidi: embed; display: inline-block; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--brand-900); color: #9FC3CC; padding-block: 58px 0; margin-block-start: 0; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-block-end: 16px; letter-spacing: .02em; }
.site-footer a { color: #A9CBD3; font-size: .92rem; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 38px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid ul { display: grid; gap: 9px; }
.footer__about p { font-size: .92rem; margin-block-start: 14px; color: #8FB4BE; max-width: 40ch; }
.footer__brand { display: inline-flex; align-items: center; gap: 12px; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__sub { color: #7FA7B2; }
.footer__licence {
  margin-block-start: 18px; font-size: .8rem; color: #7FA7B2; line-height: 1.8;
  border-inline-start: 2px solid var(--brand-700); padding-inline-start: 14px;
}
.footer-bottom {
  margin-block-start: 44px; border-block-start: 1px solid rgba(255,255,255,.1);
  padding-block: 20px 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .84rem; color: #7FA7B2;
}

/* ---------------------------------------------------------------- mobile call bar */
.callbar {
  position: fixed; inset-inline: 0; inset-block-end: 0; z-index: 70; display: none;
  background: #fff; border-block-start: 1px solid var(--line); padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  gap: 9px; box-shadow: 0 -6px 20px rgba(8,22,28,.09);
}
.callbar .btn { flex: 1; padding: 12px 10px; font-size: .9rem; }
@media (max-width: 768px) { .callbar { display: flex; } body { padding-block-end: 74px; } }

/* ---------------------------------------------------------------- utils */
.center { text-align: center; }
.mt-0 { margin-block-start: 0; }
.mt-24 { margin-block-start: 24px; }
.mt-32 { margin-block-start: 32px; }
.mb-0 { margin-block-end: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media print {
  .site-header, .topbar, .callbar, .site-footer, .band { display: none !important; }
  body { padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
