/* Landing-specific styles, layered on top of styles.css */

.landing { background: var(--bg-primary); }

.eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  white-space: nowrap;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-700);
  display: inline-block;
  margin-bottom: 12px;
}
.eyebrow.center { display: block; text-align: center; color: var(--text-muted); }

.section { padding: 80px 0; }
.section-alt { background: var(--bg-secondary); }
.section-h {
  font-family: var(--font-head);
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 48px;
  color: var(--text-primary);
}
.container.narrow { max-width: 760px; }
.center-text { text-align: center; }

/* Hero */
.hero { padding: 64px 0 80px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-title {
  font-family: var(--font-head);
  font-size: 52px;
  line-height: 60px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  color: var(--text-primary);
}
.title-accent { color: var(--green-600); }
.hero-sub {
  font-size: 18px;
  line-height: 28px;
  color: var(--text-secondary);
  margin: 0 0 28px;
  max-width: 540px;
}
.hero-cta { display: flex; gap: 12px; margin-bottom: 28px; }
.hero-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 16px 24px;
  font-size: 13px; color: var(--text-secondary);
}

.hero-visual { display: grid; place-items: center; }
.hero-mock {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 12px 40px rgba(15,23,42,0.06);
  position: relative;
}
.mock-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mock-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12px;
}
.mock-label { color: var(--text-secondary); font-size: 11px; }
.mock-card .num { font-size: 13px; font-weight: 600; }
.mock-flow { width: 100%; height: 90px; margin: 8px 0; }
.mock-flow path { animation: dashflow 3s linear infinite; }
.mock-pocket {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.mock-big { font-size: 22px; font-weight: 600; }

/* Features */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.feat-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.feat-icon svg { width: 100%; height: 100%; display: block; }
.feat h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin: 4px 0 0;
  color: var(--text-primary);
}
.feat p { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 22px; }

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 980px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .price-grid, .feat-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 36px; line-height: 44px; }
  .section-h { font-size: 26px; line-height: 32px; }
  .section { padding: 56px 0; }
  .header-nav { display: none; }
}
.price-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.price-card.featured {
  border-color: var(--green-500);
  box-shadow: 0 8px 24px rgba(34,197,94,0.12);
}
.featured-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-600);
  color: white;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-num { display: flex; align-items: baseline; gap: 4px; flex-wrap: nowrap; white-space: nowrap; }
.price-num .num { white-space: nowrap; }
.price-num .num { font-size: 32px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.02em; }
.price-per { font-size: 13px; color: var(--text-muted); }
.price-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.price-list li { font-size: 13px; color: var(--text-secondary); padding-left: 18px; position: relative; }
.price-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 6px;
  border-left: 1.5px solid var(--green-600);
  border-bottom: 1.5px solid var(--green-600);
  transform: rotate(-45deg);
}
.btn-block { display: flex; justify-content: center; width: 100%; }
.price-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 8px; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-item summary {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 200ms ease;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p { margin: 12px 0 0; color: var(--text-secondary); font-size: 14px; line-height: 22px; }

/* CTA */
.cta-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--green-50) 100%);
  text-align: center;
}
.cta-sub { font-size: 16px; color: var(--text-secondary); margin: 0 0 28px; }

/* Footer big */
.footer-big {
  background: var(--text-primary);
  color: rgba(255,255,255,0.8);
  padding: 56px 0 24px;
}
.footer-big .logo-a { color: white; }
.footer-big .logo-cz { color: rgba(255,255,255,0.5); }
.footer-big .logo-ai { background: rgba(34,197,94,0.2); color: var(--green-200); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.foot-tag { font-size: 13px; color: rgba(255,255,255,0.6); margin: 12px 0 0; }
.footer-big .caption { color: rgba(255,255,255,0.5); margin-bottom: 12px; display: block; }
.foot-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.foot-list li { font-size: 13px; color: rgba(255,255,255,0.7); }
.foot-list a { color: inherit; text-decoration: none; }
.foot-list a:hover { color: white; }
.footer-base {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* Cookie */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-primary);
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.18);
  max-width: calc(100% - 32px);
  z-index: 100;
}

/* Legal pages */
.legal {
  max-width: 760px;
  margin: 64px auto;
  padding: 0 32px;
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 24px;
}
.legal h1 { font-family: var(--font-head); font-size: 32px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 8px; }
.legal h2 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin: 32px 0 12px; }
.legal h3 { font-family: var(--font-head); font-size: 15px; font-weight: 600; margin: 20px 0 8px; }
.legal p, .legal li { font-size: 14px; color: var(--text-secondary); }
.legal ul { padding-left: 20px; }
.legal-meta { color: var(--text-muted); font-size: 12px; margin-bottom: 32px; }
