/* ════════════════════════════════════════════════════════════════════
   alanrampacek.sk — modern SaaS, light, intuitive
   2026  ·  built from scratch
   ════════════════════════════════════════════════════════════════════ */

:root {
  --bg:        #FFFFFF;
  --surface:   #FAFAFA;
  --surface-2: #F4F4F5;
  --line:      #E4E4E7;
  --line-2:    #D4D4D8;

  --text:    #0A0A0A;
  --text-2:  #404040;
  --muted:   #737373;
  --dim:     #A3A3A3;

  /* Prosight signature lime (from the deck) used as ACCENT only.
     For primary CTAs we keep deep ink — lime is too bright on white. */
  --primary:   #0A0A0A;     /* deep ink for primary buttons */
  --primary-2: #000000;
  --primary-3: #0A0A0A;
  --lime:      #B6EE5C;
  --lime-2:    #A1DE3D;
  --lime-3:    #93D02C;
  --tint:      #F0FAD9;     /* light lime tint for chips */
  --tint-2:    #DCEFB8;     /* lime border */

  --warn: #D97706;
  --ring: rgba(182,238,92,0.32);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;

  --maxw: 1180px;
  --pad-section:   clamp(56px, 6vw, 88px);
  --pad-container: clamp(20px, 3.5vw, 36px);

  --font: "Geist", ui-sans-serif, -apple-system, "Inter", "Segoe UI", Roboto, sans-serif;
  --mono: "Geist Mono", ui-monospace, monospace;

  --shadow-sm: 0 1px 2px rgba(10,10,10,0.04);
  --shadow:    0 8px 24px -8px rgba(10,10,10,0.10);
  --shadow-lg: 0 24px 48px -20px rgba(10,10,10,0.16);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px; line-height: 1.6;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; margin: 0; }
input, select, textarea { font: inherit; color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-container); }
section { padding-top: var(--pad-section); padding-bottom: var(--pad-section); }

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { margin: 0; color: var(--text); font-weight: 600; letter-spacing: -0.025em; line-height: 1.1; }
h1 { font-size: clamp(40px, 5.5vw, 64px); letter-spacing: -0.035em; line-height: 1.02; }
h2 { font-size: clamp(30px, 3.6vw, 44px); letter-spacing: -0.03em; }
h3 { font-size: 19px; letter-spacing: -0.01em; }
h4 { font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
p { margin: 0; color: var(--text-2); }

.lede { font-size: 18px; color: var(--text-2); line-height: 1.6; max-width: 560px; }

/* ─── Eyebrow / pchip ────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 10px;
  background: var(--tint);
  border: 1px solid var(--tint-2);
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  color: var(--primary-3);
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lime-3); box-shadow: 0 0 6px var(--lime); }

.sec-head { max-width: 680px; margin-bottom: 56px; }
.sec-head h2 { margin-bottom: 14px; }
.sec-head__lede { color: var(--text-2); font-size: 17px; line-height: 1.6; max-width: 560px; }
.sec-head--row { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; max-width: none; flex-wrap: wrap; }
.sec-head--center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }
.sec-head--center .eyebrow, .sec-head--center .sec-head__lede { margin-left: auto; margin-right: auto; display: block; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 10px;
  font-weight: 500; font-size: 14.5px; line-height: 1; white-space: nowrap; cursor: pointer;
  transition: background .15s, color .15s, transform .15s, box-shadow .2s, border-color .15s;
}
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 4px 14px -4px rgba(10,10,10,0.35); }
.btn--primary:hover { background: var(--primary-2); transform: translateY(-1px); box-shadow: 0 8px 20px -4px rgba(10,10,10,0.5); }
.btn--lime { background: var(--lime); color: var(--ink); box-shadow: 0 4px 14px -4px rgba(182,238,92,0.55); }
.btn--lime:hover { background: var(--lime-2); transform: translateY(-1px); box-shadow: 0 8px 20px -4px rgba(182,238,92,0.7); }
.btn--ghost { background: var(--surface); border: 1px solid var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--text); background: #fff; }
.btn--big { padding: 14px 26px; font-size: 15px; }
.btn svg { transition: transform .2s; }
.btn:hover svg { transform: translateX(2px); }

/* ─── NAV ────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 24px; }
.nav__brand { display: inline-flex; align-items: center; }
.nav__brand .nav__wordmark { height: 44px; width: auto; display: block; }
@media (max-width: 540px) { .nav__brand .nav__wordmark { height: 32px; } }
.nav__links { display: flex; gap: 22px; }
.nav__links a { font-size: 13.5px; color: var(--text-2); font-weight: 500; transition: color .15s; white-space: nowrap; }
.nav__links a:hover { color: var(--text); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__phone { font-size: 13px; color: var(--text-2); font-family: var(--mono); font-weight: 500; }
.nav__phone:hover { color: var(--text); }
.nav .btn--primary { padding: 10px 18px; font-size: 13.5px; background: var(--lime); color: var(--ink); box-shadow: 0 4px 14px -4px rgba(182,238,92,0.55); }
.nav .btn--primary:hover { background: var(--lime-2); }
@media (max-width: 1120px) { .nav__links, .nav__phone { display: none; } }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  padding: clamp(40px, 4vw, 64px) 0 clamp(48px, 5vw, 72px);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; top: -120px; right: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(14,124,102,0.10), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; gap: 32px; } }

.hero__name { font-size: clamp(36px, 4.8vw, 56px); font-weight: 600; line-height: 0.98; letter-spacing: -0.04em; margin: 10px 0 0; }
.hero__role { display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px; background: var(--tint); border: 1px solid var(--tint-2); border-radius: 999px; font-size: 12px; color: var(--primary-3); font-weight: 500; }
.hero__role::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--lime-3); box-shadow: 0 0 8px var(--lime); animation: livepulse 2.2s ease-out infinite; }
.hero__quote { margin-top: 20px; font-size: 16.5px; line-height: 1.55; color: var(--text); max-width: 520px; font-weight: 400; }
.hero__cta { margin-top: 28px; display: flex; gap: 10px; flex-wrap: wrap; }
.hero__cta .btn { padding: 11px 18px; font-size: 14px; }
.hero__stats { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; gap: 40px; flex-wrap: wrap; }
.hero__stat strong { display: block; font-size: 24px; font-weight: 600; letter-spacing: -0.02em; color: var(--text); }
.hero__stat span { font-size: 12px; color: var(--muted); }
.hero__photo { aspect-ratio: 4/4.7; }

.hero__photo {
  position: relative;
  aspect-ratio: 4/4.7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: var(--shadow-lg);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; transition: transform 1.5s cubic-bezier(.2,.7,.2,1); }
.hero__photo:hover img { transform: scale(1.02); }
.hero__photo__card {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.hero__photo__card .livedot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime-3); box-shadow: 0 0 0 0 rgba(182,238,92,0.6); animation: livepulse 2.2s ease-out infinite; flex-shrink: 0; }
.hero__photo__card .meta strong { display: block; font-size: 13.5px; color: var(--text); font-weight: 600; }
.hero__photo__card .meta span { display: block; font-size: 11.5px; color: var(--muted); margin-top: 2px; }
@keyframes livepulse {
  0%   { box-shadow: 0 0 0 0 rgba(182,238,92,0.55); }
  60%  { box-shadow: 0 0 0 10px rgba(182,238,92,0); }
  100% { box-shadow: 0 0 0 0 rgba(182,238,92,0); }
}

/* ─── PROSIGHT / Accent Real — big brand row, full width ─────── */
.brandbar {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.brandbar__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 720px) { .brandbar__row { grid-template-columns: 1fr; } }
.brandbar__cell {
  display: flex; align-items: center; gap: 22px;
  padding: 22px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.brandbar__cell:hover { border-color: var(--primary); transform: translateY(-1px); box-shadow: var(--shadow); }
.brandbar__num {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--tint); color: var(--primary);
  display: grid; place-items: center;
  font-family: var(--mono); font-weight: 600; font-size: 16px;
}
.brandbar__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.brandbar__lbl { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.brandbar__role { font-size: 17px; font-weight: 600; color: var(--text); line-height: 1.25; }
.brandbar__role small { display: block; margin-top: 4px; font-size: 12.5px; color: var(--muted); font-weight: 400; }
.brandbar__logo { height: 44px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
@media (max-width: 540px) { .brandbar__cell { padding: 16px 18px; gap: 16px; } .brandbar__logo { height: 32px; } }

/* ─── About strip ────────────────────────────────────────────── */
.about { background: var(--bg); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; gap: 32px; } }
.about__copy h2 { margin-bottom: 20px; }
.about__copy p { margin-bottom: 16px; font-size: 16.5px; line-height: 1.7; max-width: 560px; }
.about__copy strong { color: var(--text); font-weight: 600; }
.about__certs { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.about__certs h4 { color: var(--text); margin-bottom: 14px; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; text-transform: none; }
.about__certs ul { display: grid; grid-template-columns: 1fr; gap: 10px; }
.about__certs li { font-size: 14px; color: var(--text-2); padding-left: 24px; position: relative; line-height: 1.45; }
.about__certs li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 16px; height: 16px; border-radius: 4px;
  background: var(--lime);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8l2.5 2.5L12 5.5' stroke='%230A0A0A' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.about__certs small { display: block; font-size: 11.5px; color: var(--muted); margin-top: 2px; font-family: var(--mono); }

/* ─── Services Bento ─────────────────────────────────────────── */
.services { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .services__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services__grid { grid-template-columns: 1fr; } }
.svc {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.svc:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.svc__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--tint); color: var(--primary); display: grid; place-items: center; margin-bottom: 16px; }
.svc__title { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.svc__teaser { color: var(--text-2); font-size: 14px; line-height: 1.55; }

/* ─── Refs (testimonials) ─────────────────────────────────────── */
.refs { background: var(--bg); }
.refs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .refs__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .refs__grid { grid-template-columns: 1fr; } }
.ref { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: border-color .2s, transform .2s, box-shadow .2s; }
.ref:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.ref__stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; }
.ref blockquote { margin: 12px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--text); }
.ref figcaption { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 10px; }
.ref__avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--tint); color: var(--primary); display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.ref__meta { display: flex; flex-direction: column; }
.ref__who { font-size: 14px; font-weight: 600; color: var(--text); }
.ref__role { font-size: 12px; color: var(--muted); }

.greviews {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-top: 20px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.greviews:hover { border-color: var(--primary); transform: translateY(-1px); box-shadow: var(--shadow); }
.greviews__g { width: 28px; height: 28px; border-radius: 50%; background: conic-gradient(from -45deg, #EA4335 0% 25%, #FBBC05 25% 50%, #34A853 50% 75%, #4285F4 75% 100%); position: relative; flex-shrink: 0; }
.greviews__g::after { content: "G"; position: absolute; inset: 3px; border-radius: 50%; background: #fff; color: #4285F4; display: grid; place-items: center; font-size: 12px; font-weight: 700; font-family: var(--mono); }
.greviews__txt { font-size: 13px; color: var(--text); font-weight: 500; }
.greviews__cta { font-size: 13px; color: var(--primary); font-weight: 600; }
.greviews__cta::after { content: " →"; }

/* ─── Reality (Accent Real) ──────────────────────────────────── */
.reality { background: var(--bg); }
.reality__hero {
  background: linear-gradient(135deg, var(--surface) 0%, var(--tint) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .reality__hero { grid-template-columns: 1fr; padding: 32px; } }
.reality__hero h2 { margin-bottom: 16px; }
.reality__hero p { font-size: 16px; line-height: 1.65; margin-bottom: 12px; max-width: 540px; }
.reality__hero p strong { color: var(--text); }
.reality__cta { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.reality__partner {
  background: rgba(255,255,255,0.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center;
}
.reality__partner__lbl { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.reality__partner img { height: 40px; width: auto; }
.reality__partner__cta { font-size: 13px; font-weight: 600; color: var(--primary); }

/* listings grid */
.listings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 800px) { .listings { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .listings { grid-template-columns: 1fr; } }
.listing { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .2s, transform .2s, box-shadow .2s; }
.listing:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.listing__photo { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-2); }
.listing__photo img, .listing__photo svg { width: 100%; height: 100%; object-fit: cover; }
.listing__tag { position: absolute; top: 10px; left: 10px; background: rgba(255,255,255,0.95); backdrop-filter: blur(6px); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; color: var(--text); font-weight: 600; }
.listing__body { padding: 16px; }
.listing__type { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.listing__title { font-size: 14.5px; font-weight: 600; line-height: 1.4; margin-top: 6px; color: var(--text); }
.listing__row { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; }
.listing__area { font-size: 12.5px; color: var(--muted); }
.listing__price { font-weight: 700; font-size: 15px; color: var(--text); }

.listings__empty {
  grid-column: 1 / -1;
  padding: 48px 24px;
  text-align: center;
  background: var(--surface);
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  color: var(--text-2);
}
.listings__empty strong { color: var(--text); display: block; margin-bottom: 6px; font-size: 16px; }
.listings__empty a { color: var(--primary); font-weight: 600; }

/* ─── Newsletter — prominent panel ───────────────────────────── */
.newsletter {
  background:
    radial-gradient(circle 600px at 100% 0%, rgba(14,124,102,0.10) 0%, transparent 60%),
    var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsletter__card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  box-shadow: var(--shadow);
}
@media (max-width: 900px) { .newsletter__card { grid-template-columns: 1fr; padding: 32px; gap: 28px; } }
.newsletter__card h2 { margin-bottom: 12px; }
.newsletter__card p { font-size: 16px; max-width: 420px; }
.newsletter__form { display: flex; flex-direction: column; gap: 12px; }
.newsletter__row { display: flex; gap: 8px; }
.newsletter__row input {
  flex: 1; padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  font-size: 15px; color: var(--text);
}
.newsletter__row input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--ring); background: var(--bg); }
.newsletter__row button { padding: 14px 22px; }
.newsletter__note { font-size: 12px; color: var(--muted); }

/* ─── Contact form ───────────────────────────────────────────── */
.contact { background: var(--bg); }
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; gap: 32px; } }
.contact__copy h2 { margin-bottom: 16px; }
.contact__copy > p { color: var(--text-2); font-size: 16px; margin-bottom: 24px; max-width: 420px; }
.contact__contact { display: flex; flex-direction: column; gap: 6px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; }
.contact__line { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: var(--radius-sm); transition: background .15s; }
.contact__line:hover { background: var(--bg); }
.contact__ico { width: 36px; height: 36px; background: var(--bg); border: 1px solid var(--line); border-radius: 8px; display: grid; place-items: center; color: var(--primary); flex-shrink: 0; }
.contact__line strong { display: block; font-size: 14.5px; font-weight: 600; color: var(--text); }
.contact__line span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 1px; }
.contact__form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.contact__form h3 { font-size: 18px; margin-bottom: 4px; }
.contact__form .form__sub { font-size: 13.5px; color: var(--muted); margin-bottom: 8px; }
.formgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .formgrid { grid-template-columns: 1fr; } }
.formgrid__full { grid-column: 1 / -1; }
.contact__form label { display: flex; flex-direction: column; gap: 6px; }
.contact__form label > span { font-size: 12px; color: var(--text-2); font-weight: 500; }
.contact__form input, .contact__form select, .contact__form textarea {
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg); font-size: 14.5px; color: var(--text); resize: vertical;
}
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--ring);
}
.contact__legal { font-size: 11.5px; color: var(--muted); line-height: 1.5; }

/* ─── Partners list (compact, optional) ──────────────────────── */
.partners { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partners__lead { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 24px; }
.partners__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  align-items: center; justify-items: center;
}
@media (max-width: 900px) { .partners__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .partners__grid { grid-template-columns: repeat(2, 1fr); } }
.partners__item { padding: 14px; }
.partners__item img { height: 32px; width: auto; max-width: 100%; opacity: 0.85; transition: opacity .2s, transform .2s; filter: grayscale(0.2); }
.partners__item:hover img { opacity: 1; transform: scale(1.06); filter: none; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.foot { background: #0A0A0A; color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.foot__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .foot__grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 540px) { .foot__grid { grid-template-columns: 1fr; } }
.foot__brand .foot__mark { width: 40px; height: 40px; background: var(--primary); color: #fff; border-radius: 10px; display: grid; place-items: center; font-family: var(--mono); font-weight: 600; font-size: 13px; margin-bottom: 14px; }
.foot__name { color: #fff; font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.foot__brand p { font-size: 13.5px; line-height: 1.6; max-width: 340px; margin: 8px 0 16px; color: rgba(255,255,255,0.65); }
.foot__brands { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 12px 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; margin-bottom: 16px; max-width: 340px; }
.foot__brandlbl { font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 600; }
.foot__brandlogo { height: 16px; width: auto; filter: brightness(1.4) contrast(0.95); }
.foot__brandsep { color: rgba(255,255,255,0.3); }
.foot__brandfallback { display: none; }
.foot__social { display: flex; gap: 8px; }
.foot__social a { font-size: 12.5px; padding: 7px 12px; background: rgba(255,255,255,0.06); border-radius: 999px; transition: background .15s, color .15s; }
.foot__social a:hover { background: var(--primary); color: #fff; }
.foot h4 { color: rgba(255,255,255,0.55); margin-bottom: 14px; font-size: 11.5px; }
.foot ul { display: flex; flex-direction: column; gap: 8px; }
.foot li, .foot a { font-size: 13.5px; color: rgba(255,255,255,0.7); }
.foot a:hover { color: #fff; }
.foot__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding: 24px 0; margin-top: 48px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; color: rgba(255,255,255,0.4); }

/* ─── FAB ────────────────────────────────────────────────────── */
/* ─── Reusable callout card (used on Reality + Spolupráca) ────── */
.r-callout { padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.r-callout__lbl { display: inline-block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lime-3); font-weight: 700; margin-bottom: 10px; }
.r-callout strong { display: block; font-size: 20px; color: var(--text); font-weight: 600; letter-spacing: -0.02em; margin: 0 0 12px; line-height: 1.2; }
.r-callout p { font-size: 14px; line-height: 1.6; color: var(--text-2); margin: 0 0 22px; }
.r-callout__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.r-callout__row div { display: flex; flex-direction: column; }
.r-callout__row strong { font-size: 22px; font-weight: 700; color: var(--text); margin: 0 0 2px; letter-spacing: -0.02em; line-height: 1; }
.r-callout__row span { font-size: 11.5px; color: var(--muted); font-family: var(--mono); }

/* ─── Subpage hero — zhodné proporcie s homepage ─────────────── */
.sub-hero {
  padding: 56px 0 64px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.sub-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 28px;
}
.sub-hero__back:hover { color: var(--text); }
.sub-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
}
.sub-hero__copy .eyebrow { margin-bottom: 16px; }
.sub-hero__h1 {
  font-size: clamp(36px, 4.8vw, 56px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
  color: var(--text);
}
.sub-hero__h1 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(180deg, transparent 65%, var(--tint) 65%);
  padding: 0 4px;
}
.sub-hero__lead {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 28px;
  max-width: 580px;
  font-weight: 400;
}
.sub-hero__lead strong { color: var(--text); font-weight: 600; }
.sub-hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 580px;
}
.sub-hero__bullets li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
}
.sub-hero__bullets strong { color: var(--text); font-weight: 600; }
.sub-hero__bullets li::before {
  content: "";
  display: inline-block;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--lime) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 13l4 4L19 7'/></svg>") center / 12px no-repeat;
  margin-top: 2px;
}
.sub-hero__cta { display: flex; gap: 10px; flex-wrap: wrap; }
.sub-hero__visual {
  position: sticky;
  top: 96px;
}
@media (max-width: 960px) {
  .sub-hero { padding: 40px 0 48px; }
  .sub-hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .sub-hero__visual { position: static; }
}

/* ─── Footer v2 — kompaktný, praktický ────────────────────────── */
.foot2 { background: #0A0A0A; color: rgba(255,255,255,0.78); padding: 56px 0 24px; }
.foot2__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.foot2__cta strong { display: block; font-size: 16px; color: #fff; font-weight: 600; letter-spacing: -0.01em; }
.foot2__cta span { font-size: 12.5px; color: rgba(255,255,255,0.62); }

.foot2__grid {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot2__brand { display: flex; flex-direction: column; gap: 8px; }
.foot2__mark {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.foot2__id {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.foot2__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--lime);
  padding: 4px;
  object-fit: contain;
  flex-shrink: 0;
}
.foot2__name { display: flex; flex-direction: column; }
.foot2__name strong { font-size: 16px; color: #fff; font-weight: 600; letter-spacing: -0.01em; line-height: 1.15; }
.foot2__name span { font-size: 11px; color: rgba(255,255,255,0.5); font-family: var(--mono); letter-spacing: 0.04em; margin-top: 3px; }
.foot2__tagline { font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.foot2__brand strong { font-size: 15px; color: #fff; font-weight: 600; letter-spacing: -0.005em; }
.foot2__brand > span { font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.foot2__brands { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.foot2__brandpair { display: inline-flex; align-items: center; gap: 12px; }
.foot2__brandlbl { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 600; min-width: 110px; }
.foot2__brandlogo { height: 18px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.foot2__brandlogo--accent { height: 22px; }

.foot2__nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px 28px;
  align-content: start;
}
.foot2__nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color .15s;
  white-space: nowrap;
}
.foot2__nav a:hover { color: var(--lime); }

.foot2__kontakt { display: flex; flex-direction: column; gap: 8px; }
.foot2__line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color .15s;
}
.foot2__line:hover { color: var(--lime); }
.foot2__line svg { stroke: var(--lime); opacity: 0.85; flex-shrink: 0; }
.foot2__hours { font-size: 11.5px; color: rgba(255,255,255,0.45); font-family: var(--mono); margin-top: 4px; padding-left: 24px; }

.foot2__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 20px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
}
.foot2__legal { display: inline-flex; gap: 16px; flex-wrap: wrap; }
.foot2__legal a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color .15s; }
.foot2__legal a:hover { color: var(--lime); }

@media (max-width: 900px) {
  .foot2 { padding: 44px 0 20px; }
  .foot2__grid { grid-template-columns: 1fr; gap: 28px; }
  .foot2__nav { grid-template-columns: 1fr 1fr; gap: 10px 16px; }
  .foot2__cta { padding: 16px 18px; }
  .foot2__cta strong { font-size: 15px; }
  .foot2__bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── Rezervovať modal ─────────────────────────────────────────── */
.rmodal {
  position: fixed; inset: 0;
  display: none;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.rmodal.is-open { display: flex; }
/* Hide FAB while modal is open so it doesn't poke through the backdrop */
body:has(.rmodal.is-open) .fab { display: none; }
.rmodal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: rmodalFade .2s ease-out;
}
.rmodal__panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--bg);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 28px 80px -16px rgba(0,0,0,0.45), 0 8px 24px -8px rgba(0,0,0,0.2);
  border: 1px solid var(--line);
  animation: rmodalIn .25s cubic-bezier(.2,.7,.2,1);
}
.rmodal__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.rmodal__close:hover { background: var(--text); color: #fff; border-color: var(--text); }
.rmodal__eyebrow { margin-bottom: 14px; }
.rmodal__h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 8px;
  color: var(--text);
}
.rmodal__lead {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0 0 20px;
}
.rmodal__form { display: flex; flex-direction: column; gap: 12px; }
.rmodal__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rmodal__label { display: flex; flex-direction: column; gap: 5px; }
.rmodal__label span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.rmodal__label input,
.rmodal__label select,
.rmodal__label textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 14.5px;
  background: var(--bg);
  font-family: inherit;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.rmodal__label input:focus,
.rmodal__label select:focus,
.rmodal__label textarea:focus {
  outline: none;
  border-color: var(--lime-3);
  background: var(--tint);
  box-shadow: 0 0 0 4px rgba(182,238,92,0.18);
}
.rmodal__label textarea { resize: vertical; min-height: 60px; }
.rmodal__submit { width: 100%; justify-content: center; margin-top: 6px; }
.rmodal__legal { font-size: 11px; color: var(--muted); line-height: 1.5; margin: 0; text-align: center; }

@keyframes rmodalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes rmodalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 540px) {
  .rmodal { padding: 14px; }
  .rmodal__panel { padding: 24px 22px; border-radius: 16px; }
  .rmodal__row { grid-template-columns: 1fr; }
}

.fab { position: fixed; right: 20px; bottom: 20px; display: flex; gap: 10px; z-index: 40; }
.fab__call, .fab__book {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 14px 34px -8px rgba(182,238,92,0.55), 0 4px 12px -2px rgba(10,10,10,0.25);
  transition: transform .15s, box-shadow .15s, background .15s;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.08);
}
.fab__call { width: 56px; height: 56px; justify-content: center; }
.fab__book { padding: 14px 22px; letter-spacing: -0.005em; }
.fab__call:hover, .fab__book:hover {
  transform: translateY(-2px);
  background: var(--lime-2, #C7F47A);
  box-shadow: 0 18px 40px -8px rgba(182,238,92,0.7), 0 4px 12px -2px rgba(10,10,10,0.3);
}
.fab__call svg, .fab__book svg { stroke: var(--ink); }
@media (max-width: 720px) { .fab__book { display: none; } }

/* ─── Reveal ─────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .06s; }
.reveal[data-delay="2"] { transition-delay: .12s; }
.reveal[data-delay="3"] { transition-delay: .18s; }
.reveal[data-delay="4"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ─── Cennik banner ──────────────────────────────────────────── */
.cennik { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cennik__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.cennik h3 { font-size: 22px; margin-bottom: 14px; color: var(--text); font-weight: 600; }
.cennik p { font-size: 15.5px; line-height: 1.7; }
.cennik p + p { margin-top: 10px; }
.cennik p strong { color: var(--text); }
.cennik__tag { display: inline-block; margin-bottom: 16px; padding: 6px 14px; background: var(--tint); border: 1px solid var(--tint-2); color: var(--primary-3); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; border-radius: 999px; }

/* ─── ABOUT VISUAL — stat tile beside cert box ─────────────── */
.about__grid { grid-template-columns: 1.05fr 0.95fr; }
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; } }
.about__right { display: flex; flex-direction: column; gap: 16px; }
.about__visual {
  position: relative;
  display: flex; align-items: center; gap: 18px;
  padding: 22px;
  background: linear-gradient(135deg, var(--tint) 0%, #FFFFFF 100%);
  border: 1px solid var(--tint-2);
  border-radius: var(--radius);
}
.about__visual__avatar {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface);
  border: 2px solid #fff;
  box-shadow: 0 4px 16px -4px rgba(10,10,10,0.18);
}
.about__visual__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.about__visual__body { flex: 1; min-width: 0; }
.about__visual__body strong { display: block; font-size: 16px; color: var(--text); font-weight: 600; }
.about__visual__body span { display: block; font-size: 13px; color: var(--text-2); margin-top: 4px; line-height: 1.45; }
.about__visual__check { color: var(--primary); margin-left: auto; flex-shrink: 0; }

/* ─── SERVICES — flip cards ──────────────────────────────────── */
.svc {
  cursor: pointer;
  perspective: 1000px;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  min-height: 220px;
  position: relative;
}
.svc__inner {
  position: relative; width: 100%; min-height: 220px;
  transition: transform .6s cubic-bezier(.4,.2,.2,1);
  transform-style: preserve-3d;
}
.svc.is-flipped .svc__inner { transform: rotateY(180deg); }
.svc__face {
  position: absolute; inset: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: border-color .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.svc:hover .svc__face { border-color: var(--primary); box-shadow: var(--shadow); }
.svc__face--back {
  transform: rotateY(180deg);
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.svc__face--back .svc__title { color: #fff; }
.svc__face--back ul { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.svc__face--back li { font-size: 13.5px; color: rgba(255,255,255,0.92); line-height: 1.45; padding-left: 20px; position: relative; }
.svc__face--back li::before { content: ""; position: absolute; left: 0; top: 6px; width: 12px; height: 2px; background: var(--lime, #fff); border-radius: 1px; }
.svc__more {
  margin-top: auto; padding-top: 14px;
  font-size: 12px; color: var(--primary); font-weight: 500;
  display: inline-flex; align-items: center; gap: 4px;
}
.svc__more::after { content: "→"; transition: transform .15s; }
.svc:hover .svc__more::after { transform: translateX(2px); }
.svc__face--back .svc__more { color: rgba(255,255,255,0.85); }
.svc__face--back .svc__more::before { content: "← "; margin-right: 2px; }
.svc__face--back .svc__more::after { content: ""; }
.svc__icon { width: 36px; height: 36px; border-radius: 8px; margin-bottom: 12px; }
.svc__title { font-size: 16px; margin-bottom: 6px; line-height: 1.3; }
.svc__teaser { font-size: 13.5px; line-height: 1.5; color: var(--text-2); }
.svc__face--back .svc__teaser { color: rgba(255,255,255,0.9); font-size: 12.5px; }

/* ensure grid still 3 cols even with absolute children */
.services__grid { grid-auto-rows: 220px; align-items: stretch; }
@media (max-width: 900px) { .services__grid { grid-auto-rows: 240px; } }
@media (max-width: 600px) { .services__grid { grid-auto-rows: auto; } .svc, .svc__inner, .svc__face { min-height: 200px; } }

/* ─── Hero region pills ───────────────────────────────────────── */
.hero__regions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.hero__region {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11.5px; color: var(--text-2); font-weight: 500;
}
.hero__region svg { color: var(--primary); }

/* ─── Logo wall (marquee) ─────────────────────────────────────── */
.logowall { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 36px 0; overflow: hidden; position: relative; }
.logowall__head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.logowall__bar { width: 24px; height: 3px; background: var(--lime-3); border-radius: 2px; }
.logowall__lead { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.logowall__lead strong { color: var(--text); font-weight: 700; }
.logowall__viewport { mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%); }
.logowall__row { overflow: hidden; }
.logowall__track { display: flex; align-items: center; gap: 64px; width: max-content; animation: lwallscroll linear infinite; }
.logowall__row:hover .logowall__track { animation-play-state: paused; }
@keyframes lwallscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logowall__item { flex: 0 0 auto; padding: 6px; transition: transform .25s, opacity .25s; opacity: 0.65; }
.logowall__item:hover { transform: translateY(-2px); opacity: 1; }
.logowall__item img { width: auto; height: var(--h, 36px); object-fit: contain; filter: grayscale(0.4); transition: filter .25s; }
.logowall__item:hover img { filter: none; }
.logowall__fallback { display: none; font-size: 13px; color: var(--text-2); font-weight: 600; white-space: nowrap; }
.logowall__item--text .logowall__fallback { display: inline; }
.logowall__item--text img { display: none; }

/* ─── Stats / V číslach ───────────────────────────────────────── */
.stats { background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; top: -200px; left: -200px; width: 500px; height: 500px; background: radial-gradient(circle, var(--tint), transparent 70%); pointer-events: none; }
.stats::after { content: ""; position: absolute; bottom: -200px; right: -200px; width: 500px; height: 500px; background: radial-gradient(circle, var(--tint), transparent 70%); pointer-events: none; }
.stats > .container { position: relative; z-index: 1; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .stats__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .stats { padding-top: 56px; padding-bottom: 56px; } .stats__grid { gap: 12px; } }
.stat {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.stat:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.stat__num { font-size: clamp(36px, 4vw, 52px); font-weight: 600; color: var(--text); letter-spacing: -0.035em; line-height: 1; font-family: var(--font); }
.stat__num span { color: var(--lime-3); }
.stat__lbl { margin-top: 10px; font-size: 13px; color: var(--text-2); line-height: 1.4; }
.stat__icon { width: 32px; height: 32px; border-radius: 8px; background: var(--tint); color: var(--primary); display: grid; place-items: center; margin-bottom: 18px; }

/* ─── Process / Ako pracujem ──────────────────────────────────── */
.process { background: var(--bg); }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 12px; }
@media (max-width: 900px) { .process__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .process__grid { grid-template-columns: 1fr; } }
.step {
  position: relative;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.step:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.step__num { font-family: var(--mono); font-size: 12px; color: var(--primary); font-weight: 600; margin-bottom: 16px; letter-spacing: 0.04em; }
.step h3 { font-size: 17px; margin-bottom: 8px; font-weight: 600; }
.step p { font-size: 13.5px; color: var(--text-2); line-height: 1.55; }
.step::after {
  content: ""; position: absolute; top: 50%; right: -12px;
  width: 0; height: 0; border: 6px solid transparent;
  border-left: 8px solid var(--line);
  z-index: 1;
}
.step:last-child::after { display: none; }
@media (max-width: 900px) { .step::after { display: none; } }

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .faq__grid { grid-template-columns: 1fr; gap: 28px; } }
.faq__head h2 { margin-bottom: 14px; }
.faq__head p { color: var(--text-2); font-size: 15.5px; }
.faq__head a { color: var(--primary); font-weight: 500; border-bottom: 1px solid currentColor; }
.faq__list { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.faqitem { border-bottom: 1px solid var(--line); }
.faqitem:last-child { border-bottom: 0; }
.faqitem__q { display: flex; width: 100%; align-items: center; gap: 16px; padding: 22px 24px; text-align: left; font-size: 15.5px; font-weight: 500; color: var(--text); transition: background .15s; }
.faqitem__q:hover { background: var(--surface); }
.faqitem__qtext { flex: 1; min-width: 0; }
.faqitem__icon { width: 28px; height: 28px; border-radius: 50%; background: var(--surface); display: grid; place-items: center; font-size: 16px; color: var(--primary); line-height: 1; transition: background .15s, color .15s; flex-shrink: 0; }
.faqitem.is-open .faqitem__icon { background: var(--primary); color: #fff; }
.faqitem__a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .25s ease; }
.faqitem__a p { padding: 0 24px 6px 24px; color: var(--text-2); font-size: 14.5px; line-height: 1.65; max-width: 640px; }
.faqitem.is-open .faqitem__a { max-height: 400px; padding-bottom: 20px; }

/* ─── Big quote (manifest) ────────────────────────────────────── */
.manifesto { background: var(--bg); position: relative; }
.manifesto__quote {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 920px; margin: 0 auto;
  text-align: center;
  position: relative;
}
.manifesto__quote::before, .manifesto__quote::after { content: ""; }
.manifesto__quote em { font-style: normal; color: var(--primary); }
.manifesto__signature { margin-top: 32px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.manifesto__avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; }
.manifesto__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.manifesto__who strong { display: block; font-size: 14px; color: var(--text); font-weight: 600; }
.manifesto__who span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* hero background tweaks for richer feel */
.hero::after {
  content: ""; position: absolute; bottom: -120px; left: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(14,124,102,0.07), transparent 70%);
  pointer-events: none;
}

/* tweak about visual to mention regions */
.about__regions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.about__regions .pill { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; background: var(--bg); border: 1px solid var(--line); border-radius: 999px; font-size: 11.5px; color: var(--text-2); font-weight: 500; }
.about__regions .pill::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--primary); }

/* services section more prominent */
.services::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 240px; height: 240px; background: radial-gradient(circle, var(--tint), transparent 70%); pointer-events: none; }
.services { position: relative; overflow: hidden; }
.services > .container { position: relative; z-index: 1; }


/* ─── Reviews marquee — auto-scroll, 2 rows opposite ─────────── */
.refs__marquee { position: relative; }
.refs__marquee__row { overflow: hidden; padding: 8px 0; mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%); }
.refs__marquee__row + .refs__marquee__row { margin-top: 16px; }
.refs__marquee__track { display: flex; gap: 16px; width: max-content; animation: refsScroll linear infinite; }
.refs__marquee__row:hover .refs__marquee__track { animation-play-state: paused; }
@keyframes refsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.refs__marquee .ref { flex: 0 0 380px; min-height: 220px; }
@media (max-width: 540px) { .refs__marquee .ref { flex: 0 0 300px; min-height: 200px; } }

/* ─── Google rating tile (replaces photo badge address) ──────── */
.hero__rating {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
}
.hero__rating:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.hero__rating__g {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(from -45deg, #EA4335 0% 25%, #FBBC05 25% 50%, #34A853 50% 75%, #4285F4 75% 100%);
  position: relative;
}
.hero__rating__g::after { content: "G"; position: absolute; inset: 3px; border-radius: 50%; background: #fff; color: #4285F4; display: grid; place-items: center; font-size: 15px; font-weight: 700; font-family: var(--mono); }
.hero__rating__body { flex: 1; min-width: 0; }
.hero__rating__top { display: flex; align-items: baseline; gap: 8px; }
.hero__rating__score { font-size: 18px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.hero__rating__stars { color: #F5A623; font-size: 13.5px; letter-spacing: 1.5px; }
.hero__rating__sub { font-size: 11.5px; color: var(--text-2); margin-top: 2px; }
.hero__rating__sub strong { color: var(--text); font-weight: 600; }
.hero__rating__arrow { color: var(--muted); font-size: 18px; flex-shrink: 0; }


/* ─── Mobile menu (≤960px) ──────────────────────────────────── */
.nav__burger { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 10px; color: var(--text); background: transparent; }
.nav__burger:hover { background: var(--surface); }
.nav__mobile { display: none; }
.nav__mobile a { display: block; padding: 14px 20px; color: var(--text); font-weight: 500; border-top: 1px solid var(--line); font-size: 15px; }
.nav__mobile a:hover { background: var(--surface); }
.nav__mobile__phone { font-family: var(--mono); color: var(--lime-3); }
@media (max-width: 1120px) {
  .nav__btn { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__mobile { display: block; background: var(--bg); border-top: 1px solid var(--line); }
  .nav__mobile[hidden] { display: none; }
}


/* ════════════════════════════════════════════════════════════════════
   VISUAL POLISH PASS — final round
   ════════════════════════════════════════════════════════════════════ */

/* Section headers — consistent gap after H2 */
.sec-head h2 + .sec-head__lede { margin-top: 12px; }

/* Contact section — proper heading→lede gap + spacious form */
.contact__copy h2 { margin-bottom: 20px; line-height: 1.1; }
.contact__copy > p { font-size: 17px; line-height: 1.65; margin-bottom: 32px; }
.contact__contact { padding: 8px; }
.contact__line { padding: 16px 14px; gap: 16px; }
.contact__form { gap: 20px; padding: 36px 32px; }
.contact__form input, .contact__form select, .contact__form textarea { padding: 14px 16px; font-size: 15px; border-radius: 12px; }
.contact__form label > span { font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.contact__legal { font-size: 12px; line-height: 1.55; color: var(--muted); margin-top: 4px; }
.contact__form .btn--primary, .contact__form .btn { width: 100%; padding: 16px 22px; font-size: 15px; }

/* Force form submit to be full-width */
.contact__form button[type="submit"] { width: 100%; }

/* Reviews marquee — equal height + better internals */
.refs__marquee .ref {
  min-height: 240px;
  height: auto;
  display: flex; flex-direction: column;
  padding: 24px;
  gap: 14px;
}
.refs__marquee .ref blockquote { flex: 1; font-size: 14px; line-height: 1.6; }
.refs__marquee .ref figcaption { margin-top: 0; padding-top: 14px; }

/* Hero rating tile — push higher off the photo bottom */
.hero__rating { padding: 12px 14px; }
.hero__rating__g { width: 32px; height: 32px; }
.hero__rating__g::after { font-size: 14px; }
.hero__rating__score { font-size: 17px; }
.hero__rating__sub { font-size: 11px; }

/* Brandbar — better alignment between number, body and logo */
.brandbar__cell { padding: 20px 24px; }
.brandbar__num { width: 40px; height: 40px; font-size: 14px; border-radius: 10px; }
.brandbar__body { gap: 2px; }
.brandbar__lbl { font-size: 10.5px; letter-spacing: 0.14em; }
.brandbar__role { font-size: 16px; line-height: 1.3; }
.brandbar__role small { margin-top: 3px; font-size: 12px; line-height: 1.4; }
.brandbar__logo { height: 36px; max-width: 140px; }

/* Stats — tighter padding, balance numbers */
.stat { padding: 24px 22px; }
.stat__num { font-size: clamp(32px, 3.6vw, 44px); }
.stat__lbl { margin-top: 8px; font-size: 12.5px; }
.stat__icon { width: 28px; height: 28px; margin-bottom: 14px; }

/* Manifesto — tighter vertical rhythm */
.manifesto { padding-top: 56px; padding-bottom: 56px; }
.manifesto__quote { font-size: clamp(22px, 2.6vw, 30px); line-height: 1.4; }
.manifesto__signature { margin-top: 28px; }

/* Process steps — tighter cards */
.step { padding: 24px; }
.step__num { margin-bottom: 14px; font-size: 11.5px; }
.step h3 { font-size: 16px; margin-bottom: 6px; }
.step p { font-size: 13px; line-height: 1.5; }

/* Cenník — quieter */
.cennik { padding-top: 56px; padding-bottom: 56px; }
.cennik h3 { font-size: clamp(20px, 2.4vw, 26px); line-height: 1.3; }
.cennik p { font-size: 14.5px; line-height: 1.65; }

/* FAQ — sharper open state, lime accent */
.faqitem__q { padding: 20px 22px; font-size: 15px; }
.faqitem.is-open .faqitem__icon { background: var(--lime); color: var(--ink); }
.faqitem__a p { font-size: 14px; line-height: 1.65; padding: 0 22px 4px 22px; }

/* About — cleaner intro/copy */
.about__intro { font-size: 18px; line-height: 1.55; margin-bottom: 16px; }
.about__copy p { font-size: 15.5px; line-height: 1.65; margin-bottom: 12px; }
.about__visual { padding: 18px 20px; gap: 16px; }
.about__visual__avatar { width: 56px; height: 56px; }
.about__visual__body strong { font-size: 14.5px; }
.about__visual__body span { font-size: 12.5px; margin-top: 2px; }
.about__regions .pill { font-size: 11px; padding: 3px 9px; }

/* Newsletter — more breathing room */
.newsletter__card { padding: 40px; gap: 40px; }
.newsletter__card h2 { font-size: clamp(26px, 2.8vw, 36px); margin-bottom: 12px; line-height: 1.15; }
.newsletter__card p { font-size: 15px; line-height: 1.5; }
.newsletter__row input { padding: 13px 16px; font-size: 14.5px; }

/* Service cards — slightly tighter & cleaner */
.svc__face { padding: 22px; }
.svc__icon { width: 36px; height: 36px; margin-bottom: 14px; }
.svc__title { font-size: 16.5px; margin-bottom: 8px; line-height: 1.3; }
.svc__teaser { font-size: 13.5px; line-height: 1.55; }
.svc__more { padding-top: 12px; font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }

/* Reality hero card — better balance */
.reality__hero { padding: 40px; gap: 40px; }
.reality__hero h2 { font-size: clamp(24px, 2.8vw, 32px); margin-bottom: 14px; line-height: 1.2; }
.reality__hero p { font-size: 15px; line-height: 1.65; }
.reality__partner { padding: 24px; gap: 16px; }
.reality__partner img { height: 36px; }

/* Logo wall — slightly tighter */
.logowall { padding: 32px 0; }
.logowall__head { margin-bottom: 22px; }

/* Hero — tighter for laptop screens */
@media (min-width: 901px) and (max-width: 1280px) {
  .hero__name { font-size: clamp(36px, 4.4vw, 52px); }
  .hero__photo { aspect-ratio: 4/4.5; }
}

/* General — section spacing inside containers */
.sec-head { margin-bottom: 40px; }

/* Fix: section padding override consistency */
.cennik, .manifesto, .newsletter, .booking, .contact { padding-left: 0; padding-right: 0; }

/* Live dot color in contact section icons */
.contact__ico svg { color: var(--lime-3); }


/* ─── Contact map ────────────────────────────────────────────── */
.contact__map {
  display: block; position: relative;
  margin-top: 12px;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.6) contrast(1.05); }
.contact__map:hover iframe { filter: none; }
.contact__map__pin {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -100%);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  pointer-events: none;
}

/* ─── Reality partner — compact tile (now in sec-head row) ──── */
.reality .reality__partner {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
  width: 280px;
}
@media (max-width: 720px) { .reality .reality__partner { width: 100%; } }

/* Listings image always cover */
.listing__photo img { width: 100%; height: 100%; object-fit: cover; }
.listing__photo svg { display: block; }

/* Reality H2 sized + balanced for laptop */
.reality .sec-head h2 { font-size: clamp(32px, 3.8vw, 44px); line-height: 1.05; }


/* ─── Listings marquee (running) ─────────────────────────────── */
.listings__marquee { position: relative; }
.listings__marquee__row { overflow: hidden; padding: 8px 0; mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%); }
.listings__marquee__track { display: flex; gap: 16px; width: max-content; animation: listingsScroll linear infinite; }
.listings__marquee__row:hover .listings__marquee__track { animation-play-state: paused; }
@keyframes listingsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.listing--mq { flex: 0 0 340px; }
@media (max-width: 540px) { .listing--mq { flex: 0 0 280px; } }

/* ─── Contact icons — subtler, outlined ──────────────────────── */
.contact__ico {
  width: 38px; height: 38px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--text);
  flex-shrink: 0;
  transition: border-color .15s, background .15s, color .15s;
}
.contact__line:hover .contact__ico { background: var(--surface); border-color: var(--text); color: var(--text); }
.contact__ico svg { color: inherit; width: 17px; height: 17px; }

/* phone link bigger, mono */
.contact__line strong { font-size: 15px; font-family: var(--font); font-weight: 600; color: var(--text); }
.contact__line span { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* livedot smaller */
.livedot { width: 7px; height: 7px; }


/* ════════════════════════════════════════════════════════════════════
   FINAL FIX PASS — broken flip cards, partner logos, contact icons, map, FAQ
   ════════════════════════════════════════════════════════════════════ */

/* ─── Services — drop flip, show all bullets always ──────────── */
.svc {
  cursor: default !important;
  perspective: none !important;
  background: var(--bg) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  padding: 26px !important;
  min-height: auto !important;
  display: flex !important; flex-direction: column !important;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.svc:hover { border-color: var(--text) !important; transform: translateY(-2px) !important; box-shadow: var(--shadow) !important; }
.svc__inner, .svc__face, .svc__face--back, .svc__more, [data-flip] { display: revert !important; }
.svc__inner { all: unset; }
.svc__face, .svc__face--back { all: unset; display: contents; }
.svc__face--back { display: none !important; }
.svc__more { display: none !important; }
.services__grid { grid-auto-rows: auto !important; }
.svc__icon { width: 44px !important; height: 44px !important; background: var(--tint) !important; color: var(--ink) !important; border: 0 !important; border-radius: 12px !important; margin-bottom: 18px !important; display: grid !important; place-items: center !important; }
.svc__title { font-size: 18px !important; margin-bottom: 8px !important; color: var(--text) !important; font-weight: 600 !important; line-height: 1.3 !important; }
.svc__teaser { font-size: 14px !important; color: var(--text-2) !important; line-height: 1.55 !important; margin-bottom: 16px !important; }
.svc__bullets { display: flex; flex-direction: column; gap: 8px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.svc__bullets li { font-size: 13.5px; color: var(--text-2); padding-left: 22px; position: relative; line-height: 1.5; }
.svc__bullets li::before { content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 2px; background: var(--lime-3); border-radius: 2px; }

/* ─── Reviews — single row only ──────────────────────────────── */
.refs__marquee__row + .refs__marquee__row { display: none; }
.refs__marquee__row { padding: 12px 0; }
.refs__marquee .ref { flex: 0 0 360px; min-height: 220px; padding: 24px; }

/* ─── Partner logos — XL, no background, color ──────────────── */
.logowall { padding: 36px 0 !important; background: var(--bg) !important; border: 0 !important; border-top: 1px solid var(--line) !important; border-bottom: 1px solid var(--line) !important; }
.logowall__item { padding: 0; background: transparent !important; border: 0 !important; }
.logowall__item img {
  height: var(--h, 110px) !important;
  max-height: 130px;
  width: auto;
  max-width: none;
  background: transparent !important;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: multiply;
}
.logowall__track { gap: 96px !important; }
.logowall__head { margin-bottom: 18px !important; }
@media (max-width: 720px) {
  .logowall__item img { height: calc(var(--h, 110px) * 0.6) !important; }
  .logowall__track { gap: 56px !important; }
}

/* ─── About v2 — editorial 2-col with photo ──────────────────── */
.about2 { background: var(--bg); padding: 96px 0; }
.about2 .container { max-width: 1180px; }
.about2__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 72px;
  align-items: start;
}
.about2__photo {
  margin: 0;
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 56px -28px rgba(0,0,0,0.18);
}
.about2__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
}
.about2__photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.6);
}
.about2__photo__name { font-size: 14px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
.about2__photo__role { font-size: 12px; color: var(--text-2); font-family: var(--mono); }

.about2__content { padding-top: 8px; }
.about2__content .eyebrow { display: inline-block; margin-bottom: 18px; }
.about2__h2 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text);
  margin: 0 0 24px;
}
.about2__h2 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(180deg, transparent 62%, var(--tint) 62%);
  padding: 0 2px;
}
.about2__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 36px;
  max-width: 560px;
}
.about2__lead strong { color: var(--text); font-weight: 600; }

.about2__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.about2__list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.about2__list li:last-child { border-bottom: 1px solid var(--line); }
.about2__list__num {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
  padding-top: 2px;
}
.about2__list li strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.about2__list li p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
}

@media (max-width: 960px) {
  .about2 { padding: 64px 0; }
  .about2__grid { grid-template-columns: 1fr; gap: 40px; }
  .about2__photo { position: static; max-width: 420px; margin: 0 auto; aspect-ratio: 4/5; }
}
@media (max-width: 540px) {
  .about2 { padding: 48px 0; }
  .about2__lead { font-size: 16.5px; }
  .about2__list li { grid-template-columns: 40px 1fr; gap: 12px; padding: 16px 0; }
  .about2__list__num { font-size: 11px; }
  .about2__list li strong { font-size: 15.5px; }
  .about2__photo figcaption { left: 12px; right: 12px; bottom: 12px; padding: 10px 12px; }
}

/* ─── Prosight v2 — čistá foto, text pod ────────────────────── */
.prosight2 { background: #0A0A0A; padding: 64px 0; }
.prosight2__photo {
  margin: 0 0 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
}
.prosight2__photo img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 620px;
  object-fit: cover;
  object-position: center 35%;
}
.prosight2__row {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: start;
}
.prosight2__eyebrow {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  color: rgba(255,255,255,0.6) !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  margin-bottom: 14px !important;
}
.prosight2__eyebrow::before { background: var(--lime) !important; box-shadow: 0 0 8px var(--lime) !important; }
.prosight2__h3 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 14px;
  color: #fff;
  max-width: 720px;
}
.prosight2__p {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin: 0 0 22px;
  max-width: 640px;
}
.prosight2__p strong { color: #fff; font-weight: 600; }
.prosight2__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.prosight2__sidecard {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 5px solid #fff;
  box-shadow: 0 18px 44px -16px rgba(0,0,0,0.5);
  transform: rotate(1.5deg);
  transition: transform .25s;
}
.prosight2__sidecard:hover { transform: rotate(0); }
.prosight2__sidecard img { width: 100%; height: auto; display: block; }
.prosight2__sidecard figcaption {
  padding: 10px 14px 12px;
  font-size: 11.5px;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .prosight2__row { grid-template-columns: 1fr; gap: 28px; }
  .prosight2__sidecard { max-width: 320px; margin: 0 auto; }
}

/* ─── Homepage newsletter strip ────────────────────────────────── */
.hp-nl { background: var(--bg); padding: 64px 0; border-bottom: 1px solid var(--line); }
.hp-nl__card {
  background: linear-gradient(135deg, var(--tint) 0%, var(--surface) 100%);
  border: 1px solid var(--tint-2);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hp-nl__card::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,238,92,0.4), transparent 70%);
  pointer-events: none;
}
.hp-nl__copy { position: relative; }
.hp-nl__copy h3 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.15; margin: 6px 0 8px; color: var(--text); }
.hp-nl__copy p { font-size: 14.5px; line-height: 1.55; color: var(--text-2); margin: 0; max-width: 480px; }
.hp-nl__form { position: relative; display: flex; gap: 8px; }
.hp-nl__form input {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 14.5px;
  background: var(--bg);
  font-family: inherit;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.hp-nl__form input:focus { outline: none; border-color: var(--lime-3); box-shadow: 0 0 0 4px rgba(182,238,92,0.18); }
.hp-nl__form button { white-space: nowrap; }
@media (max-width: 900px) {
  .hp-nl__card { grid-template-columns: 1fr; padding: 28px 24px; }
  .hp-nl__form { flex-direction: column; gap: 10px; }
  .hp-nl__form button { width: 100%; justify-content: center; }
}

/* ─── Prosight — gala photo + overlay + side card ──────────────── */
.prosight { background: #0A0A0A; padding: 64px 0; position: relative; }
.prosight .container { position: relative; }
.prosight__hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 8;
  max-height: 580px;
  background: #000;
}
.prosight__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}
.prosight__hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 48px 44px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.78) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 55%);
  color: #fff;
}
.prosight__eyebrow {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  color: rgba(255,255,255,0.6) !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.prosight__eyebrow::before {
  background: var(--lime) !important;
  box-shadow: 0 0 8px var(--lime) !important;
}
.prosight__h3 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 14px;
  color: #fff;
  max-width: 720px;
}
.prosight__p {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0 0 22px;
  max-width: 680px;
}
.prosight__p strong { color: #fff; font-weight: 600; }
.prosight__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.prosight__link {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  font-family: var(--mono);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.28);
  padding-bottom: 2px;
  transition: color .15s, border-color .15s;
}
.prosight__link:hover { color: var(--lime); border-color: var(--lime); }

.prosight__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.005em;
  box-shadow: 0 8px 24px -8px rgba(182,238,92,0.45);
  transition: transform .15s, background .15s, box-shadow .15s;
}
.prosight__pill:hover {
  background: var(--lime-2);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(182,238,92,0.6);
}

.prosight__sidecard {
  position: absolute;
  right: 24px;
  bottom: -56px;
  width: 280px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  box-shadow: 0 28px 60px -24px rgba(0,0,0,0.5);
  border: 6px solid #fff;
  transform: rotate(2deg);
  transition: transform .25s;
  z-index: 5;
}
.prosight__sidecard:hover { transform: rotate(0) translateY(-4px); }
.prosight__sidecard img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.prosight__sidecard figcaption {
  padding: 8px 12px 10px;
  font-size: 11.5px;
  color: var(--muted);
  font-family: var(--mono);
  background: #fff;
}

@media (max-width: 900px) {
  .prosight { padding: 48px 0 80px; }
  .prosight__hero { aspect-ratio: 4 / 5; max-height: none; }
  .prosight__hero__overlay { padding: 28px 22px 24px; background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 65%); }
  .prosight__sidecard {
    position: static;
    transform: none;
    width: 100%;
    max-width: 320px;
    margin: 18px auto 0;
    border-width: 4px;
  }
  .prosight__sidecard img { height: 220px; }
}

/* ─── Tím Prosight — full photo (no crop) + caption below ──────── */
.team-sec {
  background: #0A0A0A;
  color: #fff;
  overflow: hidden;
}
.team-sec__figure {
  margin: 0;
  width: 100%;
  background: #0A0A0A;
  display: flex;
  justify-content: center;
}
.team-sec__figure img {
  display: block;
  width: 100%;
  max-width: 1600px;
  height: auto;
  object-fit: contain;
}
.team-sec__caption {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: end;
  padding: 36px 0 56px;
}
.team-sec__caption__text { max-width: 620px; }
.team-sec__caption .eyebrow {
  color: var(--lime);
  display: inline-block;
  margin-bottom: 10px;
}
.team-sec__h3 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  line-height: 1.1;
  color: #fff;
}
.team-sec__p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.team-sec__p strong { color: #fff; font-weight: 600; }

.team-sec__caption__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  padding-bottom: 4px;
}
.team-sec__stat {
  display: flex;
  flex-direction: column;
  text-align: right;
  border-right: 2px solid var(--lime);
  padding-right: 16px;
}
.team-sec__stat strong {
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}
.team-sec__stat span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  font-family: var(--mono);
}
.team-sec__link {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-family: var(--mono);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color .15s, border-color .15s;
}
.team-sec__link:hover { color: var(--lime); border-color: var(--lime); }

@media (max-width: 900px) {
  .team-sec__caption { grid-template-columns: 1fr; gap: 28px; padding: 28px 0 44px; }
  .team-sec__caption__meta { align-items: flex-start; flex-direction: row; gap: 24px; }
  .team-sec__stat { text-align: left; }
}
@media (max-width: 540px) {
  .team-sec__caption { padding: 24px 0 36px; }
  .team-sec__caption__meta { flex-direction: column; gap: 14px; align-items: flex-start; }
}

/* ─── Prosight výsledky — dark stats grid ──────────────────────── */
.ps-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ps-stats__card {
  padding: 22px 22px 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 168px;
}
.ps-stats__card--lime {
  background: #0F1714;
  border: 1px solid rgba(182,238,92,0.18);
}
.ps-stats__card--lime .ps-stats__num { color: var(--lime); }
.ps-stats__card--lime .ps-stats__label { color: var(--lime); background: rgba(182,238,92,0.1); border-color: rgba(182,238,92,0.25); }
.ps-stats__card--purple {
  background: #B8B1F7;
}
.ps-stats__card--purple .ps-stats__num { color: #0A0A0A; }
.ps-stats__card--purple .ps-stats__label { color: #0A0A0A; background: rgba(0,0,0,0.08); border-color: rgba(0,0,0,0.12); }
.ps-stats__card--purple .ps-stats__sub { color: rgba(0,0,0,0.72); }
.ps-stats__label {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid;
}
.ps-stats__num {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-top: auto;
}
.ps-stats__sub {
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255,255,255,0.72);
}
@media (max-width: 960px) { .ps-stats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ps-stats__grid { grid-template-columns: 1fr; } }

/* ─── Môj tím — grid kariet ────────────────────────────────────── */
.myteam { background: var(--bg); padding: 88px 0; }
.myteam__head { max-width: 720px; margin: 0 0 40px; }
.myteam__h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 6px 0 14px;
  color: var(--text);
}
.myteam__lead {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}

.myteam__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) { .myteam__grid { grid-template-columns: repeat(2, 1fr); } }
.myteam__card__badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.myteam__card__badge--training {
  background: var(--surface-2);
  color: var(--muted);
  border: 1px dashed var(--line);
}
.myteam__card__badge--partner {
  background: var(--tint);
  color: var(--text);
  border: 1px solid var(--tint-2);
}
.myteam__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.myteam__card:hover {
  transform: translateY(-3px);
  border-color: var(--text);
  box-shadow: 0 16px 40px -20px rgba(0,0,0,0.12);
}
.myteam__card__photo {
  aspect-ratio: 1 / 1;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.myteam__card__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block;
}
.myteam__card__initials {
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
  font-size: 44px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--tint), var(--surface-2));
}
.myteam__card__initials--training {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-2);
}
.myteam__card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.myteam__card__body strong {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.myteam__card__role {
  font-size: 12.5px;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.myteam__card__spec {
  font-size: 13px;
  color: var(--text-2);
  margin-top: 4px;
  line-height: 1.4;
}
.myteam__card__contact {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.myteam__card__contact a {
  font-size: 12.5px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--mono);
}
.myteam__card__contact a:hover { color: var(--lime-3); }

.myteam__foot {
  margin-top: 32px;
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

@media (max-width: 960px) {
  .myteam__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .myteam { padding: 64px 0; }
  .myteam__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .myteam__card__body { padding: 14px 14px 16px; }
  .myteam__card__initials { font-size: 32px; }
}

/* ─── NBS reg number link in certs header ─────────────────────── */
.certs2__regno {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 6px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  transition: border-color .15s, background .15s;
}
.certs2__regno:hover {
  border-color: var(--lime-3);
  background: var(--tint);
}
.certs2__regno__label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 10.5px;
}
.certs2__regno__num {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--text);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.certs2__regno__sep { color: var(--muted); }
.certs2__regno__verify {
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 540px) {
  .certs2__regno { flex-wrap: wrap; gap: 6px; padding: 6px 10px; }
  .certs2__regno__verify { font-size: 11.5px; }
}

/* ─── Certs v2 — kompaktný zoznam ─────────────────────────────── */
.certs2 {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.certs2__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.certs2__h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-top: 4px;
  color: var(--text);
}
.certs2__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.certs2__badge__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
}

.certs2__list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.certs2__list li + li { border-top: 1px solid var(--line); }
.certs2__row {
  display: grid;
  grid-template-columns: 24px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}
.certs2__row:hover { background: var(--tint); }
.certs2__row__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--lime-3);
  flex: 0 0 22px;
}
.certs2__row:hover .certs2__row__check {
  background: var(--lime);
  color: var(--ink);
}
.certs2__row__name {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.certs2__row__date {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  white-space: nowrap;
}
.certs2__row__cta {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  opacity: 0.6;
  transition: opacity .15s;
}
.certs2__row:hover .certs2__row__cta { opacity: 1; }

.certs2__foot {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  font-family: var(--mono);
}

@media (max-width: 720px) {
  .certs2 { padding: 44px 0; }
  .certs2__head { margin-bottom: 18px; gap: 14px; }
  .certs2__row {
    grid-template-columns: 22px 1fr auto;
    gap: 12px;
    padding: 14px 14px;
  }
  .certs2__row__date {
    grid-column: 2 / 4;
    font-size: 10.5px;
    margin-top: 2px;
  }
  .certs2__row__name { font-size: 14px; line-height: 1.35; }
  .certs2__foot { text-align: left; font-size: 11px; }
}
@media (max-width: 420px) {
  .certs2__row__cta { display: none; }
  .certs2__row { grid-template-columns: 22px 1fr; }
  .certs2__row__date { grid-column: 2 / 3; }
}

/* ─── About → NBS quick badge / link ──────────────────────────── */
.about2__nbs {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color .15s, background .15s, transform .15s;
}
.about2__nbs:hover { border-color: var(--lime-3); background: var(--tint); transform: translateX(2px); }
.about2__nbs__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  flex-shrink: 0;
}
.about2__nbs__text { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.about2__nbs__text strong { font-size: 14px; color: var(--text); font-weight: 600; letter-spacing: -0.005em; }
.about2__nbs__text span { font-size: 12px; color: var(--muted); font-family: var(--mono); }
.about2__nbs__arrow { font-size: 18px; color: var(--text-2); transition: transform .15s, color .15s; }
.about2__nbs:hover .about2__nbs__arrow { color: var(--text); transform: translateX(2px); }

/* ─── Contact icons — properly centered ──────────────────────── */
.contact__line {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 14px 14px !important;
}
.contact__ico {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important; height: 42px !important;
  border-radius: 10px !important;
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
  color: var(--text) !important;
  flex-shrink: 0 !important;
}
.contact__ico svg { width: 18px !important; height: 18px !important; color: var(--text) !important; display: block !important; }
.contact__line div { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.contact__line strong { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.3; }
.contact__line span { font-size: 12.5px; color: var(--muted); line-height: 1.4; }

/* ─── Map — taller, real Google maps embed ───────────────────── */
.contact__map { aspect-ratio: 16/10 !important; margin-top: 14px !important; border-radius: var(--radius) !important; box-shadow: var(--shadow-sm); }
.contact__map iframe { filter: none !important; }
.contact__map__pin { display: none !important; }

/* ─── FAQ — ensure click works (fallback if JS fails) ──────── */
.faqitem { transition: background .15s; }
.faqitem.is-open { background: var(--bg); }
.faqitem__a { transition: max-height .35s ease, padding .25s ease, opacity .2s; opacity: 0; }
.faqitem.is-open .faqitem__a { max-height: 600px; padding-bottom: 22px; opacity: 1; }
.faqitem__q { display: flex !important; align-items: center !important; cursor: pointer; }
.faqitem__icon { transition: background .2s, color .2s, transform .2s; }
.faqitem.is-open .faqitem__icon { transform: rotate(180deg); }

/* ─── Smooth transitions globally ────────────────────────────── */
.btn, .listing, .ref, .svc, .stat, .cert, .step, .pgroup, .greviews, .nav, .nav__links a, .faqitem {
  transition-timing-function: cubic-bezier(.2,.7,.2,1);
}

/* ─── Reality marquee tighter ────────────────────────────────── */
.listings__marquee__row { padding: 12px 0; }
.listing--mq { flex: 0 0 360px; }


/* ════════════════════════════════════════════════════════════════════
   ABOUT — left side as structured blocks (not raw text wall)
   ════════════════════════════════════════════════════════════════════ */
.about__left { display: flex; flex-direction: column; gap: 20px; }
.about__h2 {
  font-size: clamp(32px, 4vw, 44px) !important;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 !important;
}
.about__role-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 12px;
  background: var(--tint);
  border: 1px solid var(--tint-2);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--text);
  align-self: flex-start;
}
.about__role-chip::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime-3); box-shadow: 0 0 6px var(--lime);
  animation: livepulse 2.2s ease-out infinite;
}
.about__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  max-width: 520px;
  margin: 0 !important;
}
.about__lead strong { color: var(--text); font-weight: 600; }
.about__blocks { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.about__block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.about__block:hover { border-color: var(--text); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.about__block__num {
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--bg); border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--text);
  flex-shrink: 0;
}
.about__block strong { display: block; font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.about__block span { display: block; font-size: 13.5px; color: var(--text-2); line-height: 1.55; }

/* Drop ugly default about__copy h2 sizing */
.about__copy h2 { display: none !important; }

/* ════════════════════════════════════════════════════════════════════
   CONTACT — heading smaller, contained in card style
   ════════════════════════════════════════════════════════════════════ */
.contact__left { display: flex; flex-direction: column; gap: 16px; }
.contact__h2 {
  font-size: clamp(32px, 3.8vw, 42px) !important;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 !important;
}
.contact__sub {
  display: inline-flex; align-items: center;
  font-family: var(--mono); font-size: 13px;
  color: var(--lime-3); font-weight: 500;
  padding: 5px 12px;
  background: var(--tint); border: 1px solid var(--tint-2);
  border-radius: 999px;
  align-self: flex-start;
}
.contact__lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 460px;
  margin: 0 0 8px !important;
}
.contact__lead strong { color: var(--text); font-weight: 600; }


/* ─── About — full width, centered header ──────────────────── */
.about__grid { display: block !important; }
.about__h2 { font-weight: 600; letter-spacing: -0.035em; line-height: 1.05; }
.about__role-chip { display: inline-flex; }
.about__blocks { margin-top: 0 !important; }
.about__block { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; gap: 16px; align-items: flex-start; transition: border-color .2s, transform .2s, box-shadow .2s; }
.about__block:hover { border-color: var(--text); transform: translateY(-2px); box-shadow: var(--shadow); }
@media (max-width: 800px) { .about__blocks { grid-template-columns: 1fr !important; } }

/* ─── Certs marquee ───────────────────────────────────────── */
.certs-mq__viewport {
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  overflow: hidden;
}
.certs-mq__track { display: flex; gap: 14px; width: max-content; animation: certsScroll linear infinite; padding: 4px 0; }
.certs-mq__viewport:hover .certs-mq__track { animation-play-state: paused; }
@keyframes certsScroll { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }
.certs-mq__card {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  min-width: 380px;
}
.certs-mq__card:hover { border-color: var(--text); }
.certs-mq__check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--lime); color: var(--ink);
  flex-shrink: 0;
  line-height: 0;
}
.certs-mq__check svg { display: block; width: 14px; height: 14px; }
.certs-mq__card { text-decoration: none; color: inherit; }
.certs-mq__more { margin-left: auto; padding-left: 8px; color: var(--muted); font-size: 14px; font-weight: 500; transition: color .15s, transform .15s; flex-shrink: 0; }
.certs-mq__card:hover .certs-mq__more { color: var(--lime-3); transform: translateY(-1px); }
.certs-mq__card strong { display: block; font-size: 13.5px; color: var(--text); font-weight: 600; line-height: 1.3; }
.certs-mq__card span { display: block; font-size: 11.5px; color: var(--muted); font-family: var(--mono); margin-top: 2px; }
@media (max-width: 540px) {
  .certs-mq__card { min-width: 280px; padding: 12px 18px; }
  .certs-mq__card strong { font-size: 12.5px; }
}


/* ─── Google rating card in Reviews section ──────────────────── */
.grating-card {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 16px 22px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  max-width: 100%;
}
.grating-card:hover { border-color: var(--text); transform: translateY(-2px); box-shadow: var(--shadow); }
.grating-card__g {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(from -45deg, #EA4335 0% 25%, #FBBC05 25% 50%, #34A853 50% 75%, #4285F4 75% 100%);
  position: relative;
}
.grating-card__g::after { content: "G"; position: absolute; inset: 4px; border-radius: 50%; background: #fff; color: #4285F4; display: grid; place-items: center; font-size: 18px; font-weight: 700; font-family: var(--mono); }
.grating-card__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.grating-card__row { display: flex; align-items: baseline; gap: 8px; }
.grating-card__row strong { font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; line-height: 1; }
.grating-card__stars { color: #F5A623; font-size: 14px; letter-spacing: 1.5px; }
.grating-card__sub { font-size: 12.5px; color: var(--muted); }
.grating-card__cta { margin-left: 8px; padding-left: 16px; border-left: 1px solid var(--line); font-size: 13px; color: var(--text); font-weight: 600; white-space: nowrap; }
.grating-card:hover .grating-card__cta { color: var(--lime-3); }
@media (max-width: 540px) {
  .grating-card { flex-wrap: wrap; }
  .grating-card__cta { margin-left: 0; padding-left: 0; border-left: 0; width: 100%; margin-top: 8px; }
}


/* ─── Certs grid (replaces marquee) ──────────────────────────── */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .cert-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .cert-grid { grid-template-columns: 1fr; } }

.cert-card {
  display: flex; flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.cert-card:hover { border-color: var(--text); transform: translateY(-3px); box-shadow: var(--shadow); }
.cert-card__thumb {
  position: relative;
  aspect-ratio: 5/4;
  background: linear-gradient(180deg, #F8F9FB 0%, #ECEEF2 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.cert-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.cert-card__seal {
  position: absolute; bottom: 12px; right: 12px;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--lime); color: var(--ink);
  border-radius: 50%;
  box-shadow: 0 2px 8px -2px rgba(0,0,0,0.2);
}
.cert-card__body { padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.cert-card__body strong {
  font-size: 14.5px; color: var(--text); font-weight: 600; line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.cert-card__date { font-size: 12px; color: var(--muted); font-family: var(--mono); margin-top: 2px; }
.cert-card__more { margin-top: auto; padding-top: 10px; font-size: 12px; color: var(--text-2); font-weight: 500; letter-spacing: 0.02em; transition: color .15s; }
.cert-card:hover .cert-card__more { color: var(--lime-3); }

