/* =============================================================================
   Studiografix Portal – Hlavní stylesheet
   Styl: čistý, technologický, Tesla-inspirovaný
   ============================================================================= */

/* ── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Inter+Tight:wght@600;700&display=swap');

/* ── Proměnné ─────────────────────────────────────────────────────────────── */
:root {
  --blue:        #1a6fc4;
  --blue-dark:   #1255a0;
  --blue-light:  #e8f1fb;
  --ink:         #0d0d0d;
  --ink-soft:    #3a3a3a;
  --muted:       #6e7a8a;
  --border:      #e4e8ed;
  --bg:          #ffffff;
  --bg-soft:     #f7f9fc;
  --bg-dark:     #0d1117;
  --white:       #ffffff;
  --success:     #16a34a;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.12);
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-tight:  'Inter Tight', sans-serif;
  --transition:  0.2s ease;
  --max-width:   1200px;
  --header-h:    70px;
}

/* ── Reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.layout-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.layout-content { flex: 1; }

/* ── HEADER ───────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-logo .logo-mark {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-tight);
  flex-shrink: 0;
}

.site-logo .logo-text {
  font-family: var(--font-tight);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.site-logo .logo-text span {
  color: var(--blue);
}

/* Hlavní navigace */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--blue);
  background: var(--blue-light);
}

/* Header akce – přihlášení */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-login {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.btn-login:hover {
  color: var(--blue);
  background: var(--blue-light);
}

.btn-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}

.btn-cta:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26,111,196,0.3);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.region-hero {
  padding-top: var(--header-h);
}

.hero-section {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-soft) 60%, var(--blue-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,111,196,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,111,196,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-tight);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--blue);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
}

.btn-hero-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,111,196,0.35);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all var(--transition);
  background: var(--white);
}

.btn-hero-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

/* ── MAIN CONTENT ─────────────────────────────────────────────────────────── */
.layout-container {
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 80px;
}

/* Pokud je hero, přepíšeme padding */
.has-hero .layout-container {
  padding-top: 0;
}

/* ── SEKCE ────────────────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-bg { background: var(--bg-soft); }
.section-dark { background: var(--bg-dark); color: var(--white); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-tight);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-dark .section-title { color: var(--white); }

.section-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── KARTY ────────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.card:hover {
  border-color: rgba(26,111,196,0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.card-title {
  font-family: var(--font-tight);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.card-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── TLAČÍTKA ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  line-height: 1;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26,111,196,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-block { width: 100%; }

/* ── FORMULÁŘE ────────────────────────────────────────────────────────────── */
.form-item { margin-bottom: 20px; }

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
textarea,
select {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,111,196,0.12);
}

input[type="submit"],
button[type="submit"] {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 11px 24px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

input[type="submit"]:hover,
button[type="submit"]:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

/* ── COMMERCE ─────────────────────────────────────────────────────────────── */

/* Produkt stránka */
.commerce-product {
  padding: 60px 0;
}

.product-title {
  font-family: var(--font-tight);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.field--name-body {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 32px;
}

.field--name-price {
  font-family: var(--font-tight);
  font-size: 42px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.commerce-product-add-to-cart-form .form-submit {
  background: var(--blue);
  color: var(--white);
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
  max-width: 320px;
}

.commerce-product-add-to-cart-form .form-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,111,196,0.35);
}

/* Košík */
.commerce-cart-form table {
  width: 100%;
  border-collapse: collapse;
}

.commerce-cart-form th {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid var(--border);
  padding: 12px 16px;
  text-align: left;
}

.commerce-cart-form td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

/* Checkout */
.commerce-checkout-flow {
  max-width: 720px;
  margin: 0 auto;
}

.checkout-pane {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.checkout-pane h2 {
  font-family: var(--font-tight);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* ── MESSAGES ─────────────────────────────────────────────────────────────── */
.messages {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid;
}

.messages--status {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #15803d;
}

.messages--warning {
  background: #fffbeb;
  border-color: #fde68a;
  color: #92400e;
}

.messages--error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}

/* ── BREADCRUMB ───────────────────────────────────────────────────────────── */
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  color: var(--border);
  margin-left: 8px;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover { color: var(--blue); }

/* ── PAGINACE ─────────────────────────────────────────────────────────────── */
.pager {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 40px;
}

.pager__item a,
.pager__item.is-active span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--ink-soft);
  transition: all var(--transition);
}

.pager__item a:hover { border-color: var(--blue); color: var(--blue); }
.pager__item.is-active span { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
  font-family: var(--font-tight);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.footer-brand .logo-text span { color: var(--blue); }

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
}

.footer-bottom a:hover { color: var(--white); }

/* ── USER ACCOUNT ─────────────────────────────────────────────────────────── */
.user-login-form,
.user-register-form,
.user-pass {
  max-width: 440px;
  margin: 60px auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.user-login-form h1,
.user-register-form h1 {
  font-family: var(--font-tight);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: -0.02em;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .site-nav { display: none; }
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 20px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .menu-toggle { display: flex; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── UTILITY ──────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


  .hero { text-align: center; padding: 80px 24px 60px; position: relative; overflow: hidden; }
  .hero::before {
    content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(26,71,42,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-eyebrow {
    display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent);
    padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
  }
  .hero h1 {
    font-family: 'DM Serif Display', serif; font-size: clamp(36px, 6vw, 64px);
    line-height: 1.1; margin-bottom: 20px; max-width: 700px; margin-left: auto; margin-right: auto;
  }
  .hero h1 em { font-style: italic; color: var(--accent); }
  .hero-sub { font-size: 17px; color: var(--muted); line-height: 1.6; max-width: 520px; margin: 0 auto 16px; font-weight: 300; }
  .setup-badge {
    display: inline-flex; align-items: center; gap: 8px; background: var(--gold);
    color: #fff; font-size: 13px; font-weight: 600; padding: 8px 20px; border-radius: 100px; margin-top: 8px;
  }

  .setup-notice { max-width: 1200px; margin: 0 auto 40px; padding: 0 24px; }
  .setup-notice-inner {
    background: var(--highlight); border: 1px solid rgba(26,71,42,0.15);
    border-radius: 12px; padding: 18px 24px; display: flex; align-items: center; gap: 14px;
  }
  .setup-notice-text { font-size: 14px; line-height: 1.5; }
  .setup-notice-text strong { color: var(--accent); }

  .plans {
    max-width: 1200px; margin: 0 auto; padding: 20px 24px 80px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start;
  }
  .plan {
    background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px;
    padding: 32px 28px; position: relative; transition: transform 0.2s, box-shadow 0.2s;
  }
  .plan:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
  .plan.featured { border: 2px solid var(--accent); background: var(--ink); color: #fff; }
  .plan.custom { border: 2px solid var(--gold); background: linear-gradient(135deg, #1a1a1a 0%, #2a2a1a 100%); color: #fff; }

  .plan-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 16px; border-radius: 100px; white-space: nowrap; color: #fff;
  }
  .plan.featured .plan-badge { background: var(--accent); }
  .plan.custom .plan-badge { background: var(--gold); }

  .plan-name { font-family: 'DM Serif Display', serif; font-size: 26px; margin-bottom: 6px; }
  .plan.featured .plan-name, .plan.custom .plan-name { color: #fff; }

  .plan-desc { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }
  .plan.featured .plan-desc, .plan.custom .plan-desc { color: rgba(255,255,255,0.55); }

  .plan-price { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
  .plan.featured .plan-price, .plan.custom .plan-price { border-bottom-color: rgba(255,255,255,0.12); }

  .plan-amount { font-family: 'DM Serif Display', serif; font-size: 42px; line-height: 1; display: flex; align-items: baseline; gap: 4px; }
  .plan.featured .plan-amount, .plan.custom .plan-amount { color: #fff; }
  .plan-amount .currency { font-size: 20px; font-family: 'DM Sans', sans-serif; font-weight: 300; }
  .plan-amount .period { font-size: 13px; font-family: 'DM Sans', sans-serif; color: var(--muted); margin-left: 2px; }
  .plan.featured .plan-amount .period, .plan.custom .plan-amount .period { color: rgba(255,255,255,0.5); }
  .plan-amount.custom-price { font-size: 28px; color: var(--gold); }

  .plan-setup { font-size: 12px; color: var(--muted); margin-top: 6px; }
  .plan.featured .plan-setup, .plan.custom .plan-setup { color: rgba(255,255,255,0.45); }
  .plan-setup strong { color: var(--accent-light); }
  .plan.featured .plan-setup strong, .plan.custom .plan-setup strong { color: var(--gold); }

  .plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
  .plan-features li { font-size: 13px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
  .plan.featured .plan-features li, .plan.custom .plan-features li { color: rgba(255,255,255,0.85); }
  .plan-features li::before { content: '✓'; color: var(--accent-light); font-weight: 700; font-size: 12px; flex-shrink: 0; margin-top: 1px; }
  .plan.featured .plan-features li::before, .plan.custom .plan-features li::before { color: var(--gold); }

  .btn {
    display: block; width: 100%; text-align: center; padding: 13px 20px;
    border-radius: 10px; font-size: 14px; font-weight: 600; text-decoration: none;
    transition: all 0.2s; cursor: pointer; border: none;
  }
  .btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
  .btn-outline:hover { border-color: var(--accent); color: var(--accent); }
  .btn-featured { background: var(--gold); color: #fff; }
  .btn-featured:hover { background: #b8963d; transform: translateY(-1px); }
  .btn-primary { background: var(--accent); color: #fff; }
  .btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); }
  .btn-custom { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
  .btn-custom:hover { background: var(--gold); color: #fff; transform: translateY(-1px); }

  .conditions { max-width: 700px; margin: 0 auto 80px; padding: 0 24px; text-align: center; }
  .conditions h2 { font-family: 'DM Serif Display', serif; font-size: 26px; margin-bottom: 14px; }
  .conditions p { font-size: 14px; color: var(--muted); line-height: 1.7; }

  @media (max-width: 1100px) { .plans { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px) { .plans { grid-template-columns: 1fr; max-width: 480px; } }
  /* ── Produkt stránka ─────────────────────────────────────────────────────── */
.product-page { padding: 40px 0; }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  margin-top: 32px;
}

.product-description {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.product-box {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.product-setup-fee {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 16px 0;
}

.product-includes {
  list-style: none;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-includes li {
  font-size: 14px;
  color: var(--ink-soft);
}

.product-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; }
  .product-box { position: static; }
}

/* ── Košík v headeru ─────────────────────────────────────────────────────── */
.header-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
}

.header-cart:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.header-cart-icon {
  font-size: 18px;
  line-height: 1;
}

.header-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

/* ── Notifikace nahoře ───────────────────────────────────────────────────── */
.messages-wrapper,
.region-highlighted {
  position: fixed !important;
  top: calc(var(--header-h) + 12px) !important;
  right: 20px !important;
  z-index: 9999 !important;
  max-width: 380px !important;
  width: auto !important;
}

.messages {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Commerce cart notification */
.cart-block--contents,
[class*="cart-block"] {
  position: relative;
}

/* ── Messages toast notifikace ───────────────────────────────────────────── */
.messages-position,
[data-drupal-messages-fallback],
.messages-wrapper {
  position: fixed !important;
  top: calc(var(--header-h) + 16px) !important;
  right: 20px !important;
  left: auto !important;
  width: auto !important;
  max-width: 420px !important;
  z-index: 9999 !important;
}

.messages--status {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.3s ease;
}

.messages--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Linky v messages ────────────────────────────────────────────────────── */
.messages--status a,
.messages--status a:hover {
  color: #15803d !important;
  text-decoration: underline;
  font-weight: 600;
}

.messages--error a,
.messages--error a:hover {
  color: #b91c1c !important;
  text-decoration: underline;
  font-weight: 600;
}

/* ── OPRAVA: COMMERCE ORDER SUMMARY (SHRNUTÍ OBJEDNÁVKY) ── */

/* Srovnání řádku položky do flexboxu */
.checkout-pane--order-summary .order-item,
.commerce-order-receipt .order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  gap: 15px;
}

/* Skrytí nadbytečného slova "Cena" v souhrnu */
.checkout-pane--order-summary .field--name-total-price .field__label,
.checkout-pane--order-summary .field--name-list-price .field__label,
.checkout-pane--order-summary .field--name-price .field__label,
.commerce-order-receipt .field__label {
  display: none !important;
}

/* Reset obřího fontu z Olivero tématu pro cenu */
.checkout-pane--order-summary .field--name-total-price,
.checkout-pane--order-summary .field--name-price,
.commerce-order-receipt .field--name-total-price {
  font-family: var(--font) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin: 0 !important;
  line-height: 1 !important;
  text-align: right;
  white-space: nowrap;
}

/* Zajištění, že se množství a název správně zalomí */
.checkout-pane--order-summary .order-item__quantity {
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.checkout-pane--order-summary .order-item__title {
  flex: 1;
  font-size: 15px;
  line-height: 1.4;
}

/* Úprava celkového součtu dole pod čarou */
.checkout-pane--order-summary .order-total-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
}
.checkout-pane--order-summary .order-total-line__total {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
}

/* =============================================================================
   HOMEPAGE – Hero Slider, sekce, ceník, FAQ, CTA
   ============================================================================= */

/* ── HERO SLIDER ──────────────────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 0px);
  min-height: 560px;
  max-height: 800px;
  overflow: hidden;
  padding-top: var(--header-h);
  background: #0d1117;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slider-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.1) 100%);
}

.slider-content {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 680px;
}

.slide-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.slide-title {
  font-family: var(--font-tight);
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}

.slide-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}

.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-slide-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  padding: 13px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
}

.btn-slide-primary:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,111,196,0.4);
}

.btn-slide-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.btn-slide-secondary:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

/* Navigační šipky */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.4);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* Navigační tečky */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot.is-active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

/* ── STATS BAR ────────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-dark);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-tight);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ── HOMEPAGE SEKCE (obecné) ──────────────────────────────────────────────── */
.hp-section {
  padding: 88px 0;
}

/* ── KROKY / HOW IT WORKS ─────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-tight);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 0 6px var(--bg-soft);
  flex-shrink: 0;
}

.step-title {
  font-family: var(--font-tight);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── PRICING ──────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  border-color: rgba(26,111,196,0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-name {
  font-family: var(--font-tight);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-amount {
  font-family: var(--font-tight);
  font-size: 48px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.pricing-currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink-soft);
}

.pricing-period {
  font-size: 14px;
  color: var(--muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.feat-check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
}

.feat-missing {
  color: var(--muted) !important;
  opacity: 0.55;
}

.pricing-setup {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--muted);
}

.pricing-note a {
  color: var(--blue);
  font-weight: 500;
}

/* ── FEATURES ─────────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.feature-title {
  font-family: var(--font-tight);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── SPLIT SECTION (mockup) ───────────────────────────────────────────────── */
.hp-split {}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-mockup {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.mockup-desktop {
  background: var(--bg-dark);
  border-radius: 12px;
  padding: 20px 16px 10px;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
}

.mockup-desktop::before {
  content: '';
  display: block;
  width: 48px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  margin: 0 auto 12px;
}

.mockup-mobile {
  position: absolute;
  bottom: -24px;
  right: -20px;
  width: 120px;
  background: var(--blue-dark);
  border-radius: 10px;
  padding: 14px 10px 10px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-md);
}

.mockup-mobile::before {
  content: '';
  display: block;
  width: 24px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin: 0 auto 8px;
}

.mockup-screen {
  padding: 4px;
}

.mockup-line {
  background: rgba(255,255,255,0.18);
  border-radius: 3px;
  display: block;
}

.mockup-btn {
  width: 60%;
  height: 20px;
  background: var(--blue);
  border-radius: 5px;
  margin-top: 14px;
  opacity: 0.8;
}

.split-text {
  padding: 20px 0;
}

.split-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.split-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.split-list li {
  font-size: 15px;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.split-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 13px;
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--blue);
}

.faq-question[aria-expanded="true"] {
  color: var(--blue);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-answer {
  display: none;
  padding-bottom: 20px;
}

.faq-answer.is-open {
  display: block;
}

.faq-answer p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CTA BANNER ───────────────────────────────────────────────────────────── */
.hp-cta-banner {
  background: var(--bg-dark);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.hp-cta-banner::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26,111,196,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-title {
  font-family: var(--font-tight);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 500px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-cta-primary:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,111,196,0.4);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: all var(--transition);
  text-align: center;
}

.btn-cta-secondary:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

/* ── RESPONSIVE – HOMEPAGE ────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid { grid-template-columns: 1fr; }
  .split-visual { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-desc { max-width: 100%; }
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card--featured { order: -1; }
  .hero-slider { max-height: 640px; }
  .slide-title { font-size: 30px; }
  .slider-arrow { display: none; }
}

@media (max-width: 640px) {
  .hp-section { padding: 60px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .slide-actions { flex-direction: column; }
  .btn-slide-primary,
  .btn-slide-secondary { width: 100%; justify-content: center; }
  .cta-actions { width: 100%; }
  .btn-cta-primary,
  .btn-cta-secondary { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 22px; }
}