/* ======================================================
   🎨 Inzaria – Design Tokens (FIGMA ZÁKLAD)
   ====================================================== */

:root {
  --color-primary: #0A2540;   /* Navy */
  --color-accent: #F26B38;    /* Orange */
  --color-bg: #FFFFFF;
  --color-muted: #6B7280;

  --radius-lg: 16px;
  --radius-md: 12px;

  --shadow-soft: 0 12px 30px rgba(0,0,0,0.08);
  --shadow-hover: 0 16px 40px rgba(0,0,0,0.12);
}

/* ======================================================
   TYPOGRAFIA
   ====================================================== */

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--color-primary);
}

h1, h2, h3, h4, h5 {
  letter-spacing: -0.4px;
}

.text-muted {
  color: var(--color-muted) !important;
}

/* ======================================================
   BUTTONY
   ====================================================== */

.btn-accent {
  background-color: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: none;
  transition: all 0.25s ease;
}

.btn-accent:hover {
  background-color: #e35e2f;
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
  color: #fff;
}

.btn-outline-light {
  border-radius: var(--radius-md);
  font-weight: 600;
}

/* ======================================================
   HERO SEKCIA
   ====================================================== */

.hero-figma {
  background: linear-gradient(135deg, #0A2540 0%, #132E4C 100%);
  padding: 120px 0;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
}

/* ======================================================
   BEFORE / AFTER SLIDER
   ====================================================== */

.slider-container {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.img-after,
.img-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-before {
  clip-path: inset(0 50% 0 0);
}

.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

/* ======================================================
   FEATURE CARDS
   ====================================================== */

.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: all 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-card i {
  color: var(--color-accent);
}

/* ======================================================
   VIDEO UKÁŽKY
   ====================================================== */

.video-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.25s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.video-placeholder {
  background: var(--color-primary);
  color: #fff;
  font-size: 36px;
  height: 220px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ======================================================
   FREE CREDIT / CTA
   ====================================================== */

section.border-top {
  border-color: #eef1f5 !important;
}

/* ======================================================
   LAUNCH BANNER
   ====================================================== */

.launch-banner {
  background: linear-gradient(135deg, #0A2540, #F26B38);
}

.launch-banner .btn-light {
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.25s ease;
}

.launch-banner .btn-light:hover {
  transform: scale(1.04);
}

/* ======================================================
   KONTAKT
   ====================================================== */

.contact-section .form-control {
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.contact-section .form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.15rem rgba(242,107,56,0.25);
}

/* ======================================================
   RESPONSIVE
   ====================================================== */

@media (max-width: 992px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-figma {
    padding: 80px 0;
  }
}
