/* ============================================
   KURZOR KRŮ — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --navy: #0d2847;
  --navy-light: #163762;
  --blue: #1a6dc2;
  --blue-light: #2b82db;
  --blue-pale: #e8f1fb;
  --orange: #e8841a;
  --orange-hover: #d4740f;
  --orange-light: #fdf0e2;
  --white: #ffffff;
  --off-white: #f5f8fc;
  --gray-50: #f9fafb;
  --gray-100: #f0f3f7;
  --gray-200: #dce3ec;
  --gray-300: #b8c5d4;
  --gray-400: #8a9bb5;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --text-primary: #0f1d30;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --shadow-sm: 0 1px 3px rgba(13,40,71,0.06), 0 1px 2px rgba(13,40,71,0.04);
  --shadow-md: 0 4px 16px rgba(13,40,71,0.08), 0 2px 4px rgba(13,40,71,0.04);
  --shadow-lg: 0 12px 40px rgba(13,40,71,0.12), 0 4px 12px rgba(13,40,71,0.06);
  --shadow-xl: 0 20px 60px rgba(13,40,71,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--orange); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,132,26,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13,40,71,0.06);
  transition: all var(--transition);
}

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

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: ':KK:';
  color: var(--orange);
  font-size: 0.65rem;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
  border-radius: 2px;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--navy);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-cta { margin-left: 8px; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  padding: 40px 24px;
  gap: 8px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--navy);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-menu .btn { margin-top: 16px; text-align: center; justify-content: center; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, var(--blue) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(26,109,194,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(232,132,26,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(26,109,194,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--white);
}
.hero-shape:nth-child(1) { width: 400px; height: 400px; top: -100px; right: -50px; }
.hero-shape:nth-child(2) { width: 200px; height: 200px; bottom: -50px; left: 10%; opacity: 0.04; }
.hero-shape:nth-child(3) { width: 120px; height: 120px; top: 30%; right: 20%; border-radius: 20px; transform: rotate(45deg); opacity: 0.05; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 8px 18px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  color: var(--orange);
}

.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero illustration (right side) */
.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  z-index: 1;
}

.hero-illustration {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  color: var(--white);
  animation: float 6s ease-in-out infinite;
}

.hero-card:nth-child(1) {
  top: 40px;
  right: 20px;
  animation-delay: 0s;
}
.hero-card:nth-child(2) {
  bottom: 80px;
  left: 0;
  animation-delay: 2s;
}
.hero-card:nth-child(3) {
  top: 50%;
  right: 0;
  animation-delay: 4s;
}

.hero-card-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.hero-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-card-desc {
  font-size: 0.78rem;
  opacity: 0.7;
  margin-top: 2px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================
   TRUST BAR (Client Logos)
   ============================================ */
.trust-bar {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.trust-bar-label {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logos img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(40%) opacity(0.7);
  transition: all var(--transition);
}

.trust-logos img:hover {
  filter: grayscale(0%) opacity(1);
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-blue {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
}

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

.section-header .section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-blue .section-header h2 {
  color: var(--white);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-blue .section-header p {
  color: rgba(255,255,255,0.7);
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
  margin: 16px auto 0;
}

/* ============================================
   COURSE CARDS
   ============================================ */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.course-card:hover::before {
  transform: scaleX(1);
}

.course-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.course-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.course-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.course-card .btn {
  margin-top: auto;
}

.course-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--orange);
  transition: all var(--transition);
}
.course-link:hover {
  gap: 10px;
  color: var(--orange-hover);
}
.course-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}
.course-link:hover svg { transform: translateX(3px); }

/* ============================================
   WHY US / BENEFITS
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
}

.benefit-icon.blue {
  background: var(--blue-pale);
  color: var(--blue);
}
.benefit-icon.orange {
  background: var(--orange-light);
  color: var(--orange);
}

.benefit-card h4 {
  margin-bottom: 8px;
  color: var(--navy);
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--orange);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--blue);
  font-size: 0.85rem;
}

.testimonial-info strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.testimonial-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(232,132,26,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(26,109,194,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .navbar-logo {
  color: var(--white);
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  padding: 5px 0;
  transition: all var(--transition);
}

.footer-col a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--orange);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   COURSE DETAIL PAGE
   ============================================ */
.course-hero {
  padding: 130px 0 60px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}

.course-hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.course-hero-text {
  flex: 1;
}

.course-hero-text h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.course-hero-text .subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
}

.course-hero-image {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.course-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.course-detail {
  padding: 60px 0 90px;
}

.course-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.course-main h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  margin-top: 40px;
}

.course-main h2:first-child {
  margin-top: 0;
}

.course-main p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.course-main ul {
  list-style: none;
  margin-bottom: 24px;
}

.course-main ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.course-main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.course-sidebar {
  position: sticky;
  top: 96px;
}

.course-info-box {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
}

.course-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
}

.course-info-item:last-of-type {
  border-bottom: none;
}

.course-info-item .label {
  color: var(--text-muted);
  font-weight: 500;
}

.course-info-item .value {
  font-weight: 600;
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
}

.course-info-item .price {
  font-size: 1.3rem;
  color: var(--orange);
  font-weight: 700;
}

.course-info-box .btn {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

.course-info-box .note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

/* --- Pricing Tabs --- */
.pricing-tabs {
  display: flex;
  background: var(--gray-200);
  border-radius: 10px;
  padding: 3px;
  margin-bottom: 24px;
}

.pricing-tab {
  flex: 1;
  padding: 10px 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1.3;
}

.pricing-tab.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.pricing-tab:hover:not(.active) {
  color: var(--navy);
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
  animation: fadeTab 0.3s ease;
}

@keyframes fadeTab {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.pricing-firmy-highlight {
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--orange-light) 100%);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin-bottom: 16px;
}

.pricing-firmy-highlight .price-label {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.pricing-firmy-highlight .price-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-firmy-list {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.pricing-firmy-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-firmy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.15;
}

.pricing-firmy-list li::after {
  content: '✓';
  position: absolute;
  left: 3px;
  top: 14px;
  font-size: 0.65rem;
  color: var(--orange);
  font-weight: 700;
  line-height: 16px;
}

/* ============================================
   KONTAKT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-pale), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--navy);
}

.contact-card h3 {
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.contact-detail svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--orange);
}

.contact-detail a {
  color: var(--text-secondary);
}
.contact-detail a:hover {
  color: var(--orange);
}

/* Primary contact (highlighted) */
.contact-primary {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.contact-primary-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
  margin-bottom: 4px;
}

.contact-primary-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-primary-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-light);
  border: 1px solid rgba(232,132,26,0.2);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 10px;
  color: var(--orange);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.contact-primary-info h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.contact-primary-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-primary-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}

.contact-primary-detail svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-primary-detail a {
  color: var(--navy);
}

.contact-primary-detail a:hover {
  color: var(--orange);
}

/* Contact card photo */
.contact-card-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 2px solid var(--gray-200);
}

/* Team members (secondary) */
.team-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
  margin-top: 48px;
}

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

@media (max-width: 768px) {
  .contact-primary {
    padding: 32px 24px;
  }
  .contact-primary-detail {
    font-size: 1.05rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   KURZY LISTING PAGE
   ============================================ */
.courses-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.course-listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.course-listing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.course-listing-top {
  background: var(--off-white);
  padding: 32px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.course-listing-top img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.course-listing-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-listing-body h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.course-listing-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1;
}

.course-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.course-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.course-meta-item svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
}
.breadcrumb a:hover {
  color: var(--orange);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.stagger > .fade-up:nth-child(1) { transition-delay: 0.05s; }
.stagger > .fade-up:nth-child(2) { transition-delay: 0.12s; }
.stagger > .fade-up:nth-child(3) { transition-delay: 0.19s; }
.stagger > .fade-up:nth-child(4) { transition-delay: 0.26s; }
.stagger > .fade-up:nth-child(5) { transition-delay: 0.33s; }
.stagger > .fade-up:nth-child(6) { transition-delay: 0.40s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .courses-grid,
  .courses-listing-grid,
  .benefits-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .course-detail-grid { grid-template-columns: 1fr; }
  .course-sidebar { position: static; }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  
  .section { padding: 60px 0; }
  
  .courses-grid,
  .courses-listing-grid,
  .benefits-grid,
  .testimonials-grid,
  .contact-grid { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  
  .trust-logos { gap: 28px; }
  .trust-logos img { height: 36px; }

  .course-hero-inner { flex-direction: column-reverse; gap: 24px; text-align: center; }
  .course-hero-image { width: 120px; height: 120px; padding: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.7rem; }
  .course-card, .benefit-card, .testimonial-card { padding: 28px 20px; }
}
