:root {
  --bg: #050607;
  --bg-elevated: #111217;
  --bg-soft: #171821;
  --accent: #f5b941;
  --accent-soft: #f5b94122;
  --accent-strong: #ffca4a;
  --text-primary: #f5f5f5;
  --text-secondary: #a5a6b0;
  --border-subtle: #262733;
}

/* RESET & BASE */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #171821 0, #050607 45%, #000000 100%);
  color: var(--text-primary);
}

.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 14px 32px;
}

/* MOBILNI NAV (mobile-first) */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(5, 6, 7, 0.92);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border-subtle);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 0, #ffffffaa, var(--accent-strong));
  box-shadow:
    0 0 0 1px #000,
    0 8px 20px rgba(0, 0, 0, 0.8),
    0 0 16px rgba(245, 185, 65, 0.6);
    width: 26px;
height: 26px;
border-radius: 8px;
object-fit: cover;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 15px;
}

.nav-links {
  display: none; /* na mobitelu skrivene, desktop dole */
}

.nav-cta {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #1c1201;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.85);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.nav-cta:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.95);
}

/* HERO – MOBILE FIRST */

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 14px;
  padding: 18px 14px;
  border-radius: 24px;
  background: radial-gradient(circle at top left, #1b1c27 0, #090a0d 48%, #050607 100%);
  border: 1px solid var(--border-subtle);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

.hero-text h1 {
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 10px;
}

.hero-text p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 14px;
}

.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #050608;
  border: 1px solid #2b2c37;
  color: var(--text-primary);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.9);
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.store-btn:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.95);
}

.store-btn i {
  font-size: 22px;
}

.store-btn span {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 1.2;
}

.store-btn span small {
  font-size: 11px;
  color: var(--text-secondary);
}

.hero-subtext {
  margin-top: 2px;
  font-size: 12px;
  color: var(--text-secondary);
}

.hero-social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.hero-social a {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0d0e14;
  border: 1px solid #252633;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.hero-social a:hover {
  background: var(--accent);
  border-color: var(--accent-strong);
  color: #1c1201;
  transform: translateY(-1px);
}

/* HERO MOCKUP – kartica ispod na mobitelu */

.hero-mockup {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 240px;
  padding: 10px;
  border-radius: 32px;
  background: linear-gradient(145deg, #1b1c25, #060609);
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone-screen {
  border-radius: 26px;
  background: radial-gradient(circle at top, #11131f 0, #050608 55%, #020203 100%);
  padding: 10px;
  border: 1px solid #272838;
}

.phone-status-bar {
  height: 8px;
  border-radius: 999px;
  margin-bottom: 8px;
  background: linear-gradient(to right, var(--accent-soft), transparent);
}

.phone-content {
  padding: 8px 4px 6px;
}

.phone-content .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  font-size: 10px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(245, 185, 65, 0.12);
  border: 1px solid rgba(245, 185, 65, 0.5);
}

.phone-content h2 {
  font-size: 16px;
  margin: 8px 0 4px;
}

.phone-content p {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.phone-cta {
  width: 100%;
  padding: 7px 0;
  border-radius: 999px;
  border: none;
  font-size: 12px;
  font-weight: 600;
  background: var(--accent);
  color: #1c1201;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.95);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.phone-cta:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 1);
}

/* SECTIONS – MOBILE */

.section {
  margin-top: 26px;
  padding: 18px 14px;
  border-radius: 22px;
  background: rgba(8, 9, 14, 0.96);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.95);
}

.section-header h2 {
  font-size: 18px;
  margin: 0 0 4px;
}

.section-header p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

/* FEATURES GRID */

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.feature-card {
  padding: 12px 12px 14px;
  border-radius: 16px;
  background: #050608;
  border: 1px solid #242633;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.9);
  transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.98);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background: rgba(245, 185, 65, 0.1);
  color: var(--accent);
  margin-bottom: 6px;
  font-size: 14px;
}

.feature-card h3 {
  font-size: 14px;
  margin: 0 0 4px;
}

.feature-card p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
}

/* HIGHLIGHT SECTION */

.highlight {
  background: linear-gradient(135deg, #171824 0, #050608 55%, #000000 100%);
}

.highlight-content h2 {
  font-size: 17px;
  margin: 0 0 6px;
}

.highlight-content p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  max-width: 520px;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pill-list li {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #343544;
  background: rgba(10, 11, 18, 0.98);
}

/* FAQ */

.faq-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: 16px;
  background: #050608;
  border: 1px solid #242633;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  text-align: left;
  font-size: 13px;
  cursor: pointer;
}

.faq-icon {
  font-size: 18px;
  color: var(--accent);
  transition: transform 0.15s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 12px;
  font-size: 12px;
  color: var(--text-secondary);
  transition: max-height 0.2s ease, padding-bottom 0.2s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 9px;
}

/* KONTAKT */

.contact-mail {
  margin-top: 16px;
}

.contact-text {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 10px;
}

.contact-btn {
  display: inline-block;
  margin-bottom: 6px;
  padding: 9px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #1c1201;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.95);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.contact-btn:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 1);
}

.form-note {
  margin: 0;
  font-size: 11px;
  color: var(--text-secondary);
}

/* FOOTER */

.footer {
  margin-top: 22px;
  padding: 12px 4px 0;
  border-top: 1px solid #191a22;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* TABLET & DESKTOP – širi raspored */

@media (min-width: 720px) {
  .page-wrapper {
    padding: 16px 20px 40px;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 24px 22px;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .store-buttons {
    flex-direction: row;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pill-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 960px) {
  .nav {
    padding-inline: 16px;
  }

  .nav-links {
    display: flex;
    gap: 18px;
    font-size: 14px;
  }

  .nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.15s ease, transform 0.15s ease;
  }

  .nav-links a:hover {
    color: var(--text-primary);
    transform: translateY(-1px);
  }
}
