/* ==========================================================================
   iVISION Enterprise — site theme
   White/black look carried over from ivision.om: Fraunces (serif display) +
   Familjen Grotesk (grotesque text), white paper, full-bleed black bands,
   slate accent sampled from the 2026 logo (#304c5e).

   Softened 2026-08-08 from the original editorial-sharp treatment to a
   rounded, modern one: large radii, pill buttons and nav, filled form
   controls, soft layered shadows. The palette and type are untouched — the
   colours come from the logo, so only the geometry changed.

   It is all driven by the --r-* and --shadow-* tokens below, so the whole
   site's softness is adjustable from one place. Keep it that way: reach for
   a token rather than writing a literal radius. The only literals left are
   the genuinely circular things (50%), the phone mock's bezel and the chat
   bubble's tail.
   ========================================================================== */

/* --------------------------------------------------------------- tokens -- */
:root {
  --paper:        #ffffff;
  --paper-2:      #f5f7f8;
  --paper-3:      #eceff1;
  --black:        #000000;
  --ink:          #14181c;
  --ink-soft:     #323232;
  --muted:        #6f7680;
  --muted-2:      #9aa1a9;

  --slate:        #304c5e;   /* logo accent */
  --slate-deep:   #253b49;
  --slate-tint:   rgba(48, 76, 94, 0.08);
  --slate-pale:   #a8bcc9;

  --line:         rgba(20, 24, 28, 0.13);
  --line-soft:    rgba(20, 24, 28, 0.08);
  --line-invert:  rgba(255, 255, 255, 0.16);

  --display: "Fraunces", "Georgia", "Times New Roman", serif;
  --text:    "Familjen Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;

  --wrap:    1200px;
  --gutter:  clamp(20px, 4vw, 40px);
  --band-y:  clamp(68px, 9vw, 128px);

  /* Radius scale. The site reads soft and modern rather than editorial-sharp,
     so these are large — every surface is rounded from the same four steps.
     Change them here and the whole site follows; nothing hardcodes a radius
     except the deliberately circular things (.wa, bullet dots, .badge-soon). */
  --r-sm:   10px;   /* small controls: menu items, tags, file button */
  --r:      18px;   /* the default surface: cards, plans, tiles, notes */
  --r-lg:   28px;   /* imagery and large panels */
  --r-pill: 100px;  /* buttons, nav pills, anything capsule-shaped */

  /* Soft layered shadows. Two stops each — a tight contact shadow plus a wide
     diffuse one — because a single large blur reads as haze, not lift. */
  --shadow-sm: 0 1px 2px rgba(20, 24, 28, 0.04), 0 6px 16px rgba(20, 24, 28, 0.05);
  --shadow-md: 0 2px 4px rgba(20, 24, 28, 0.04), 0 14px 34px rgba(20, 24, 28, 0.08);
  --shadow-lg: 0 4px 8px rgba(20, 24, 28, 0.05), 0 28px 64px rgba(20, 24, 28, 0.13);
  --shadow-slate: 0 3px 8px rgba(48, 76, 94, 0.07), 0 22px 50px rgba(48, 76, 94, 0.15);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  /* a gentle overshoot for things that grow on hover */
  --ease-soft: cubic-bezier(0.34, 1.24, 0.64, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.014em;
  font-optical-sizing: auto;
}

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; }

strong { font-weight: 700; color: var(--ink); }

::selection { background: var(--slate); color: #fff; }

/* No border-radius here on purpose: the outline already follows each element's
   own curve, and setting one would flatten a pill button while it is focused. */
:focus-visible {
  outline: 2px solid var(--slate);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  inset-inline-start: -9999px;
  top: 0;
  z-index: 200;
  background: var(--black);
  color: #fff;
  padding: 12px 20px;
  font-size: 14px;
}
.skip:focus { inset-inline-start: 12px; top: 12px; }

/* --------------------------------------------------------------- layout -- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.band { padding-block: var(--band-y); position: relative; }
.band--tint  { background: var(--paper-2); }
.band--tint2 { background: var(--paper-3); }
.band--dark  { background: var(--black); }
.band--slate { background: var(--slate-deep); }
.band--tight { padding-block: clamp(48px, 6vw, 84px); }

.band--dark,
.band--slate { color: rgba(255, 255, 255, 0.76); }
.band--dark h1, .band--dark h2, .band--dark h3, .band--dark h4,
.band--slate h1, .band--slate h2, .band--slate h3, .band--slate h4 { color: #fff; }
.band--dark strong, .band--slate strong { color: #fff; }

/* ------------------------------------------------------------ typography -- */
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--text);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
}
.kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  flex: none;
  opacity: 0.65;
}
.band--dark .kicker,
.band--slate .kicker,
.hero--dark .kicker { color: var(--slate-pale); }

.title    { font-size: clamp(29px, 4.2vw, 54px); }
.title--sm { font-size: clamp(25px, 2.9vw, 36px); }
.title--lg { font-size: clamp(33px, 5.4vw, 68px); }

.lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.68;
  color: var(--muted);
  max-width: 62ch;
}
.band--dark .lede,
.band--slate .lede { color: rgba(255, 255, 255, 0.7); }

.rule {
  width: 54px;
  height: 2px;
  border: 0;
  background: var(--slate);
  margin: 22px 0;
}
.band--dark .rule,
.band--slate .rule { background: rgba(255, 255, 255, 0.55); }

.section-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 62px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head.center .rule  { margin-inline: auto; }
.section-head.center .lede  { margin-inline: auto; }
.section-head > p:not(.kicker) { margin-top: 18px; }

/* -------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: 1px solid var(--black);
  border-radius: var(--r-pill);
  background: var(--black);
  color: #fff;
  font-family: var(--text);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.28s var(--ease), border-color 0.28s var(--ease),
              color 0.28s var(--ease), transform 0.3s var(--ease-soft),
              box-shadow 0.3s var(--ease);
}
.btn:hover {
  background: var(--slate);
  border-color: var(--slate);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn:active { transform: translateY(0); box-shadow: var(--shadow-sm); }
/* the transparent variants carry no shadow at rest — a shadow under a
   see-through pill reads as a rendering bug, not as lift */
.btn--outline { background: transparent; color: var(--ink); box-shadow: none; }
.btn--outline:hover { background: var(--black); border-color: var(--black); color: #fff; }

.btn--light { background: #fff; border-color: #fff; color: var(--ink); }
.btn--light:hover { background: var(--slate); border-color: var(--slate); color: #fff; }

.btn--ghost { background: transparent; border-color: var(--line-invert); color: #fff; box-shadow: none; }
.btn--ghost:hover { background: #fff; border-color: #fff; color: var(--ink); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* text link with arrow — the old site's "Start Now" affordance */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--text);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), gap 0.25s var(--ease);
}
.arrow-link::after { content: "\2192"; font-size: 15px; letter-spacing: 0; }
.arrow-link:hover { color: var(--slate); border-color: var(--slate); gap: 15px; }
.band--dark .arrow-link,
.band--slate .arrow-link { color: #fff; border-color: var(--line-invert); }
.band--dark .arrow-link:hover,
.band--slate .arrow-link:hover { color: #fff; border-color: #fff; }

/* --------------------------------------------------------------- header -- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
/* the divider only appears once the header lifts off the page — at rest the
   soft look wants no hard line under it */
.site-header[data-stuck="true"] {
  border-bottom-color: var(--line-soft);
  box-shadow: 0 10px 40px rgba(20, 24, 28, 0.07);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 82px;
}

.brand { flex: none; display: block; }
.brand img {
  height: 46px;
  width: auto;
  transition: opacity 0.25s var(--ease);
}
.brand:hover img { opacity: 0.78; }

.nav {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav > a,
.nav-group > button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border: 0;
  border-radius: var(--r-pill);
  background: none;
  font-family: var(--text);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  /* isolate so the z-index:-1 pill below is trapped in this element's own
     stacking context. Without it the pill escapes to the .site-header context
     and paints *behind* the header background — i.e. invisible. */
  isolation: isolate;
  transition: color 0.22s var(--ease);
}
/* Hover is a soft pill behind the label rather than an underline. It scales
   from the centre, so unlike the old scaleX(0)/transform-origin:left rule it
   needs no direction-specific CSS and mirrors correctly on the Arabic pages. */
.nav > a::after,
.nav-group > button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--slate-tint);
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 0.24s var(--ease), transform 0.28s var(--ease-soft);
}
.nav > a:hover, .nav-group > button:hover { color: var(--slate); }
.nav > a:hover::after,
.nav-group:hover > button::after,
.nav > a[aria-current="page"]::after { opacity: 1; transform: scale(1); }
.nav > a[aria-current="page"] { color: var(--slate); }

.nav .nav-cta {
  margin-inline-start: 10px;
  padding: 13px 24px;
  background: var(--black);
  color: #fff;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  transition: background 0.26s var(--ease), box-shadow 0.26s var(--ease);
}
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { background: var(--slate); color: #fff; box-shadow: var(--shadow-md); }

/* services dropdown */
.nav-group { position: relative; }
.nav-group > button .caret {
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s var(--ease);
}
.nav-group[data-open="true"] > button .caret { transform: rotate(225deg) translateY(-1px); }

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  translate: -50% 0;
  min-width: 310px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.24s var(--ease), transform 0.24s var(--ease), visibility 0.24s;
}
.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu,
.nav-group[data-open="true"] .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-menu a small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted-2);
  margin-top: 2px;
}
.nav-menu a:hover { background: var(--paper-2); color: var(--slate); }

/* the dropdown nearest the right edge is anchored to it, not centred, or a
   310px menu clips off-screen between 980px and ~1100px */
.nav-menu--right { inset-inline-start: auto; inset-inline-end: 0; translate: none; }

.nav-toggle {
  display: none;
  margin-inline-start: auto;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: none;
  cursor: pointer;
  position: relative;
  transition: background 0.24s var(--ease), border-color 0.24s var(--ease);
}
.nav-toggle:hover { background: var(--slate-tint); border-color: var(--slate); }
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.28s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span { top: 50%; margin-top: -0.75px; }
.nav-toggle span::before { content: ""; top: -6.5px; }
.nav-toggle span::after  { content: ""; top:  6.5px; }
.nav-toggle[aria-expanded="true"] span { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::before { opacity: 0; }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-90deg) translateX(6.5px); }

/* ----------------------------------------------------------------- hero -- */
.hero {
  padding-top: clamp(50px, 6vw, 88px);
  padding-bottom: clamp(50px, 6vw, 88px);
  position: relative;
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 2; }

.hero--split .wrap {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(35px, 5.6vw, 70px);
  color: var(--ink-soft);
}
.hero .lede { margin-top: 22px; }

.hero-art { position: relative; }
.hero-art img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

/* watermark hexagon behind the hero */
.hero-mark {
  position: absolute;
  top: 50%;
  inset-inline-end: -140px;
  translate: 0 -50%;
  width: min(620px, 55vw);
  opacity: 0.038;
  z-index: 1;
  pointer-events: none;
}

.hero--page { padding-block: clamp(46px, 5.6vw, 78px); }
.hero--page h1 { font-size: clamp(32px, 4.8vw, 58px); }

.hero--dark { background: var(--black); color: rgba(255, 255, 255, 0.76); }
.hero--dark h1 { color: #fff; }
.hero--dark .lede { color: rgba(255, 255, 255, 0.7); }
.hero--dark .hero-mark { opacity: 0.07; }

.hero--tint { background: var(--paper-2); }

/* small facts strip under the hero copy */
.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  list-style: none;
}
.facts li {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--muted);
}
.facts b {
  display: block;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.hero--dark .facts { border-color: var(--line-invert); }
.hero--dark .facts li { color: rgba(255, 255, 255, 0.6); }
.hero--dark .facts b { color: #fff; }

/* -------------------------------------------------------------- marquee -- */
.marquee {
  background: var(--black);
  color: #fff;
  overflow: hidden;
  padding: 21px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track > span {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding-inline-end: 30px;
  font-family: var(--text);
  font-size: clamp(14px, 1.5vw, 19px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track img {
  width: 20px;
  opacity: 0.62;
  flex: none;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ------------------------------------------------------- brand statement -- */
.statement { text-align: center; max-width: 940px; margin-inline: auto; }
.statement .eyebrow-serif {
  font-family: var(--display);
  font-size: clamp(23px, 2.4vw, 34px);
  color: var(--slate);
  margin-bottom: 12px;
}
.statement h2 {
  font-size: clamp(32px, 5.2vw, 62px);
  margin-bottom: 26px;
}
.statement .lede { margin-inline: auto; }

/* ---------------------------------------------------------------- grids -- */
.grid { display: grid; gap: clamp(18px, 2.2vw, 28px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* image tiles with a white label — the old site's services grid */
.tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3.15;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--ink);
  isolation: isolate;
  box-shadow: var(--shadow-sm);
  transition: transform 0.34s var(--ease-soft), box-shadow 0.34s var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
/* photo variant */
.tile--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease), opacity 0.4s var(--ease);
  opacity: 0.82;
}
.tile--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.42) 42%, rgba(0,0,0,0.06) 100%);
}
.tile--photo:hover img { transform: scale(1.06); opacity: 0.92; }

/* typographic variant — used for the services grid, because the catalog's
   own overview icons are only ~200-500px and will not carry a large tile. */
.tile--type {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 4 / 3.5;
  padding: 28px;
  background: linear-gradient(155deg, #202a32 0%, #000000 68%);
  transition: background 0.45s var(--ease);
}
.tile--type:hover { background: linear-gradient(155deg, #2b3a45 0%, #000000 72%); }

.tile--type .tile-num {
  position: relative;
  z-index: 2;
  font-family: var(--text);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--slate-pale);
}
.tile--type .tile-body {
  position: relative;
  inset: auto;
  padding: 0;
}
.tile--type .tile-mark {
  position: absolute;
  inset: auto -9% -13% auto;
  width: 58%;
  height: auto;
  opacity: 0.075;
  z-index: 1;
  transition: opacity 0.5s var(--ease), transform 0.7s var(--ease);
}
.tile--type:hover .tile-mark { opacity: 0.13; transform: scale(1.05); }

.tile-body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 26px 26px 24px;
}
.tile-body h3 {
  font-family: var(--text);
  font-weight: 700;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.25;
  letter-spacing: 0.005em;
  color: #fff;
}
.tile-body p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
  max-width: 34ch;
}
.tile-body .go {
  display: inline-block;
  margin-top: 14px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.tile:hover .tile-body .go,
.tile:focus-visible .tile-body .go { opacity: 1; transform: translateY(0); }
@media (hover: none) {
  .tile-body .go { opacity: 1; transform: none; }
}

/* plain cards */
.card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s var(--ease), transform 0.32s var(--ease-soft),
              box-shadow 0.3s var(--ease);
}
.card:hover {
  border-color: var(--slate);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card h3 { font-size: 21px; margin-bottom: 10px; }

/* card with an image on top — used for product screenshots, which must not be
   darkened or cropped tight or the UI in them stops reading. */
.card--media { padding: 0; overflow: hidden; }
.card--media figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper-3);
  border-bottom: 1px solid var(--line-soft);
}
.card--media figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s var(--ease);
}
.card--media:hover figure img { transform: scale(1.04); }
.card--media .card-body { padding: 24px 26px 28px; }
.card--media .card-body h4 { font-size: 20px; margin-bottom: 8px; }
.card--media .card-body p { font-size: 15px; line-height: 1.62; color: var(--muted); margin: 0; }
.card h3 + p { color: var(--muted); font-size: 15.5px; line-height: 1.65; }
.card .num {
  font-family: var(--text);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--slate);
  display: block;
  margin-bottom: 14px;
}
.band--dark .card,
.band--slate .card {
  background: rgba(255, 255, 255, 0.045);
  border-color: var(--line-invert);
  /* a light-ink shadow does nothing on black except muddy the edge */
  box-shadow: none;
}
.band--dark .card:hover,
.band--slate .card:hover { border-color: rgba(255, 255, 255, 0.5); box-shadow: none; }
.band--dark .card h3 + p,
.band--slate .card h3 + p { color: rgba(255, 255, 255, 0.68); }
.band--dark .card .num,
.band--slate .card .num { color: var(--slate-pale); }

/* spec list — a titled group of bullets (hardware / module lists) */
.spec {
  border-top: 2px solid var(--ink);
  padding-top: 20px;
}
.spec h3 { font-size: 19px; margin-bottom: 14px; }
.spec ul { list-style: none; }
.spec li {
  position: relative;
  padding-inline-start: 19px;
  margin-bottom: 9px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
}
.spec li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.62em;
  width: 7px;
  height: 1.5px;
  background: var(--slate);
}
.spec li:last-child { margin-bottom: 0; }
.band--dark .spec,
.band--slate .spec { border-color: rgba(255, 255, 255, 0.45); }
.band--dark .spec li,
.band--slate .spec li { color: rgba(255, 255, 255, 0.68); }
.band--dark .spec li::before,
.band--slate .spec li::before { background: #fff; opacity: 0.6; }

/* feature list with headings */
.features { list-style: none; }
.features li { padding: 22px 0; border-top: 1px solid var(--line); }
.features li:last-child { border-bottom: 1px solid var(--line); }
.features h4 { font-size: 19px; margin-bottom: 7px; }
.features p { font-size: 15.5px; line-height: 1.65; color: var(--muted); margin: 0; }
.band--dark .features li,
.band--slate .features li { border-color: var(--line-invert); }
.band--dark .features p,
.band--slate .features p { color: rgba(255, 255, 255, 0.68); }

/* ------------------------------------------------------ alternating rows -- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}
.split--wide-text { grid-template-columns: 1.15fr 0.85fr; }
.split--wide-art  { grid-template-columns: 0.85fr 1.15fr; }
.split--top { align-items: start; }
.split + .split { margin-top: clamp(52px, 7vw, 104px); }
.split.rev > *:first-child { order: 2; }

.split-art { position: relative; }
/* Two screenshots stacked in one art column, for a claim whose two halves each
   need their own proof — supplier bills AND the petty cash box. */
.split-art--stack { display: grid; gap: clamp(12px, 1.6vw, 20px); }
.split-art img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.band--dark .split-art img,
.band--slate .split-art img { box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5); }

/* --------------------------------------------------------------- plans --
   Five tiers. auto-fit + minmax lets the row reflow 5 → 3 → 2 → 1 on its own
   rather than needing a breakpoint per count. Logical properties throughout so
   the Arabic page mirrors without a second stylesheet. */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(196px, 1fr));
  gap: clamp(14px, 1.6vw, 20px);
  align-items: stretch;
}
.plan {
  display: flex;
  flex-direction: column;
  padding: 28px 24px 26px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: transform 0.32s var(--ease-soft), box-shadow 0.32s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan--feature { border-color: var(--slate); box-shadow: var(--shadow-slate); }
.plan-name {
  font-family: var(--display);
  font-size: 21px;
  color: var(--ink);
  margin-bottom: 4px;
}
.plan-for {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  min-height: 3.9em;
  margin-bottom: 16px;
}
.plan-price {
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
  color: var(--slate);
  letter-spacing: -0.02em;
}
.plan-price small {
  display: block;
  font-family: var(--text);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 6px;
}
/* the yearly alternative, sitting directly under the monthly figure it
   discounts — a saving shown anywhere else reads as a separate charge */
.plan-year {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--muted);
}
.plan-year b { color: var(--ink); }

.plan-seats {
  margin: 16px 0 14px;
  padding: 11px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--ink);
}
.plan-seats b { display: block; font-size: 19px; }
.plan-list { list-style: none; font-size: 13.5px; color: var(--muted); }
.plan-list li {
  position: relative;
  padding-inline-start: 17px;
  margin-bottom: 7px;
  line-height: 1.5;
}
.plan-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--slate);
}
.plan-list li.off { color: var(--muted-2); }
.plan-list li.off::before { background: var(--muted-2); opacity: 0.45; }
.plan-setup {
  margin-top: auto;
  padding-top: 16px;
  font-size: 12.5px;
  color: var(--muted);
}
.plan-setup b { display: block; color: var(--ink); font-size: 14px; }

/* the free-manager line, spanning the row under the cards */
.plan-note {
  margin-top: 18px;
  /* generous inline padding so the text still clears the curve when this
     wraps to two lines on a phone */
  padding: 16px 32px;
  background: var(--slate-tint);
  border-radius: var(--r-pill);
  font-size: 14.5px;
  color: var(--ink);
  text-align: center;
}

/* ---------------------------------------------------------- pill / meta -- */
.pills { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; margin-top: 26px; }
.pills li {
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.band--dark .pills li,
.band--slate .pills li { border-color: var(--line-invert); color: rgba(255, 255, 255, 0.72); }

/* ----------------------------------------------------------- excellence -- */
/* The product band. Deliberately black so the product reads as a product,
   not as a seventh service line. */
.xl-lock {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 22px;
}
.xl-lock .xl-name {
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 40px);
  color: #fff;
  line-height: 1.1;
}
.xl-lock .xl-ar {
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 26px);
  color: var(--slate-pale);
}
.xl-tag {
  display: inline-block;
  padding: 6px 13px;
  border: 1px solid var(--line-invert);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--slate-pale);
  margin-bottom: 20px;
}
.xl-claims { list-style: none; margin-top: 30px; }
.xl-claims li {
  position: relative;
  padding-inline-start: 34px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
.xl-claims li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.62em;
  width: 18px;
  height: 1.5px;
  background: var(--slate-pale);
}
.xl-claims li:last-child { margin-bottom: 0; }
.xl-claims b { color: #fff; }

/* ---------------------------------------------------- products / roadmap -- */
/* "Coming soon" marker. Products in development say so plainly rather than
   being presented as shipping. */
.badge-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 13px;
  border: 1px solid var(--line-invert);
  border-radius: var(--r-pill);
  font-family: var(--text);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-pale);
}
.badge-soon::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}
.badge-soon--ink { border-color: var(--line); color: var(--slate); }
.badge-soon--live { color: #7fe0ab; }

/* product card: a logo on its own white tile, because the StayFlow artwork is
   opaque and would otherwise sit in a white box on a dark band */
.card--product { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.product-logo {
  background: #fff;
  border-radius: var(--r-sm);
  padding: 16px 18px;
  width: 100%;
  max-width: 230px;
}
.product-logo img { width: 100%; height: auto; }
.card--product h3 { margin: 0; }
.card--product .meta {
  font-family: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.band--dark .card--product .meta,
.band--slate .card--product .meta { color: var(--slate-pale); }
.card--product > p { margin: 0; }

/* small honest caption under a mockup */
.note-inline { font-size: 12.5px; color: var(--muted-2); margin-top: 12px; }
.band--dark .note-inline,
.band--slate .note-inline { color: rgba(255, 255, 255, 0.45); }

/* divider inside a band, to separate the flagship from what is in development */
.band-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: clamp(46px, 6vw, 82px) 0 clamp(32px, 4vw, 48px);
}
.band--dark .band-divider,
.band--slate .band-divider { border-color: var(--line-invert); }

/* the "said out loud" pull quote used on the Excellence page */
.said {
  margin-top: 20px;
  padding-block: 4px;
  padding-inline-start: 22px;
  border-inline-start: 2px solid var(--slate);
  font-family: var(--display);
  font-size: clamp(18px, 1.9vw, 23px);
  line-height: 1.4;
  color: var(--ink);
}
.band--dark .said,
.band--slate .said { border-color: var(--slate-pale); color: #fff; }

/* phone mock for the WhatsApp summary */
.phone {
  max-width: 330px;
  margin-inline: auto;
  background: #0b141a;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  padding: 16px 14px 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.phone-bar {
  width: 52px;
  height: 4px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.25);
  margin: 2px auto 16px;
}
.bubble {
  background: #075e54;
  color: #fff;
  border-radius: 16px 16px 16px 4px;
  padding: 15px 16px 11px;
  font-size: 14px;
  line-height: 1.5;
}
.bubble > strong { display: block; margin-bottom: 9px; font-size: 14px; color: #fff; }
.bubble .row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-variant-numeric: tabular-nums;
}
.bubble .time {
  text-align: end;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}
.phone-note {
  margin: 14px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--muted-2);
}

/* honest "not for you" block */
.notfor {
  background: var(--paper-2);
  border-inline-start: 3px solid var(--slate);
  /* Fully rounded now, including the corners the accent border runs through —
     a soft panel reads better than the old flag shape, and it drops the four
     logical radius longhands that existed only to keep that shape mirrored. */
  border-radius: var(--r);
  padding: 32px 36px;
}
.notfor ul { list-style: none; }
.notfor li {
  position: relative;
  padding-inline-start: 24px;
  margin-bottom: 13px;
  font-size: 16px;
  line-height: 1.62;
}
.notfor li:last-child { margin-bottom: 0; }
.notfor li::before {
  content: "\2014";
  position: absolute;
  inset-inline-start: 0;
  color: var(--slate);
}
.notfor a {
  color: var(--slate);
  border-bottom: 1px solid rgba(48, 76, 94, 0.35);
  transition: border-color 0.22s var(--ease);
}
.notfor a:hover { border-bottom-color: var(--slate); }

/* ----------------------------------------------------------------- form -- */
.form-band .wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 78px);
  align-items: start;
}
.form-band h2 { font-size: clamp(34px, 5.2vw, 64px); }

.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field > label {
  font-family: var(--text);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
/* Soft filled controls rather than the old underline-only fields. Every form
   on the site sits on a .band--dark, so these are styled for dark only. */
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-family: var(--text);
  font-size: 16.5px;
  line-height: 1.5;
  border-radius: var(--r-sm);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease),
              box-shadow 0.25s var(--ease);
}
.field textarea { resize: vertical; min-height: 122px; }
/* appearance:none strips the native arrow, so draw one. Background position has
   no logical equivalent, so this is one of the few direction-specific rules in
   the sheet — the RTL override below is required, not optional. */
.field select {
  appearance: none;
  cursor: pointer;
  padding-inline-end: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%23ffffff' stroke-opacity='.55' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px 8px;
}
[dir="rtl"] .field select { background-position: left 18px center; }
.field select option { background: #14181c; color: #fff; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.32); }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: rgba(255, 255, 255, 0.3); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.09);
  /* soft focus ring in place of the browser default, which would square off
     against the rounded control */
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.09);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* File input — the browser's own button is unstyleable, so give the control a
   quiet box of its own rather than pretending it is a text field. */
.field input[type="file"] {
  padding: 14px 16px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  font-size: 15px;
  cursor: pointer;
}
.field input[type="file"]::file-selector-button {
  font-family: var(--text);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: var(--r-pill);
  padding: 8px 17px;
  margin-inline-end: 14px;
  cursor: pointer;
}
.field-hint {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.42);
  margin: 0;
}

/* Server-side validation message, filled in by site.js from ?error= */
.form-error {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-inline-start: 2px solid #e0685a;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  font-size: 15px;
  color: #fff;
  margin: 0;
}
.form-error[hidden] { display: none; }

.form .btn { justify-self: start; margin-top: 6px; }
.form-note { font-size: 13px; color: rgba(255, 255, 255, 0.5); }
.form-note a { color: #fff; border-bottom: 1px solid rgba(255, 255, 255, 0.4); }

/* honeypot */
.hp { position: absolute; inset-inline-start: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* contact detail list beside the form */
.contact-list { list-style: none; margin-top: 30px; }
.contact-list li { padding: 17px 0; border-top: 1px solid var(--line-invert); }
.contact-list li:last-child { border-bottom: 1px solid var(--line-invert); }
.contact-list span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 5px;
}
.contact-list a, .contact-list p { color: #fff; font-size: 17px; margin: 0; }
.contact-list a:hover { color: var(--slate-pale); }

/* ---------------------------------------------------------------- prose -- */
/* Long-form running text: privacy, terms, and anything else that is mostly
   paragraphs. Narrower than .wrap on purpose — legal text is unreadable at
   1200px. */
.prose { max-width: 760px; }
.prose h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin-top: 2.2em;
  margin-bottom: 0.5em;
  padding-top: 1.1em;
  border-top: 1px solid var(--line);
}
.prose h2:first-of-type { margin-top: 1.4em; }
.prose h3 {
  font-family: var(--text);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 1.7em;
  margin-bottom: 0.35em;
  letter-spacing: 0;
}
.prose ul, .prose ol { margin: 0 0 1.05em; padding-inline-start: 1.25em; }
.prose li { margin-bottom: 0.4em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose a { color: var(--slate); border-bottom: 1px solid var(--line); }
.prose a:hover { border-bottom-color: var(--slate); }
.prose dl { margin: 0 0 1.05em; }
.prose dt { font-weight: 700; color: var(--ink); margin-top: 1em; }
.prose dd { margin: 0 0 0.5em; }

/* Updated-on line under a legal page title. */
.prose-meta {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 2.2em;
}

/* Editorial aside — a plain-language summary or a note to the reader.
   Not a warning; it should read calmer than the body, not louder. */
.prose-note {
  background: var(--paper-2);
  border-inline-start: 2px solid var(--slate);
  border-radius: var(--r);
  padding: 22px 28px;
  margin: 1.8em 0;
  font-size: 16px;
}
.prose-note p:last-child { margin-bottom: 0; }
.prose-note strong { display: block; margin-bottom: 4px; }

/* --------------------------------------------------------------- footer -- */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.62);
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: 30px;
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 3.4vw, 52px);
  padding-bottom: clamp(36px, 4vw, 58px);
}
.flogo { height: 44px; width: auto; margin-bottom: 20px; }
.site-footer h4 {
  font-family: var(--text);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 17px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; line-height: 1.5; }
.site-footer a:hover { color: #fff; }
.site-footer p { line-height: 1.7; }
.footer-brandline {
  font-family: var(--display);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 14px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid var(--line-invert);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
}

/* ------------------------------------------------------- whatsapp float -- */
.wa {
  position: fixed;
  inset-inline-end: 20px;
  bottom: 20px;
  z-index: 90;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
  transition: transform 0.26s var(--ease);
}
.wa svg { width: 28px; height: 28px; fill: #fff; }
.wa:hover { transform: scale(1.08); }

/* --------------------------------------------------------------- reveal -- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
.no-js .reveal { opacity: 1; transform: none; }

/* ----------------------------------------------------------- responsive -- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .site-header .wrap { min-height: 72px; }
  .brand img { height: 40px; }

  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line-soft);
    border-end-start-radius: var(--r-lg);
    border-end-end-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: 12px var(--gutter) 26px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.26s var(--ease), transform 0.26s var(--ease), visibility 0.26s;
  }
  .nav[data-open="true"] { opacity: 1; visibility: visible; transform: none; }

  .nav > a,
  .nav-group > button {
    width: 100%;
    justify-content: space-between;
    padding: 15px 14px;
    border-radius: var(--r-sm);
    border-bottom: 1px solid var(--line-soft);
    font-size: 13.5px;
  }
  /* the hover pill is a desktop affordance; in the stacked panel the rows are
     already full-width and separated by rules */
  .nav > a::after, .nav-group > button::after { display: none; }
  .nav .nav-cta { margin: 18px 0 0; justify-content: center; border-bottom: 0; }

  .nav-group { width: 100%; }
  .nav-menu {
    position: static;
    translate: none;
    transform: none;
    min-width: 0;
    border: 0;
    box-shadow: none;
    padding: 4px 0 10px;
    background: var(--paper-2);
    border-radius: var(--r);
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .nav-group[data-open="true"] .nav-menu { display: block; }

  .hero--split .wrap,
  .split,
  .split--wide-text,
  .split--wide-art,
  .form-band .wrap { grid-template-columns: 1fr; }
  .split.rev > *:first-child { order: 0; }
  .hero-art { max-width: 620px; }
  .hero-mark { inset-inline-end: -160px; opacity: 0.03; }

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

@media (max-width: 720px) {
  body { font-size: 16.5px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .field-row { grid-template-columns: 1fr; }
  .facts { gap: 12px 24px; }
  .facts b { font-size: 22px; }
  .tile { aspect-ratio: 4 / 3; }
  .tile-body { padding: 20px; }
  .notfor { padding: 24px 22px; }
  .wa { inset-inline-end: 14px; bottom: 14px; width: 50px; height: 50px; }
  .wa svg { width: 25px; height: 25px; }
}

@media (max-width: 480px) {
  .btn { padding: 14px 22px; font-size: 12px; }
  .btn-row { gap: 10px; }
  .btn-row .btn { width: 100%; justify-content: center; }
}

/* ---------------------------------------------------------------- print -- */
@media print {
  .site-header, .nav, .wa, .marquee, .form-band { display: none; }
  body { color: #000; font-size: 11pt; }
  .band { padding-block: 14pt; }
  a { text-decoration: underline; }
}
