/* =========================================================
   CzechPPC.com — Main stylesheet
   Visual identity: dark, high-contrast, minimal
   ========================================================= */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --bg-primary:       #050505;
  --bg-surface:       #111111;
  --bg-surface-2:     #161616;
  --bg-surface-3:     #1a1a1a;
  --accent:           #E1AD01;
  --accent-hover:     #C69801;
  --accent-dim:       rgba(225, 173, 1, 0.12);
  --accent-border:    rgba(225, 173, 1, 0.35);
  --text-primary:     #FFFFFF;
  --text-secondary:   #D1D1D1;
  --text-muted:       #888888;
  --border:           rgba(255, 255, 255, 0.06);
  --border-hover:     rgba(255, 255, 255, 0.14);
  --color-danger:     #ff6b6b;
  --color-success:    #51cf66;
  --radius-sm:        0.75rem;
  --radius-md:        1.25rem;
  --radius-lg:        1.5rem;
  --radius-xl:        2rem;
  --shadow:           0 4px 32px rgba(0, 0, 0, 0.5);
  --shadow-accent:    0 8px 40px rgba(225, 173, 1, 0.18);
  --transition:       0.3s ease;
  --font-display:     'Outfit', sans-serif;
  --font-body:        'Inter', sans-serif;
  --font-mono:        'Courier New', Courier, monospace;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.025em;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

p {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.85;
  color: var(--text-secondary);
}

strong { color: var(--text-primary); font-weight: 600; }
em { font-style: italic; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section--sm {
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-header p {
  max-width: 580px;
  margin-top: 0.85rem;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  padding-block: 1.5rem;
  transition: padding var(--transition), background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.nav-scrolled {
  padding-block: 0.9rem;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  flex-shrink: 0;
  line-height: 1;
}

.nav__logo span { color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.45rem 0.85rem;
  border-radius: 2rem;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav__cta {
  font-size: 0.855rem;
  font-weight: 700;
  color: #000;
  background: var(--accent);
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}

.nav__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile fullscreen overlay nav */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.nav__mobile.open { display: flex; }

.nav__mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}

.nav__mobile-close:hover { color: var(--text-primary); }

.nav__mobile a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--transition);
}

.nav__mobile a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 8rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -15%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(225, 173, 1, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -10%;
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, rgba(225, 173, 1, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(225, 173, 1, 0.08);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 2rem;
  margin-bottom: 2.5rem;
  width: fit-content;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.hero__title {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Pipe separators in hero H1 */
.hero__pipe {
  color: var(--accent);
  font-weight: 300;
  opacity: 0.7;
  margin-inline: 0.15em;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 4.5rem;
  position: relative;
  z-index: 1;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.hero__stat {}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero__stat-value sup {
  font-size: 0.55em;
  color: var(--accent);
  vertical-align: super;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #000;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding-inline: 0;
  font-size: 0.875rem;
}

.btn-ghost:hover { gap: 0.85rem; }

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-accent);
}

.card--accent {
  background: linear-gradient(145deg, #111111, #1a1810);
  border-color: rgba(225, 173, 1, 0.18);
}

.card--flat { transition: none; }
.card--flat:hover { transform: none; box-shadow: none; }

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.card__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.2rem 0.55rem;
  border-radius: 0.35rem;
  margin-bottom: 0.75rem;
}

.card h3 { margin-bottom: 0.6rem; }
.card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ===== BENTO GRID ===== */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.bento .card--wide  { grid-column: span 2; }
.bento .card--tall  { grid-row: span 2; }

@media (max-width: 960px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .card--wide { grid-column: span 2; }
}

@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento .card--wide { grid-column: span 1; }
}

/* ===== COMPARISON TABLE ===== */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.comparison-table thead th {
  background: var(--bg-surface-2);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  text-align: left;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.comparison-table thead th:first-child { border-radius: var(--radius-md) 0 0 0; }
.comparison-table thead th:last-child  { border-radius: 0 var(--radius-md) 0 0; }

.comparison-table tbody td {
  padding: 0.9rem 1.25rem;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.6;
}

.comparison-table tbody tr:last-child td { border-bottom: none; }

.comparison-table tbody tr:nth-child(odd) td  { background: var(--bg-surface); }
.comparison-table tbody tr:nth-child(even) td { background: rgba(255, 255, 255, 0.015); }

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.td-bad  { color: var(--color-danger); }
.td-good { color: var(--color-success); }
.td-accent { color: var(--accent); font-weight: 600; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, rgba(225, 173, 1, 0.08), rgba(225, 173, 1, 0.03));
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

/* ===== WARNING BOX ===== */
.warning-box {
  background: rgba(255, 107, 107, 0.05);
  border: 1px solid rgba(255, 107, 107, 0.25);
  border-left: 3px solid var(--color-danger);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.warning-box h4 { color: var(--color-danger); margin-bottom: 0.5rem; font-size: 0.78rem; }
.warning-box p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ===== CHECKLIST ===== */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.checklist__item::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 0.22rem;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.checklist__item--bad::before {
  content: '✗';
  color: var(--color-danger);
}

/* ===== STEPS ===== */
.steps { display: flex; flex-direction: column; gap: 0; position: relative; }

.steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 48px;
  bottom: 48px;
  width: 1px;
  background: var(--border);
}

.step { display: flex; gap: 1.5rem; padding-block: 1.75rem; position: relative; }

.step__num {
  width: 40px;
  height: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step__body h3 { margin-bottom: 0.4rem; }
.step__body p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ===== CASE STUDY ===== */
.case-study {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.case-study__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-bottom: 1.25rem;
}

.case-study__metric {}

.case-study__metric-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.case-study__metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.2rem;
}

.case-study__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.case-study__tag {
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  padding: 0.2rem 0.6rem;
  border-radius: 0.4rem;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* ===== CONTACT FORM ===== */
.form { display: flex; flex-direction: column; gap: 1rem; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .form__row { grid-template-columns: 1fr; }
}

.form__group { display: flex; flex-direction: column; gap: 0.4rem; }

.form__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form__input,
.form__select,
.form__textarea {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(225, 173, 1, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder { color: var(--text-muted); }

.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__select option { background: var(--bg-surface-3); color: var(--text-primary); }

.form__textarea { resize: vertical; min-height: 130px; }

.form__notice {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form__success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  background: rgba(81, 207, 102, 0.08);
  border: 1px solid rgba(81, 207, 102, 0.3);
  border-radius: var(--radius-sm);
  color: var(--color-success);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
}

.form__success.show { display: flex; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(145deg, var(--bg-surface), #1a1810);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p  { max-width: 500px; margin-inline: auto; margin-bottom: 2.5rem; }

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ===== TWO-COL ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ===== GRID HELPERS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 700px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.25;
}

/* ===== SUBPAGE HERO ===== */
.page-hero {
  padding-top: clamp(7rem, 14vw, 10rem);
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.25;
}

.page-hero .hero__badge { margin-bottom: 1.5rem; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumb a:hover { color: var(--text-primary); }
.breadcrumb__sep { opacity: 0.4; }
.breadcrumb__current { color: var(--accent); }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.footer__brand-name span { color: var(--accent); }

.footer__brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer__contact-item {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.footer__contact-item a:hover { color: var(--accent); }

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.footer__links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__links a { font-size: 0.875rem; color: var(--text-muted); transition: color var(--transition); }
.footer__links a:hover { color: var(--text-primary); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer__copy,
.footer__legal { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

.footer__legal { text-align: right; }

@media (max-width: 560px) {
  .footer__legal { text-align: left; }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.4s; }
.reveal-d6 { transition-delay: 0.48s; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--bg-surface-3); border-radius: 3px; }

/* ===== UTILITY ===== */
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-muted); }
.text-danger  { color: var(--color-danger); }
.text-success { color: var(--color-success); }
.text-center  { text-align: center; }
.d-flex       { display: flex; }
.flex-wrap    { flex-wrap: wrap; }
.align-center { align-items: center; }
.gap-sm       { gap: 0.5rem; }
.gap-md       { gap: 1rem; }
.mono         { font-family: var(--font-mono); font-size: 0.85em; }
.mt-xs        { margin-top: 0.5rem; }
.mt-sm        { margin-top: 1rem; }
.mt-md        { margin-top: 1.75rem; }
.mt-lg        { margin-top: 2.5rem; }
.mb-xs        { margin-bottom: 0.5rem; }
.mb-sm        { margin-bottom: 1rem; }
.mb-md        { margin-bottom: 1.75rem; }

/* ===== CZECH MARKET SECTION (homepage) ===== */
.market-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 2.5rem;
}

.market-stat {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.market-stat:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
}

.market-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(225,173,1,.06) 0%, transparent 65%);
  pointer-events: none;
}

.market-stat__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.market-stat__unit {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .03em;
}

.market-stat__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

.market-stat__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.market-callout {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--accent-border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-xl);
  padding: 2rem 2.25rem 2rem 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.market-callout__icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: .15rem;
}

.market-callout p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .market-stats { grid-template-columns: 1fr; }
  .market-callout { flex-direction: column; gap: .75rem; padding: 1.5rem; }
}

/* ===== SERVICES GRID (homepage) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}

.service-card__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(225, 173, 1, 0.08);
  line-height: 1;
  margin-bottom: -0.5rem;
  letter-spacing: -0.05em;
  user-select: none;
}

.service-card__title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-card p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  flex: 1;
}

.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.service-card__list li::before {
  content: '→';
  color: var(--accent);
  font-size: 0.8rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.service-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

/* ===== SHOPTET FOCUS SECTION ===== */
.shoptet-focus { background: rgba(225, 173, 1, 0.02); }

.shoptet-metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shoptet-metric {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.shoptet-metric__value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.shoptet-metric__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 0.3rem;
}

.shoptet-metric__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  line-height: 1.5;
}

/* ===== AUTHORITY STRIP ===== */
.authority-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.authority-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.authority-text { flex: 1; min-width: 260px; }
.authority-text p { font-size: 0.9rem; max-width: 600px; }

.authority-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.authority-link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  border-radius: 2rem;
  transition: color var(--transition), border-color var(--transition);
  letter-spacing: 0.05em;
}

.authority-link:hover {
  color: var(--accent);
  border-color: var(--accent-border);
}

/* ===== SERVICES PAGE ===== */
.service-section {
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
  border-bottom: 1px solid var(--border);
}

.service-section:last-child { border-bottom: none; }

.service-section__header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.service-section__num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 800;
  color: rgba(225, 173, 1, 0.12);
  line-height: 0.85;
  letter-spacing: -0.05em;
  flex-shrink: 0;
}

.service-section__icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-info { position: sticky; top: 7rem; }

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:first-child { padding-top: 0; }
.contact-item:last-child { border-bottom: none; }

.contact-item__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.contact-item__value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-item__value a:hover { color: var(--accent); }

/* ===== LANGUAGE SWITCHER ===== */
.nav__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav__lang-switch {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  white-space: nowrap;
  line-height: 1.6;
}

.nav__lang-switch:hover {
  color: var(--text-primary);
  border-color: var(--accent-border);
  background: var(--accent-dim);
}

/* Mobile nav lang link */
.nav__mobile-lang {
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: var(--text-muted) !important;
  margin-top: 0.5rem;
}
.nav__mobile-lang:hover { color: var(--accent) !important; }

/* On mobile keep lang switch visible but hide CTA */
@media (max-width: 900px) {
  .nav__right .nav__cta { display: none; }
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--bg-surface);
}

.comparison-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.comparison-table th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }

.comparison-table td:first-child {
  color: var(--text-secondary);
  font-weight: 500;
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* ===== PRINT ===== */
@media print {
  .nav, .hero__badge, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}
