/* =========================================================
   [Názov firmy] — one-page site
   Design tokens, layout, components, responsive, motion
   ========================================================= */

:root {
  /* Brand — Softis green / cream palette (per design manual)
     Token names kept (indigo/amber) for compatibility; values are the new brand. */
  --indigo-50:  #EAEFEA;   /* light green tint — chip / icon backgrounds */
  --indigo-100: #D6E1D8;   /* light green — hover borders */
  --indigo-500: #3E6650;   /* mid green */
  --indigo-600: #2F4F3E;   /* PRIMARY — forest green */
  --indigo-700: #243D30;   /* dark green — hover / strong */

  --amber-400: #C9D3C4;    /* light sage — accent text on dark */
  --amber-500: #9DA99C;    /* sage — secondary accent */
  --amber-600: #6E7A68;    /* dark sage — accent text on light */

  /* Neutrals — warm / earthy */
  --ink-900: #1E1E1E;
  --ink-700: #2B2B28;
  --ink-600: #44443E;
  --ink-500: #5E5E55;
  --ink-400: #84847A;
  --ink-300: #ADACA0;
  --ink-200: #CFC9BC;
  --ink-100: #E5E0D4;
  --ink-50:  #F2EFE6;

  --cream:   #F2EFE6;
  --paper:   #FFFFFF;

  /* Semantic */
  --bg:           var(--paper);
  --bg-soft:      var(--cream);
  --bg-dark:      #2F4F3E;        /* forest green — brand dark sections */
  --text:         var(--ink-900);
  --text-muted:   var(--ink-500);
  --text-on-dark: #ECE9DF;
  --border:       var(--ink-100);

  --primary:      var(--indigo-600);
  --primary-hov:  var(--indigo-700);
  --accent:       var(--amber-500);
  --accent-hov:   var(--amber-600);

  /* Type */
  --font-sans: 'Switzer', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Switzer', var(--font-sans);

  /* Radius & shadow */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(30,30,28,.06), 0 1px 3px rgba(30,30,28,.04);
  --shadow-md: 0 10px 30px -10px rgba(30,30,28,.16);
  --shadow-lg: 0 30px 60px -20px rgba(30,30,28,.22);

  --container: 1180px;
  --section-y: clamp(64px, 9vw, 120px);
}

/* =========================
   Base
   ========================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .4em;
  color: var(--ink-900);
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 800; letter-spacing: -0.02em; overflow-wrap: break-word; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { margin: 0 0 1em; color: var(--text-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink-900); color: #fff;
  padding: 10px 16px; border-radius: 0 0 12px 0; z-index: 999;
}
.skip-link:focus { left: 0; }

/* =========================
   Nav
   ========================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nav.is-scrolled {
  background: rgba(255,255,255,.92);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 84px; gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 600;
  color: var(--ink-900); font-size: 1.5rem;
}
/* Wordmark per brand manual — uppercase, generous tracking */
.brand__name {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  /* optical balance: pull the trailing letter-space back so the lockup stays centered */
  margin-right: -0.22em;
}
.brand__mark {
  width: 84px; height: 56px;
  display: inline-grid; place-items: center;
}
.brand__mark svg { display: block; }
.nav__menu {
  display: flex; align-items: center; gap: 26px;
}
.nav__menu a {
  color: var(--ink-600); font-weight: 500; font-size: .96rem;
  transition: color .2s;
}
.nav__menu a:hover { color: var(--ink-900); }
/* CTA button in nav keeps white text (override generic nav link color) */
.nav__menu a.btn--primary,
.nav__menu a.btn--primary:hover { color: #fff; }

.nav__toggle {
  display: none; /* flipped to flex column in mobile breakpoint */
  width: 44px; height: 44px;
  background: var(--indigo-50);
  border: 1px solid var(--indigo-100);
  padding: 11px 10px;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  transition: background .2s, border-color .2s;
}
.nav__toggle:hover { background: var(--indigo-100); border-color: #CBD8CC; }
.nav__toggle span {
  display: block; width: 100%; height: 2.5px;
  flex: none; /* keep explicit height inside flex column */
  background: var(--indigo-700);
  margin: 4px 0; border-radius: 2px;
  transition: transform .25s, opacity .25s, background .2s;
}
.nav.is-open .nav__toggle { background: var(--indigo-600); border-color: var(--indigo-600); }
.nav.is-open .nav__toggle span { background: #fff; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-family: var(--font-sans);
  padding: 12px 20px; border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn--sm { padding: 9px 16px; font-size: .92rem; }
.btn--lg { padding: 15px 26px; font-size: 1.02rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(47,79,62,.55);
}
.btn--primary:hover { background: var(--primary-hov); transform: translateY(-1px); box-shadow: 0 16px 28px -10px rgba(47,79,62,.6); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent; color: var(--ink-900);
  border-color: var(--ink-200);
}
.btn--ghost:hover { background: var(--ink-50); border-color: var(--ink-300); }

.btn:focus-visible {
  outline: 3px solid var(--indigo-100);
  outline-offset: 2px;
}

/* =========================
   Hero
   ========================= */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(64px, 8vw, 120px) 0 clamp(80px, 9vw, 140px);
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.hero__bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .55;
}
.blob--1 {
  width: 520px; height: 520px;
  top: -120px; right: -120px;
  background: radial-gradient(circle, var(--indigo-100), transparent 70%);
}
.blob--2 {
  width: 460px; height: 460px;
  bottom: -160px; left: -100px;
  background: radial-gradient(circle, #E7E4D5, transparent 70%);
}
.grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,30,28,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,30,28,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}

.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero__title { margin-top: 14px; }
.hero__lead {
  font-size: 1.18rem; color: var(--ink-600);
  max-width: 56ch; margin-top: 6px;
}
.grad {
  background: linear-gradient(90deg, var(--indigo-600), var(--amber-500));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans); font-weight: 600; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--indigo-600);
  padding: 6px 12px;
  background: var(--indigo-50);
  border-radius: 999px;
}
/* Breathing room between the eyebrow pill and the heading that follows it */
.eyebrow + h1,
.eyebrow + h2,
.eyebrow + h3 { margin-top: 20px; }
.eyebrow--light {
  background: rgba(255,255,255,.08);
  color: var(--amber-400);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__trust {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-wrap: wrap; gap: 16px 22px;
  color: var(--ink-500); font-size: .95rem;
}
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust svg { color: var(--indigo-600); }

/* Visual card */
.hero__visual { position: relative; }
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 18px;
  box-shadow: var(--shadow-lg);
}
.card__head { display: flex; align-items: center; gap: 8px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--ink-200); }
.dot--r { background: #F87171; }
.dot--y { background: #FBBF24; }
.dot--g { background: #34D399; }
.card__title { margin-left: 10px; font-size: .85rem; color: var(--ink-400); font-family: 'JetBrains Mono', monospace; }
.card__body { padding-top: 18px; display: grid; gap: 16px; }

/* Mock mini-website inside the hero card */
.mock-hero { display: grid; gap: 6px; }
.mock-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.mock-logo__mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--indigo-600), var(--amber-500));
  flex-shrink: 0;
  box-shadow: 0 4px 10px -4px rgba(47,79,62,.5);
}
.mock-logo__lines { display: grid; gap: 4px; }
.mock-logo__lines span {
  display: block; height: 6px; border-radius: 3px;
  background: var(--ink-100);
}
.mock-logo__lines span:first-child { width: 60px; background: var(--ink-200); }
.mock-logo__lines span:last-child  { width: 36px; }

.mock-headline {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem; color: var(--ink-900);
  letter-spacing: -0.01em; line-height: 1.2;
}
.mock-sub {
  font-size: .82rem; color: var(--ink-400);
}

.mock-grid {
  display: grid; grid-template-columns: 1fr .9fr;
  gap: 10px; margin-top: 4px;
}
.mock-chart {
  display: flex; align-items: flex-end; gap: 6px;
  padding: 12px; height: 84px;
  background: linear-gradient(135deg, var(--indigo-50), #E7E4D5);
  border-radius: 12px;
}
.mock-chart span {
  flex: 1; height: var(--h);
  background: linear-gradient(180deg, var(--indigo-600), var(--indigo-500));
  border-radius: 4px 4px 2px 2px;
  opacity: .85;
}
.mock-chart span:last-child {
  background: linear-gradient(180deg, var(--amber-500), var(--amber-400));
}
.mock-stat {
  display: flex; flex-direction: column; justify-content: center;
  padding: 12px 14px; height: 84px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.mock-stat__num {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.5rem;
  color: var(--indigo-700);
  line-height: 1;
}
.mock-stat__label {
  font-size: .76rem; color: var(--ink-400); margin-top: 4px;
}

.card__row { display: flex; gap: 8px; margin-top: 2px; flex-wrap: wrap; }
.pill {
  padding: 6px 12px; border-radius: 999px;
  background: var(--indigo-50); color: var(--indigo-700);
  font-size: .82rem; font-weight: 600;
}
.pill--alt { background: #E7E4D5; color: #5A6152; }

.card--float { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

.badge {
  position: absolute;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: baseline; gap: 8px;
}
.badge strong {
  font-family: var(--font-display); font-size: 1.3rem; color: var(--indigo-700);
}
.badge span { color: var(--ink-500); font-size: .88rem; }
.badge--top    { top: -18px; left: -20px; }
.badge--bottom { bottom: -18px; right: -10px; }

/* =========================
   Sections
   ========================= */
.section { padding: var(--section-y) 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section--cta  { background: linear-gradient(180deg, var(--cream), #fff); }
/* Tighter gaps between adjacent sections (e.g. CTA on subpages) */
.section--tight-top    { padding-top: clamp(28px, 4vw, 48px); }
.section--tight-bottom { padding-bottom: clamp(28px, 4vw, 48px); }

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 64px);
}
.section__sub { font-size: 1.08rem; color: var(--ink-500); margin-top: 6px; }
.section__cta { text-align: center; margin-top: 48px; }

/* Left-aligned head variant (subpages, e.g. BarBack case study) */
.section__head--left { text-align: left; margin-left: 0; margin-right: auto; }

/* Back link (subpage breadcrumb) */
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 24px;
  font-weight: 600; font-size: .95rem;
  color: var(--ink-500); text-decoration: none;
  transition: color .15s ease, gap .15s ease;
}
.back-link:hover { color: var(--ink-900); gap: 12px; }
.back-link svg { flex: none; }

.lead { font-size: 1.12rem; color: var(--ink-600); }
.lead--light { color: #CFC9BC; }
.p--light    { color: #ADACA0; }
.h2--light   { color: #fff; }

.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px); align-items: center;
}
.two-col--wide { align-items: start; }

/* =========================
   Problem section — "Poznáte to?"
   ========================= */
.problem {
  background: #33332E;
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.problem::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 0%, rgba(47,79,62,.25), transparent 45%),
              radial-gradient(circle at 90% 100%, rgba(157,169,156,.18), transparent 45%);
  pointer-events: none;
}
.problem .section__head { position: relative; }
.problem h2 { color: #fff; }
.problem .eyebrow--light { background: rgba(255,255,255,.08); color: var(--amber-400); }
.problem .section__sub { color: #ADACA0; }

.problem-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.problem-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  padding: 24px 24px 22px;
  transition: background .25s, border-color .25s, transform .25s;
}
.problem-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-3px);
}
.problem-card__q {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.problem-card__mark {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(157,169,156,.15);
  color: var(--amber-400);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 1rem;
}
.problem-card p {
  margin: 0;
  color: #ADACA0;
  font-size: .94rem;
  line-height: 1.55;
}
.problem-bridge {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.problem-bridge p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.45;
  color: #E5E0D4;
  font-weight: 600;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.problem-bridge .grad {
  background: linear-gradient(90deg, #6E8C7B, var(--amber-400));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* =========================
   "Pre koho sme" — audience section
   ========================= */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.audience-card {
  background: #fff;
  border: 1px solid rgba(30,30,28,.05);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30,30,28,.1);
}
.audience-card__ico {
  width: 56px; height: 56px;
  display: inline-grid; place-items: center;
  border-radius: 16px;
  background: #fff;                    /* white chip pops on the pastel card */
  box-shadow: 0 4px 12px -4px rgba(30,30,28,.12);
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 16px;
  transition: transform .25s ease;
}
.audience-card:hover .audience-card__ico { transform: rotate(-4deg) scale(1.06); }

/* Earthy pastel card backgrounds — one tint per card, harmonised with the green/cream palette */
.audience-grid .audience-card:nth-child(1) { background: #DCE6DE; } /* soft sage */
.audience-grid .audience-card:nth-child(2) { background: #ECDCCB; } /* warm clay */
.audience-grid .audience-card:nth-child(3) { background: #D7E1DC; } /* dusty teal */
.audience-grid .audience-card:nth-child(4) { background: #ECE7CD; } /* pale sand */
.audience-grid .audience-card:nth-child(5) { background: #E9DCE0; } /* dusty mauve */
.audience-grid .audience-card:nth-child(6) { background: #E2E8DC; } /* light olive */
.audience-card h3 {
  font-size: 1.12rem;
  margin: 0 0 6px;
}
.audience-card p {
  margin: 0;
  color: var(--ink-500);
  font-size: .92rem;
  line-height: 1.5;
}
.audience-note {
  text-align: center;
  margin: 34px auto 0;
  max-width: 640px;
  color: var(--ink-500);
  font-size: 1rem;
}
.audience-note strong { color: var(--ink-900); font-weight: 600; }

/* =========================
   Honest social proof — "Začíname"
   ========================= */
.honest {
  background: linear-gradient(135deg, var(--indigo-700) 0%, var(--indigo-600) 55%, #243D30 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.honest::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  bottom: -250px; right: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157,169,156,.3), transparent 70%);
  filter: blur(100px);
  pointer-events: none;
}
.honest__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.honest .eyebrow {
  background: rgba(255,255,255,.12);
  color: var(--amber-400);
}
.honest h2 { color: #fff; }
.honest__lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
  max-width: 720px;
  margin: 18px auto 0;
}
.honest__lead strong { color: #fff; font-weight: 700; }
.honest__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
  text-align: left;
}
.honest__card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-md);
  padding: 22px 20px;
}
.honest__card-ico {
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 10px;
}
.honest__card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.honest__card p {
  margin: 0;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.honest__guarantee {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  margin: 0 auto 28px;
  max-width: 720px;
  text-align: left;
}
.honest__guarantee-head {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  justify-content: center;
}
.honest__guarantee-ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(157,169,156,.18);
  color: var(--amber-400);
  display: grid; place-items: center;
}
.honest__guarantee-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.honest__guarantee-list li {
  position: relative;
  padding-left: 32px;
  color: rgba(255,255,255,.85);
  font-size: .98rem;
  line-height: 1.5;
}
.honest__guarantee-list li::before {
  content: "";
  position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239DA99C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
}
.honest__guarantee-list strong { color: #fff; font-weight: 700; }

.honest__offer {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,.1);
  border: 1px dashed rgba(255,255,255,.3);
  border-radius: var(--r-md);
  padding: 18px 26px;
  margin-bottom: 28px;
}
.honest__offer-label {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber-400);
}
.honest__offer-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}
.honest .btn--primary {
  background: #fff;
  color: var(--indigo-700);
}
.honest .btn--primary:hover {
  background: #F2EFE6;
}

/* =========================
   Services
   ========================= */
.grid--cards {
  display: flex; flex-wrap: wrap; gap: 22px;
  justify-content: center;
}
.grid--cards > .service {
  flex: 1 1 calc(33.333% - 15px);
  min-width: 280px;
  max-width: calc(33.333% - 15px);
}
.service {
  background: #fff; border: 1px solid rgba(30,30,28,.05);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; /* lets price pin to bottom */
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30,30,28,.1);
}
.service__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: #fff;                    /* white chip pops on the pastel card */
  box-shadow: 0 4px 12px -4px rgba(30,30,28,.12);
  color: var(--indigo-600);
  margin-bottom: 18px;
  transition: transform .25s;
}
.service:hover .service__icon { transform: rotate(-4deg) scale(1.06); }

/* Earthy pastel card backgrounds — Služby */
.grid--cards .service:nth-child(1) { background: #DCE6DE; } /* soft sage */
.grid--cards .service:nth-child(2) { background: #ECDCCB; } /* warm clay */
.grid--cards .service:nth-child(3) { background: #D7E1DC; } /* dusty teal */
.grid--cards .service:nth-child(4) { background: #ECE7CD; } /* pale sand */
.grid--cards .service:nth-child(5) { background: #E9DCE0; } /* dusty mauve */
.grid--cards .service:nth-child(6) { background: #E2E8DC; } /* light olive */
/* keep the dashed price divider subtle on the tinted cards */
.service__price { border-top-color: rgba(30,30,28,.1) !important; }
.service h3 { margin-bottom: 8px; }
.service p  { margin: 0; color: var(--ink-500); }

/* Price tag on the service card */
.service__price {
  margin-top: auto;     /* pin price row to the bottom so it aligns across cards */
  padding-top: 16px;
  border-top: 1px dashed var(--ink-100);
  font-size: .92rem;
  color: var(--ink-500);
  display: flex; align-items: baseline; gap: 6px;
  position: relative; z-index: 1;
}
.service__price strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  background: linear-gradient(90deg, var(--indigo-700), var(--amber-600));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.service__price .per {
  color: var(--ink-400);
  font-size: .85rem;
}
.service__price-note {
  margin-top: 6px;
  min-height: 1.4em;   /* reserve one line so prices align across cards */
  font-size: .82rem;
  line-height: 1.4;
  color: var(--ink-400);
  position: relative; z-index: 1;
}

/* Services note (under cards) */
.services__note {
  text-align: center;
  max-width: 720px;
  margin: 36px auto 0;
  color: var(--ink-500);
  font-size: .96rem;
  line-height: 1.6;
}
.services__note strong { color: var(--ink-900); font-weight: 600; }

/* =========================
   Pricing
   ========================= */
.grid--pricing {
  display: grid; gap: 22px;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
.price {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px 30px;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.price:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--indigo-100);
}
.price--popular {
  border-color: var(--indigo-200, #CBD8CC);
  box-shadow: 0 20px 40px -20px rgba(47,79,62,.25);
  transform: translateY(-6px);
}
.price--popular:hover { transform: translateY(-10px); }
.price__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--indigo-600), var(--amber-500));
  color: #fff; font-weight: 700; font-size: .78rem;
  letter-spacing: .04em; padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px -8px rgba(47,79,62,.5);
  white-space: nowrap;
}
.price__head h3 { font-size: 1.25rem; margin-bottom: 6px; }
.price__desc { color: var(--ink-500); font-size: .95rem; margin-bottom: 22px; }

.price__amount {
  display: flex; align-items: baseline; gap: 6px;
  padding-bottom: 22px; margin-bottom: 22px;
  border-bottom: 1px dashed var(--ink-100);
}
.price__from { color: var(--ink-400); font-size: .92rem; }
.price__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2.1rem; color: var(--ink-900);
  letter-spacing: -0.02em;
}
.price__period { color: var(--ink-400); font-size: .9rem; }

.price__list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; gap: 10px;
}
.price__list li {
  position: relative; padding-left: 26px;
  color: var(--ink-600); font-size: .96rem; line-height: 1.45;
}
.price__list li::before {
  content: ""; position: absolute; left: 0; top: 5px;
  width: 16px; height: 16px;
  background: var(--indigo-50);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F4F3E' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}
.price .btn { margin-top: auto; }
.price__note {
  text-align: center; margin: 36px auto 0;
  max-width: 620px;
  color: var(--ink-500); font-size: .96rem;
}
.price__note strong { color: var(--ink-900); font-weight: 600; }

/* =========================
   Software (Softvér na mieru) detail section
   ========================= */
.software-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}
.software-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.software-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--indigo-100);
}
.software-card--featured {
  border-color: var(--indigo-200, #CBD8CC);
  box-shadow: 0 20px 40px -20px rgba(47, 79, 62, .2);
}
.software-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--indigo-600), var(--amber-500));
  color: #fff; font-weight: 700; font-size: .72rem;
  letter-spacing: .04em; padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 14px -4px rgba(47, 79, 62, .5);
  white-space: nowrap;
  text-transform: uppercase;
}
.software-card__icon {
  width: 56px; height: 56px;
  background: var(--indigo-50);
  color: var(--indigo-600);
  border-radius: 16px;
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.software-card__icon--alt {
  background: #E7E4D5;
  color: var(--amber-600);
}
.software-card h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}
.software-card > p {
  color: var(--ink-500);
  margin: 0 0 18px;
  line-height: 1.55;
}
.software-card__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
  font-size: .92rem;
  color: var(--ink-600);
}
.software-card__list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.45;
}
.software-card__list li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 16px; height: 16px;
  background: var(--indigo-50);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F4F3E' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}

/* Live demo card — featured real software project */
.live-demo {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  margin-bottom: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.live-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, var(--indigo-50), transparent 40%),
              radial-gradient(circle at 100% 100%, #E7E4D5, transparent 40%);
  opacity: .5;
  pointer-events: none;
}

.live-demo__media {
  position: relative;
  z-index: 1;
}
.live-demo__browser {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: #262622;
  border-radius: 12px 12px 0 0;
  border: 1px solid #44443E;
  border-bottom: none;
}
.live-demo__url {
  margin-left: 10px;
  flex: 1;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.live-demo__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(78, 125, 98, 0.15);
  color: #6FA587;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.live-demo__preview {
  display: block;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  border: 1px solid #44443E;
  border-top: none;
  box-shadow: var(--shadow-md);
  transition: transform .3s ease;
}
.live-demo__preview:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.live-demo__preview img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.live-demo__body {
  position: relative;
  z-index: 1;
}
.live-demo__eyebrow {
  display: inline-block;
  padding: 6px 12px;
  background: var(--indigo-600);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .03em;
  margin-bottom: 14px;
  text-align: center;
}
.live-demo h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.85rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.live-demo__lead {
  font-size: 1.02rem;
  color: var(--ink-600);
  line-height: 1.6;
  margin: 0 0 22px;
}
.live-demo__lead strong {
  color: var(--ink-900);
  font-weight: 700;
}
.live-demo__features {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: grid; gap: 8px;
}
.live-demo__features li {
  position: relative;
  padding-left: 26px;
  font-size: .95rem;
  color: var(--ink-600);
  line-height: 1.5;
}
.live-demo__features li::before {
  content: "";
  position: absolute; left: 0; top: 5px;
  width: 16px; height: 16px;
  background: var(--indigo-50);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F4F3E' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}
.live-demo__features strong { color: var(--ink-900); font-weight: 600; }

.live-demo__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
  background: var(--ink-50);
  border-radius: var(--r-md);
  margin-bottom: 24px;
}
.live-demo__stat {
  display: flex; flex-direction: column;
  text-align: center;
}
.live-demo__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--indigo-600), var(--amber-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}
.live-demo__lbl {
  margin-top: 4px;
  font-size: .76rem;
  color: var(--ink-500);
  line-height: 1.3;
}

.live-demo__cta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
}

/* Demo credentials box */
.demo-creds {
  flex: 1;
  min-width: 240px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .8);
  border: 1px dashed var(--ink-200);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}
.demo-creds__label {
  display: flex; align-items: center; gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--indigo-700);
  margin-bottom: 8px;
}
.demo-creds__rows {
  display: grid; gap: 5px;
}
.demo-creds__row {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem;
}
.demo-creds__key {
  color: var(--ink-500);
  min-width: 46px;
  font-weight: 500;
}
.demo-creds__val {
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
  background: #fff;
  padding: 3px 9px;
  border-radius: 6px;
  border: 1px solid var(--ink-200);
  color: var(--ink-900);
  font-weight: 600;
  font-size: .85rem;
  user-select: all;
  cursor: text;
}

/* ─── BarBack — flagship case study ──────────────────────── */
.barback {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 48px;
}

.barback-modules {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
}
.barback-modules__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.barback-modules__sub {
  color: var(--ink-500);
  margin: 0 0 28px;
  font-size: .98rem;
}
.barback-modules__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.barback-module {
  background: var(--ink-50);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  padding: 20px 18px;
  transition: background .2s, border-color .2s, transform .2s;
}
.barback-module:hover {
  background: #fff;
  border-color: var(--indigo-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.barback-module__icon {
  display: inline-block;
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 10px;
}
.barback-module h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.barback-module p {
  margin: 0;
  font-size: .88rem;
  color: var(--ink-500);
  line-height: 1.5;
}

/* Quality / "dospelý produkt" */
.barback-quality {
  background: linear-gradient(135deg, #F2EFE6 0%, #FFFFFF 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
}
.barback-quality__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.barback-quality__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
}
.barback-quality__list > li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.barback-quality__ico {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--indigo-50);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.2rem;
}
.barback-quality__list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--ink-900);
}
.barback-quality__list p {
  margin: 0;
  font-size: .9rem;
  color: var(--ink-500);
  line-height: 1.5;
}

/* Tech stack — BarBack variant (slight adjustment) */
.tech-stack--barback {
  margin-bottom: 0;
}

/* Proof point — most na služby */
.barback-proof {
  text-align: center;
  padding: 28px 20px;
  border-top: 1px dashed var(--ink-200);
  border-bottom: 1px dashed var(--ink-200);
  margin: 8px 0 0;
}
.barback-proof p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink-700);
  font-weight: 500;
  margin: 0;
  max-width: 760px;
  margin-inline: auto;
}
.barback-proof em {
  font-style: italic;
}
.barback-proof strong {
  color: var(--indigo-700);
  font-weight: 700;
  font-style: normal;
}

/* Tech stack — dark strip */
.tech-stack {
  background: var(--ink-900);
  border-radius: var(--r-lg);
  padding: 30px 36px;
  color: #fff;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.tech-stack::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  top: -100px; right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 79, 62, .3), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.tech-stack__label {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 18px;
  font-weight: 700;
  position: relative;
}
.tech-stack__pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  position: relative;
}
.tech-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .9);
  font-weight: 500;
}
.tech-pill strong {
  color: var(--amber-400);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-right: 2px;
}

/* Pricing ranges */
.software-pricing {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 36px;
  max-width: 820px;
  margin: 0 auto 40px;
}
.software-pricing > h3 {
  text-align: center;
  margin-bottom: 22px;
  font-size: 1.3rem;
}
.pricing-ranges {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: grid; gap: 10px;
}
.pricing-ranges li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  background: var(--ink-50);
  border-radius: var(--r-md);
  transition: background .2s, transform .15s;
}
.pricing-ranges li:hover {
  background: var(--indigo-50);
  transform: translateX(4px);
}
.pricing-ranges strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-900);
  font-size: 1.02rem;
  margin-bottom: 2px;
}
.pricing-ranges p {
  margin: 0;
  font-size: .88rem;
  color: var(--ink-500);
}
.pricing-ranges__price {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--indigo-700);
  font-size: 1.05rem;
  white-space: nowrap;
}
.software-note {
  text-align: center;
  font-size: .92rem;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.55;
}
.software-note strong { color: var(--ink-900); font-weight: 600; }

/* =========================
   Difference (proactivity + reliable support)
   ========================= */
.diff-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, 1fr);
}
.diff-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 66px 32px 36px;   /* extra top so the corner status badge never overlaps the title */
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--indigo-100);
}
.diff-card__head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}
.diff-card__icon {
  width: 64px; height: 64px;
  flex-shrink: 0;
  border-radius: 18px;
  background: var(--indigo-50);
  color: var(--indigo-600);
  display: grid;
  place-items: center;
  transition: background .25s, color .25s, transform .25s;
}
.diff-card__icon--alt {
  background: #E7E4D5;
  color: var(--amber-600);
}
.diff-card:hover .diff-card__icon {
  transform: rotate(-4deg) scale(1.05);
}
.diff-card__title h3 {
  font-size: 1.35rem;
  margin: 0 0 4px;
}
.diff-card__sub {
  font-size: .95rem;
  color: var(--ink-500);
  margin: 0;
}
.diff-card > p {
  font-size: 1.02rem;
  color: var(--ink-600);
  line-height: 1.6;
  margin: 0;
}

/* Live status badge */
.status-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  background: rgba(78, 125, 98, 0.1);
  color: #2F5C45;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.status-dot {
  position: relative;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #4E7D62;
}
.status-dot::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: #4E7D62;
  opacity: 0.5;
  animation: pulse-dot 2s ease-out infinite;
}
@keyframes pulse-dot {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* Bottom promise quote */
.diff-promise {
  margin: 48px auto 0;
  max-width: 760px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--ink-700);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.diff-promise em {
  font-style: italic;
  color: var(--ink-900);
  font-weight: 700;
}

/* Founder credibility note (with two founder cards) */
.founder-note {
  margin: 56px auto 0;
  position: relative;
}
.founder-note__intro {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-700);
  text-align: center;
  margin-bottom: 32px;
}
.founder-note__intro em {
  font-style: italic;
  color: var(--indigo-700);
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.founder-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 32px 28px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.founder-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.founder-card::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .5;
}
.founder-card--he::before {
  background: radial-gradient(circle at 100% 0%, var(--indigo-50), transparent 55%);
}
.founder-card--she::before {
  background: radial-gradient(circle at 100% 0%, #E3E7DF, transparent 55%);
}
.founder-card--he:hover  { border-color: var(--indigo-100); }
.founder-card--she:hover { border-color: #C8D2C2; }

.founder-card__role-chip {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--indigo-50);
  color: var(--indigo-700);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.founder-card__role-chip--alt {
  background: #E3E7DF;
  color: #5E6B57;
}

.founder-card__head {
  position: relative;
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 22px;
}
.founder-card__avatar {
  width: 80px; height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 24px -8px rgba(47, 79, 62, .35);
  border: 3px solid #fff;
  outline: 3px solid #3C5A47;   /* Ondrej — zelená podľa loga */
}
.founder-card--she .founder-card__avatar {
  box-shadow: 0 10px 24px -8px rgba(110, 122, 104, .35);
  outline-color: #CFC4AB;       /* Dominika — krémová podľa loga */
}
.founder-card__avatar svg,
.founder-card__avatar img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-card__meta h3 {
  font-size: 1.25rem;
  margin: 0 0 4px;
}
.founder-card__role {
  font-size: .9rem;
  color: var(--ink-500);
  font-weight: 500;
}

.founder-card__body { position: relative; }
.founder-card__body p {
  font-size: .98rem;
  color: var(--ink-600);
  line-height: 1.6;
  margin: 0 0 12px;
}
.founder-card__body p:last-of-type {
  margin-bottom: 20px;
}
.founder-card__body p strong {
  color: var(--ink-900);
  font-weight: 600;
}

.founder-creds {
  list-style: none; padding: 0;
  margin: auto 0 18px;  /* margin-top:auto pushes creds + prev strip to the bottom */
  display: flex; flex-wrap: wrap; gap: 8px;
  position: relative;
}
.founder-creds li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: var(--indigo-50);
  color: var(--indigo-700);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
}
.founder-card--he .founder-creds li:nth-child(2) {
  background: #E7E4D5;
  color: #5A6152;
}
.founder-card--she .founder-creds li {
  background: #E3E7DF;
  color: #5E6B57;
}
.founder-card--she .founder-creds li:nth-child(2) {
  background: #E7E4D5;
  color: #5A6152;
}

/* Discreet "previously at" strip */
.founder-prev {
  position: relative;
  padding-top: 16px;
  border-top: 1px dashed var(--ink-100);
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-size: .85rem;
}
.founder-prev__label {
  color: var(--ink-400);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .75rem;
  margin-right: 4px;
}
.founder-prev__company {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-700);
  letter-spacing: -0.01em;
}
.founder-prev__dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ink-200);
}

/* =========================
   FAQ
   ========================= */
.container--narrow { max-width: 820px; }
.faq {
  display: grid; gap: 12px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq__item:hover { border-color: var(--indigo-100); }
.faq__item[open] {
  border-color: var(--indigo-200, #CBD8CC);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink-900);
  position: relative;
  transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 22px; top: 50%;
  width: 14px; height: 14px;
  transform: translateY(-50%) rotate(0deg);
  transition: transform .25s ease;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F4F3E' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>") center / contain no-repeat;
}
.faq__item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq__item summary:hover { color: var(--indigo-700); }
.faq__item summary:focus-visible { outline: 3px solid var(--indigo-100); outline-offset: -3px; }
.faq__body {
  padding: 0 22px 22px;
}
.faq__body p {
  margin: 0; color: var(--ink-500); line-height: 1.65;
}
.faq__body p strong { color: var(--ink-900); font-weight: 600; }

/* =========================
   Sticky CTA (mobile only)
   ========================= */
.sticky-cta {
  display: none; /* enabled in mobile breakpoint */
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 40;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px -8px rgba(30,30,28,.12);
  transform: translateY(100%);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-cta .btn { width: 100%; }

/* =========================
   Projects / portfolio
   ========================= */
.grid--projects {
  display: grid; gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}
.project {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.project:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--indigo-100);
}
.project__media {
  display: block;
  background: var(--ink-50);
  border-bottom: 1px solid var(--border);
}
.project__browser {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.project__url {
  margin-left: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .82rem; color: var(--ink-500);
}
.project__preview {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: var(--ink-50);
}
.project__preview img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .5s ease;
}
.project:hover .project__preview img {
  transform: scale(1.04);
}

.project__body { padding: 24px 26px 26px; }
.project__tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px;
}
.tag {
  font-size: .78rem; font-weight: 600;
  padding: 5px 10px; border-radius: 999px;
  background: var(--indigo-50); color: var(--indigo-700);
}
.tag--alt { background: #E7E4D5; color: #5A6152; }
.project h3 { margin-bottom: 8px; }
.project__body p { color: var(--ink-500); margin-bottom: 16px; }
.project__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--indigo-600);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, gap .2s;
}
.project__link:hover { border-bottom-color: var(--indigo-600); gap: 10px; }

/* Socials */
.socials {
  margin-top: 48px;
  text-align: center;
}
.socials__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 16px;
}
.socials__list {
  display: inline-flex; flex-wrap: wrap; justify-content: center;
  gap: 12px;
}
.social {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px 10px 12px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.social:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--indigo-200, #CBD8CC);
}
.social__ico {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2F4F3E, #3E6650 50%, #243D30 100%);
  color: #fff;
}
.social__text { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.social__handle { font-weight: 700; color: var(--ink-900); font-size: .96rem; }
.social__note   { font-size: .8rem; color: var(--ink-400); }

/* =========================
   Stats (dark section)
   ========================= */
.stats {
  display: grid; gap: 16px;
}
.stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  transition: background .25s, border-color .25s, transform .25s;
}
.stat:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); transform: translateX(4px); }
.stat__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  background: linear-gradient(90deg, #fff, var(--amber-400));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label { color: #ADACA0; font-size: 1rem; text-align: right; max-width: 160px; }

/* =========================
   Timeline
   ========================= */
.timeline {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}
.timeline__item {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.timeline__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--indigo-100);
}
.timeline__num {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--indigo-600), var(--amber-500));
  color: #fff; font-weight: 800; font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 16px -8px rgba(47,79,62,.5);
}
.timeline__item h3 { margin-bottom: 6px; }
.timeline__item p  { margin: 0; }

/* =========================
   Promises
   ========================= */
.promises {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.promise {
  background: #fff;
  border: 1px solid rgba(30,30,28,.05);
  border-radius: var(--r-lg);
  padding: 24px 20px; text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.promise:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.promise__ico {
  width: 52px; height: 52px;
  display: inline-grid; place-items: center;
  border-radius: 15px;
  background: #fff;                    /* white chip on the pastel card */
  box-shadow: 0 4px 12px -4px rgba(30,30,28,.12);
  font-size: 1.55rem; line-height: 1;
  margin-bottom: 14px;
  transition: transform .25s;
}
.promise:hover .promise__ico { transform: rotate(-4deg) scale(1.06); }

/* Earthy pastel card backgrounds — Čo môžete čakať */
.promises .promise:nth-child(1) { background: #DCE6DE; } /* soft sage */
.promises .promise:nth-child(2) { background: #ECDCCB; } /* warm clay */
.promises .promise:nth-child(3) { background: #D7E1DC; } /* dusty teal */
.promises .promise:nth-child(4) { background: #ECE7CD; } /* pale sand */
.promises .promise:nth-child(5) { background: #E9DCE0; } /* dusty mauve */
.promise h3 { font-size: 1.05rem; margin-bottom: 6px; }
.promise p  { font-size: .94rem; margin: 0; }

/* =========================
   Contact + form
   ========================= */
.contact-urgency {
  position: relative;
  margin-top: 18px;
  padding: 14px 16px 14px 36px;
  background: rgba(157, 169, 156, .1);
  border: 1px solid rgba(157, 169, 156, .25);
  border-radius: var(--r-md);
  font-size: .95rem;
  color: var(--ink-600);
  line-height: 1.55;
}
.contact-urgency strong { color: var(--ink-900); font-weight: 600; }
.contact-urgency__dot {
  position: absolute;
  left: 16px;
  top: 21px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #4E7D62;
}
.contact-urgency__dot::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 50%;
  background: #4E7D62;
  opacity: .5;
  animation: pulse-dot 2s ease-out infinite;
}

.contact-list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 14px;
}
.contact-list li {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink-600); font-size: 1.02rem;
}
.contact-list a { color: var(--ink-900); border-bottom: 1px solid var(--ink-200); }
.contact-list a:hover { color: var(--indigo-700); border-bottom-color: var(--indigo-600); }
.contact-list svg { color: var(--indigo-600); flex-shrink: 0; }

.form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-md);
  display: grid; gap: 16px;
}
.field { display: grid; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-weight: 600; font-size: .92rem; color: var(--ink-700); }
.field input, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  background: #fff;
  font-family: inherit; font-size: 1rem; color: var(--ink-900);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--indigo-500);
  box-shadow: 0 0 0 4px var(--indigo-50);
}
.field textarea { resize: vertical; min-height: 120px; }
.checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .92rem; color: var(--ink-500); cursor: pointer;
}
.checkbox input { margin-top: 4px; accent-color: var(--indigo-600); }

/* Service-selector pill checkboxes */
.field--services {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid; gap: 10px;
}
.field--services legend {
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink-700);
  padding: 0;
  margin-bottom: 2px;
}
.field__hint {
  color: var(--ink-400);
  font-weight: 500;
  font-size: .85rem;
  margin-left: 4px;
}
.checkboxes {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.check-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 14px 9px 11px;
  border: 1.5px solid var(--ink-200);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  user-select: none;
  font-size: .92rem; font-weight: 500;
  color: var(--ink-700);
  transition: background .2s, border-color .2s, color .2s, transform .15s;
}
.check-pill:hover { border-color: var(--indigo-300, #C2CABF); transform: translateY(-1px); }
.check-pill input {
  position: absolute; opacity: 0; pointer-events: none;
  width: 0; height: 0;
}
.check-pill__mark {
  width: 18px; height: 18px;
  border: 1.5px solid var(--ink-300);
  border-radius: 5px;
  background: #fff;
  position: relative;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.check-pill__mark::after {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 7'/></svg>") center / 70% no-repeat;
  opacity: 0;
  transition: opacity .2s;
}
.check-pill:has(input:checked) {
  background: var(--indigo-50);
  border-color: var(--indigo-500);
  color: var(--indigo-700);
}
.check-pill:has(input:checked) .check-pill__mark {
  background: var(--indigo-600);
  border-color: var(--indigo-600);
}
.check-pill:has(input:checked) .check-pill__mark::after { opacity: 1; }
.check-pill:has(input:focus-visible) {
  outline: 3px solid var(--indigo-100);
  outline-offset: 2px;
}

.form__hint { margin: 4px 0 0; font-size: .92rem; min-height: 1.4em; color: var(--ink-500); }
.form__hint.is-ok    { color: #2F5C45; }
.form__hint.is-error { color: #B91C1C; }

/* Submit button — loading + disabled states */
.btn:disabled {
  opacity: .75;
  cursor: not-allowed;
  transform: none !important;
  pointer-events: none;
}
.btn-spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  margin-right: 4px;
  animation: spin .7s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================
   Footer
   ========================= */
.footer {
  background: var(--ink-900);
  color: #CFC9BC;
  padding-top: 56px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr;
  gap: clamp(24px, 4vw, 60px);
  padding-bottom: 40px;
}
.brand--footer { color: #fff; }
.brand--footer .brand__name { color: #fff; }
.footer__claim { color: #ADACA0; margin-top: 12px; max-width: 36ch; }
.footer__cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.footer__cols h4 {
  color: #fff; font-size: .92rem; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 12px;
}
.footer__cols a {
  display: block; color: #ADACA0;
  padding: 4px 0; transition: color .2s;
}
.footer__cols a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; font-size: .88rem; color: #84847A;
}

/* =========================
   Motion
   ========================= */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1024px) {
  .grid--cards > .service { flex-basis: calc(50% - 11px); max-width: calc(50% - 11px); }
  .grid--pricing  { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price--popular { transform: none; }
  .price--popular:hover { transform: translateY(-4px); }
  .software-grid  { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto 48px; }
  .live-demo      { grid-template-columns: 1fr; gap: 28px; padding: 24px; }
  .live-demo h3   { font-size: 1.5rem; }
  .live-demo__stats { padding: 14px; }
  .live-demo__num { font-size: 1.35rem; }
  /* Allow single-column grid items to shrink below content's intrinsic width
     (default min-width:auto otherwise lets the image force the column ~425px). */
  .live-demo__media,
  .live-demo__body { min-width: 0; }
  .live-demo__media,
  .live-demo__browser,
  .live-demo__preview,
  .live-demo__preview img { max-width: 100%; }
  .live-demo__url { flex: 1 1 0; min-width: 0; }

  /* BarBack — tablet */
  .barback-modules__grid { grid-template-columns: repeat(2, 1fr); }
  .barback-quality__list { grid-template-columns: 1fr; }
  .barback-modules,
  .barback-quality { padding: 26px 22px; }

  /* Problem / audience / honest — tablet */
  .problem-grid   { grid-template-columns: repeat(2, 1fr); }
  .audience-grid  { grid-template-columns: repeat(2, 1fr); }
  .honest__cards  { grid-template-columns: 1fr; }
  .timeline       { grid-template-columns: repeat(2, 1fr); }
  .promises       { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .nav__menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch;
    padding: 16px 24px 22px; gap: 4px;
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
    box-shadow: var(--shadow-md);
  }
  .nav__menu a { padding: 12px 0; border-bottom: 1px solid var(--ink-50); }
  .nav__menu a:last-child { border-bottom: 0; margin-top: 8px; text-align: center; }
  .nav.is-open .nav__menu {
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
  .nav__toggle { display: flex; }

  /* Hero: text first, visual after — and smaller mock */
  .hero { padding: 40px 0 80px; }
  .hero__inner {
    grid-template-columns: minmax(0, 1fr); /* prevents content overflow */
    gap: 40px;
  }
  .hero__content {
    order: 0;
    text-align: center;
  }
  .hero__title,
  .hero__content .eyebrow { /* already inline-block, but ensure spacing */ }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__visual {
    order: 1;
    max-width: 380px;
    margin: 8px auto 0;
    width: 100%;
  }
  .card { padding: 14px; border-radius: var(--r-md); }
  .badge { padding: 8px 12px; }
  .badge strong { font-size: 1rem; }
  .badge span   { font-size: .78rem; }
  .badge--top    { top: -12px;    left: 6px; }
  .badge--bottom { bottom: -12px; right: 6px; }

  .two-col, .two-col--wide { grid-template-columns: 1fr; }

  .grid--cards > .service { flex-basis: 100%; max-width: 100%; }
  .grid--projects { grid-template-columns: 1fr; }
  .diff-grid      { grid-template-columns: 1fr; }
  .timeline       { grid-template-columns: 1fr; }
  .promises       { grid-template-columns: repeat(2, 1fr); }
  .status-badge   { top: 18px; right: 18px; font-size: .76rem; }
  .diff-promise   { font-size: 1.15rem; }
  .founders-grid  { grid-template-columns: 1fr; }
  .founder-card   { padding: 26px 22px 22px; }
  .tech-stack     { padding: 24px; }
  .tech-pill      { font-size: .82rem; padding: 7px 12px; }
  .software-pricing { padding: 24px 22px; }
  .pricing-ranges li { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Mobile: hide decorative role chip (info already in subtitle) */
  .founder-card__role-chip { display: none; }

  /* Mobile: smaller avatar so name doesn't wrap awkwardly */
  .founder-card__avatar { width: 64px; height: 64px; }

  /* Mobile: badge sits in normal flow, so no extra top padding needed */
  .diff-card { display: flex; flex-direction: column; padding-top: 28px; }
  .status-badge {
    position: static;
    align-self: flex-start;
    order: 0;
    margin-bottom: 14px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .footer__claim { margin-left: auto; margin-right: auto; }
  .brand--footer.brand { justify-content: center; }
  .footer__cols {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    justify-items: center;
  }
  .footer__bottom { text-align: center; }

  /* Sticky CTA only on smaller screens */
  .sticky-cta { display: block; }

  /* Extra bottom padding so sticky CTA doesn't cover footer content */
  main { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  /* Tighter spacing on small phones */
  .container { padding: 0 18px; }

  /* Hero text shrinks gracefully */
  h1 { font-size: clamp(1.85rem, 7.5vw, 2.4rem); line-height: 1.18; }
  .hero { padding: 28px 0 72px; }
  .hero__lead { font-size: 1.02rem; }
  .hero__cta { gap: 10px; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__trust { gap: 8px 14px; font-size: .88rem; }

  /* Mock card scales down */
  .hero__visual { max-width: 320px; }
  .mock-headline { font-size: .95rem; }
  .mock-sub      { font-size: .76rem; }
  .mock-chart, .mock-stat { height: 72px; }
  .mock-stat__num { font-size: 1.25rem; }
  .mock-stat__label { font-size: .7rem; }
  .pill { font-size: .76rem; padding: 5px 10px; }

  /* Badges stay readable and inside the card area */
  .badge { padding: 7px 10px; }
  .badge strong { font-size: .92rem; }
  .badge span   { font-size: .72rem; }
  .badge--top    { top: -10px;    left: 0; }
  .badge--bottom { bottom: -10px; right: 0; }

  /* BarBack — mobile */
  .barback-modules__grid { grid-template-columns: 1fr; }
  .barback-proof p { font-size: 1rem; }

  /* live-demo stats stack so longer labels (e.g. "Multi-tenant") don't clip */
  .live-demo__stats { grid-template-columns: 1fr; gap: 10px; }

  /* Problem / audience — mobile */
  .problem-grid   { grid-template-columns: 1fr; }
  .audience-grid  { grid-template-columns: 1fr; }
  .problem-bridge p { font-size: 1.1rem; }
  .honest__lead   { font-size: 1.05rem; }
  .honest__offer  { padding: 16px 20px; }

  /* Section spacing tighter */
  :root { --section-y: 64px; }
  h2 { font-size: clamp(1.55rem, 6vw, 2rem); }

  .field-row { grid-template-columns: 1fr; }
  .promises  { grid-template-columns: 1fr; }
  .stat { flex-direction: column; align-items: flex-start; gap: 4px; }
  .stat__label { text-align: left; }
}
