/* Quantum — single-page site. EN (ltr) in markup, AR (rtl) applied by JS. */

@font-face { font-family: "Faktum"; src: url("../fonts/Faktum-Regular.ttf") format("truetype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Faktum"; src: url("../fonts/Faktum-Medium.ttf") format("truetype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Faktum"; src: url("../fonts/Faktum-Bold.ttf") format("truetype"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Inter"; src: url("../fonts/Inter-latin.woff2") format("woff2"); font-weight: 100 900; font-display: swap; }
@font-face { font-family: "Plex Arabic"; src: url("../fonts/PlexArabic-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Plex Arabic"; src: url("../fonts/PlexArabic-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Plex Arabic"; src: url("../fonts/PlexArabic-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }

:root {
  --bg: #0a0920;
  --bg-2: #0e0d2b;
  --surface: rgba(255, 255, 255, 0.028);
  --surface-2: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);
  --text: #eceaf7;
  --muted: #8f8db3;
  --green: #5ad178;
  --green-soft: rgba(90, 209, 120, 0.1);
  --orange: #eb4b2d;
  --navy-tint: #14123c;

  --font-head: "Faktum", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1120px;
  --gutter: clamp(20px, 5vw, 32px);
  --section: clamp(72px, 9vw, 128px);
  --r: 14px;
  --r-lg: 20px;
  --ease: cubic-bezier(0.22, 0.75, 0.25, 1);
}

html[dir="rtl"] { --font-head: "Plex Arabic", sans-serif; --font-body: "Plex Arabic", sans-serif; }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font-body); font-size: 16.5px; line-height: 1.7;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
svg { flex: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: #fff; margin: 0 0 0.5em; font-weight: 700; line-height: 1.14; letter-spacing: -0.022em; }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3 { line-height: 1.4; letter-spacing: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
::selection { background: rgba(90, 209, 120, 0.3); }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 8px; }
.skip-link { position: absolute; inset-inline-start: 16px; top: -60px; background: var(--green); color: #0a0920; padding: 10px 16px; border-radius: 10px; z-index: 100; font-weight: 600; }
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { --pad: var(--section); padding-block: var(--pad); position: relative; }
.section--tight { --pad: clamp(56px, 6vw, 88px); }
/* land anchored sections just under the fixed header, not below their own padding */
.section[id] { scroll-margin-top: calc(24px - var(--pad)); }

/* ---------- type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
html[dir="rtl"] .eyebrow { letter-spacing: 0; font-size: 0.85rem; }
.h-sec { font-size: clamp(1.7rem, 3vw, 2.5rem); text-wrap: balance; }
.sub { color: var(--muted); font-size: 1.02rem; max-width: 58ch; }
.accent { color: var(--green); }
.section-head { max-width: 640px; margin-bottom: clamp(36px, 4vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .sub { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  font-family: var(--font-body); font-weight: 600; font-size: 0.93rem; line-height: 1; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
.btn svg { width: 16px; height: 16px; }
html[dir="rtl"] .btn svg.arrow { transform: scaleX(-1); }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: #ff5b3c; }
.btn--light { background: #fff; color: #0a0920; }
.btn--light:hover { background: #e9e8f5; }
.btn--ghost { border-color: var(--line-2); color: #fff; }
.btn--ghost:hover { border-color: rgba(255, 255, 255, 0.4); background: var(--surface-2); }
.btn--sm { padding: 10px 16px; font-size: 0.86rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* ---------- header ---------- */
.site-header { position: fixed; inset-inline: 0; top: 0; z-index: 60; transition: background 0.3s, border-color 0.3s; border-bottom: 1px solid transparent; }
.site-header.is-scrolled { background: rgba(10, 9, 32, 0.8); backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; gap: 18px; height: 72px; }
.brand { display: flex; align-items: center; }
.brand img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0 auto; padding: 0; }
.nav-links a { display: block; padding: 8px 14px; border-radius: 999px; font-size: 0.9rem; color: var(--muted); transition: color 0.2s, background 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-links a.is-active { color: #fff; background: var(--surface-2); }
.nav-links .m-cta { display: none; }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-inline-start: auto; }

.lang { display: inline-flex; align-items: center; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); }
.lang button {
  appearance: none; border: 0; background: transparent; cursor: pointer; color: var(--muted);
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; padding: 6px 12px; border-radius: 999px; line-height: 1;
  transition: background 0.2s, color 0.2s;
}
.lang button[aria-pressed="true"] { background: #fff; color: #0a0920; }
.lang button.ar { font-family: "Plex Arabic", sans-serif; }

.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line); background: transparent; color: #fff; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 20px; height: 20px; }
@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn { display: none; }
  .nav-links {
    position: absolute; top: 72px; inset-inline: var(--gutter); margin: 0; flex-direction: column; align-items: stretch; gap: 2px;
    padding: 10px; border-radius: var(--r-lg); background: #11102f; border: 1px solid var(--line);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
    opacity: 0; transform: translateY(-6px); pointer-events: none; transition: opacity 0.22s, transform 0.22s var(--ease);
  }
  .nav-links a { padding: 13px 14px; font-size: 1rem; border-radius: 11px; }
  .nav-links .m-cta { display: block; margin-top: 4px; }
  .nav-links .m-cta a { background: var(--orange); color: #fff; text-align: center; font-weight: 600; }
  .site-header.nav-open .nav-links { opacity: 1; transform: none; pointer-events: auto; }
  .site-header.nav-open { background: rgba(10, 9, 32, 0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
}

/* ---------- hero ---------- */
.hero { position: relative; padding-block: clamp(118px, 15vh, 172px) clamp(64px, 8vw, 104px); overflow: clip; }
.hero::before {
  content: ""; position: absolute; inset-inline: 0; top: -10%; height: 620px; z-index: -1; pointer-events: none;
  background: radial-gradient(620px 340px at 24% 28%, rgba(90, 209, 120, 0.13), transparent 70%),
              radial-gradient(680px 380px at 82% 12%, rgba(104, 84, 214, 0.2), transparent 72%);
}
.hero-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(36px, 5vw, 68px); align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }

.tagline {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px; padding: 6px 14px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--surface);
  font-size: 0.8rem; color: var(--text);
}
.tagline .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

.hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.5rem); letter-spacing: -0.032em; margin-bottom: 22px; }
.hero h1 .l { display: block; }
@media (min-width: 941px) { .hero h1 .l { white-space: nowrap; } }
html[dir="rtl"] .hero h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); letter-spacing: 0; }
.hero h1 .line2 { color: var(--muted); }
.hero .sub { font-size: clamp(1rem, 1.25vw, 1.1rem); }

.hero-figures { display: grid; grid-template-columns: repeat(auto-fit, minmax(92px, 1fr)); gap: clamp(16px, 2.4vw, 30px); margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-figures .v { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: #fff; line-height: 1; direction: ltr; text-align: start; }
html[dir="rtl"] .hero-figures .v { text-align: right; }
.hero-figures .k { font-size: 0.8rem; color: var(--muted); margin-top: 5px; }

.shot { position: relative; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--surface); padding: 8px; }
.shot .fader { position: relative; aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden; background: #fff; }
.shot .fader img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; opacity: 0; transition: opacity 0.9s ease; }
.shot .fader img.is-active { opacity: 1; }

/* ---------- logos ---------- */
.logos { padding-block: clamp(26px, 4vw, 40px); border-block: 1px solid var(--line); overflow: hidden; }
.logos .label { text-align: center; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 0 0 24px; }
html[dir="rtl"] .logos .label { letter-spacing: 0; font-size: 0.85rem; }
.logos .mask { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee { display: flex; width: max-content; animation: marquee 52s linear infinite; }
.logos:hover .marquee { animation-play-state: paused; }
.marquee ul { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 20px); list-style: none; margin: 0; padding: 0 clamp(15px, 2.2vw, 29px); }
.marquee li { display: grid; place-items: center; height: 54px; padding: 0 18px; border-radius: 10px; background: rgba(255, 255, 255, 0.92); }
.marquee img { height: 26px; width: auto; max-width: 104px; object-fit: contain; filter: grayscale(1); opacity: 0.7; transition: opacity 0.3s, filter 0.3s; }
.marquee li:hover img { opacity: 1; filter: none; }
@keyframes marquee { to { transform: translateX(-50%); } }
html[dir="rtl"] .marquee { animation-name: marquee-rtl; }
@keyframes marquee-rtl { to { transform: translateX(50%); } }

/* ---------- grids & cards ---------- */
.grid { display: grid; gap: 16px; }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 940px) { .g3, .g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.card {
  padding: clamp(20px, 2.2vw, 28px); border-radius: var(--r); border: 1px solid var(--line); background: var(--surface);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.card:hover { border-color: var(--line-2); background: var(--surface-2); transform: translateY(-2px); }
.card h3 { font-size: 1.05rem; margin-bottom: 8px; letter-spacing: -0.01em; }
.card p { margin: 0; font-size: 0.92rem; color: var(--muted); line-height: 1.65; }
.card .ico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 16px; background: var(--green-soft); color: var(--green); }
.card .ico svg { width: 18px; height: 18px; }
.card .ico img { width: 22px; height: 22px; object-fit: contain; }
.card .idx { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; display: block; margin-bottom: 12px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 940px) { .split { grid-template-columns: 1fr; } }
.media img { border-radius: var(--r-lg); border: 1px solid var(--line); }

.checks { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.95rem; color: var(--text); }
.checks svg { width: 17px; height: 17px; color: var(--green); margin-top: 4px; }

/* ---------- tabs (ad types) ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.tabs button {
  appearance: none; cursor: pointer; font-family: var(--font-body); font-size: 0.87rem; font-weight: 500;
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.tabs button:hover { color: #fff; }
.tabs button[aria-selected="true"] { background: #fff; border-color: #fff; color: #0a0920; }
.panel { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: center; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 40px); background: var(--surface); }
.panel[hidden] { display: none; }
.panel h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
.panel p { color: var(--muted); margin: 0; }
.panel .shots { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 14px; align-items: center; }
.panel .shots img { border-radius: 12px; max-height: 290px; width: 100%; object-fit: contain; background: #fff; padding: 12px; }
@media (max-width: 860px) { .panel { grid-template-columns: 1fr; } }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stat { background: var(--bg); padding: clamp(22px, 3vw, 34px); text-align: center; }
.stat .v { font-family: var(--font-head); font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; color: #fff; line-height: 1; direction: ltr; }
.stat .v b { color: var(--green); font-weight: 700; }
.stat .k { font-size: 0.83rem; color: var(--muted); margin-top: 9px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- quotes ---------- */
.quote { display: flex; flex-direction: column; gap: 18px; }
.quote blockquote { margin: 0; font-size: 0.97rem; line-height: 1.75; color: var(--text); }
.quote figcaption { margin-top: auto; display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.quote figcaption img { width: 42px; height: 42px; border-radius: 9px; background: #fff; padding: 5px; object-fit: contain; }
.quote strong { display: block; font-size: 0.92rem; color: #fff; font-weight: 600; line-height: 1.3; }
.quote small { display: block; font-size: 0.79rem; color: var(--muted); line-height: 1.45; }

/* ---------- contact ---------- */
.contact-card { border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 44px); background: linear-gradient(170deg, var(--navy-tint), var(--bg-2)); }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 13px; align-items: flex-start; }
.contact-list .ico { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: var(--green-soft); color: var(--green); }
.contact-list .ico svg { width: 17px; height: 17px; }
.contact-list .k { font-size: 0.78rem; color: var(--muted); }
.contact-list .v { color: #fff; font-weight: 500; font-size: 0.97rem; }
.socials { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; }
.socials a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--muted); transition: color 0.2s, border-color 0.2s, background 0.2s; }
.socials a:hover { color: #fff; border-color: var(--line-2); background: var(--surface-2); }
.socials svg { width: 16px; height: 16px; }

/* ---------- form ---------- */
.form { margin-top: 22px; display: grid; gap: 14px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 620px) { .form .row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field label { font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.95rem; color: var(--text);
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); border-radius: 11px;
  padding: 12px 14px; transition: border-color 0.2s, background 0.2s;
}
.field textarea { resize: vertical; min-height: 104px; line-height: 1.6; }
.field select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238f8db3' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: 18px; background-position: right 14px center; padding-inline-end: 40px;
}
html[dir="rtl"] .field select { background-position: left 14px center; padding-inline-end: 14px; padding-inline-start: 40px; }
.field select option { background: #14123c; color: var(--text); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--line-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); background: rgba(90, 209, 120, 0.05);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: rgba(235, 75, 45, 0.7); }
.form .hp { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.form button[type="submit"] { justify-self: start; margin-top: 4px; }
.form button[disabled] { opacity: 0.6; cursor: progress; }
@media (max-width: 620px) { .form button[type="submit"] { justify-self: stretch; } }
.form-status { margin: 0; font-size: 0.88rem; line-height: 1.55; display: none; }
.form-status.is-shown { display: block; }
.form-status.is-ok { color: var(--green); }
.form-status.is-err { color: #ff8a70; }
.form-status.is-pending { color: var(--muted); }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: 40px 32px; }
.foot { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; justify-content: space-between; }
.foot img { height: 26px; width: auto; }
.foot nav { display: flex; flex-wrap: wrap; gap: 18px; }
.foot nav a { font-size: 0.87rem; color: var(--muted); transition: color 0.2s; }
.foot nav a:hover { color: #fff; }
.foot .copy { font-size: 0.82rem; color: var(--muted); }

/* ---------- motion ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 404 ---------- */
.nf { min-height: 72vh; display: grid; place-items: center; text-align: center; }
.nf h1 { font-size: clamp(3.5rem, 10vw, 6rem); margin-bottom: 8px; }

/* ---------- mobile tightening ---------- */
@media (max-width: 640px) {
  :root { --section: 62px; --gutter: 18px; }
  body { font-size: 16px; line-height: 1.62; }

  .hero { padding-block: 92px 52px; }
  .tagline { margin-bottom: 18px; padding: 5px 12px; font-size: 0.76rem; }
  .hero h1 { font-size: clamp(1.95rem, 8.6vw, 2.35rem); margin-bottom: 16px; letter-spacing: -0.028em; }
  .hero .sub, .sub { font-size: 0.97rem; }
  .btn-row { margin-top: 22px; gap: 10px; }
  .btn { padding: 12px 18px; font-size: 0.9rem; }
  .hero-figures { grid-template-columns: repeat(2, 1fr); gap: 16px 14px; margin-top: 30px; padding-top: 20px; }
  .hero-figures .v { font-size: 1.3rem; }
  .hero-figures .k { font-size: 0.76rem; margin-top: 3px; }
  .shot { padding: 6px; }

  .logos { padding-block: 24px; }
  .logos .label { margin-bottom: 16px; font-size: 0.68rem; }
  .marquee li { height: 46px; padding: 0 14px; }
  .marquee img { height: 22px; max-width: 88px; }

  .section-head { margin-bottom: 26px; }
  .h-sec { font-size: clamp(1.5rem, 6.6vw, 1.85rem); }
  .eyebrow { margin-bottom: 12px; font-size: 0.7rem; }
  .grid { gap: 12px; }
  .card { padding: 18px; border-radius: 12px; }
  .card .ico { width: 34px; height: 34px; margin-bottom: 12px; }
  .card h3 { font-size: 1rem; }
  .card p { font-size: 0.89rem; }
  .split { gap: 28px; }
  .checks { margin-top: 20px; gap: 10px; }
  .checks li { font-size: 0.91rem; }

  .tabs { gap: 6px; margin-bottom: 18px; }
  .tabs button { padding: 8px 13px; font-size: 0.82rem; }
  .panel { padding: 18px; gap: 22px; }
  .panel .shots { grid-auto-flow: row; }
  .panel .shots img { max-height: 220px; padding: 10px; }

  .stat { padding: 20px 12px; }
  .stat .k { font-size: 0.76rem; margin-top: 6px; }
  .contact-card { padding: 24px; }
  .contact-list { gap: 14px; }
  .site-footer { padding-block: 30px 24px; }
  .foot { gap: 14px; }
  .foot nav { gap: 14px; }
}
