*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161e;
  --bg-card-border: #222230;
  --pink: #e91e8c;
  --pink-hover: #ff2da0;
  --pink-glow: rgba(233, 30, 140, 0.3);
  --pink-glow-strong: rgba(233, 30, 140, 0.5);
  --pink-subtle: rgba(233, 30, 140, 0.08);
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #666678;
  --transition: 0.3s ease;
  --card-glow: 0 0 40px rgba(233, 30, 140, 0.08);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 15, 0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding-left: max(40px, env(safe-area-inset-left));
  padding-right: max(40px, env(safe-area-inset-right));
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all var(--transition);
}

.navbar.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(10, 10, 15, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom-color: rgba(233, 30, 140, 0.08);
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo {
  height: 52px;
  width: auto;
  transition: all var(--transition);
}

.navbar.scrolled .navbar-logo {
  height: 42px;
  filter: drop-shadow(0 0 8px rgba(233, 30, 140, 0.25));
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.25s;
  letter-spacing: 0.01em;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.3s ease;
}

.navbar-links a:hover,
.navbar-links a.active { color: var(--text-primary); }
.navbar-links a:hover::after,
.navbar-links a.active::after { width: 100%; }

.navbar-links .mobile-cta { display: none; }

.btn-nav {
  background: var(--pink);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.btn-nav:hover {
  background: var(--pink-hover);
  box-shadow: 0 4px 25px var(--pink-glow);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  min-height: 90dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(233, 30, 140, 0.15) 0%, rgba(233, 30, 140, 0.05) 40%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 4s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(233, 30, 140, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 4s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
  0% { opacity: 0.6; transform: translateX(-50%) scale(0.95); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(233, 30, 140, 0.06) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(10, 10, 15, 0.4) 0%, rgba(10, 10, 15, 0.7) 60%, rgba(10, 10, 15, 0.95) 100%);
  z-index: 1;
}

.hero h1,
.hero p,
.hero .btn-primary,
.hero .hero-phone,
.hero .scroll-indicator {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--pink);
  text-shadow: 0 0 40px rgba(233, 30, 140, 0.3);
}

.hero p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
  background: var(--pink-hover);
  box-shadow: 0 6px 35px var(--pink-glow);
  transform: translateY(-2px);
}

.hero-phone {
  margin-top: 20px;
  position: relative;
}

.hero-phone a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.hero-phone a:hover { color: var(--pink); }

.hero-phone svg {
  width: 18px;
  height: 18px;
  stroke: var(--pink);
  fill: none;
}

/* ===== STICKY CONTACT ===== */
.sticky-contact {
  position: fixed;
  bottom: max(30px, env(safe-area-inset-bottom));
  left: max(30px, env(safe-area-inset-left));
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.sticky-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
}

.sticky-btn-phone {
  background: var(--pink);
}

.sticky-btn-phone:hover {
  background: var(--pink-hover);
  transform: scale(1.1);
  box-shadow: 0 6px 25px var(--pink-glow);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  transition: opacity 0.4s ease;
}

.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-indicator svg { width: 24px; height: 24px; stroke: var(--text-muted); }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* ===== FEATURES ===== */
.features {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--pink-subtle);
  border: 1px solid rgba(233, 30, 140, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition);
}

.feature-icon:hover {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 0 30px rgba(233, 30, 140, 0.2);
  border-color: rgba(233, 30, 140, 0.4);
  background: rgba(233, 30, 140, 0.12);
}

.feature-icon svg { width: 24px; height: 24px; stroke: var(--pink); fill: none; }

.feature-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== SECTIONS COMMON ===== */
.section { padding: 60px 20px; }

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto;
}

.divider {
  max-width: 1100px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ===== COURSES ===== */
.courses-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.course-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.course-card:hover {
  border-color: rgba(233, 30, 140, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 50px rgba(233, 30, 140, 0.1);
}

.course-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.course-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--bg-card), transparent);
}

.course-placeholder {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-body { padding: 24px; }

.course-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.course-body h2,
.course-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.course-body p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.course-link {
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s, color 0.25s;
}

.course-link:hover { gap: 10px; color: var(--pink-hover); }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--bg-secondary);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(233, 30, 140, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: rgba(233, 30, 140, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 40px rgba(233, 30, 140, 0.06);
}

.testimonial-card:hover .author-avatar {
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.4);
}

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

.testimonial-text::before {
  content: '\201E';
  color: var(--pink);
  font-size: 1.4rem;
  font-weight: 800;
  font-style: normal;
  margin-right: 2px;
  line-height: 0;
  vertical-align: text-top;
}

.testimonial-text::after {
  content: '\201C';
  color: var(--pink);
  font-size: 1.4rem;
  font-weight: 800;
  font-style: normal;
  margin-left: 2px;
  line-height: 0;
  vertical-align: text-bottom;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  transition: box-shadow 0.3s ease;
}

.author-info h4 {
  font-size: 0.82rem;
  font-weight: 700;
}

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

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-photo picture {
  display: block;
}

.about-photo img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 18px;
}

.about-content {
  text-align: left;
}

.about-heading-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.about-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.about-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.about-heading span { color: var(--pink); }

.about-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.about-badge:hover { color: var(--text-secondary); }

.about-badge svg { width: 18px; height: 18px; stroke: var(--pink); fill: none; }

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .about-photo { order: -1; }

  .about-photo img {
    max-height: 360px;
    margin: 0 auto;
  }

  .about-content { text-align: center; }

  .about-heading-row {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }

  .about-badges { justify-content: center; }
}

/* ===== INSTAGRAM ===== */
.instagram {
  background: var(--bg-secondary);
  position: relative;
}

.instagram::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(233, 30, 140, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.instagram .section-header a {
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s;
}

.instagram .section-header a:hover { color: var(--pink-hover); }

.instagram-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.insta-item {
  aspect-ratio: 1;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--bg-card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0;
  transition: all var(--transition);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-item:hover img { transform: scale(1.05); }

.insta-item:hover {
  border-color: rgba(233, 30, 140, 0.3);
  transform: scale(1.02);
}

.insta-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(135deg, var(--bg-card) 0%, #1a1a28 100%);
  width: 100%;
  height: 100%;
}

.insta-placeholder svg {
  width: 32px;
  height: 32px;
  stroke: var(--pink);
  fill: none;
  opacity: 0.4;
}

.insta-placeholder span {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ===== PRICING ===== */
.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  padding: 36px 30px;
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: rgba(233, 30, 140, 0.35);
  box-shadow: 0 0 60px rgba(233, 30, 140, 0.1), inset 0 1px 0 rgba(233, 30, 140, 0.1);
  background: linear-gradient(180deg, rgba(233, 30, 140, 0.03) 0%, var(--bg-card) 30%);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.pricing-card.featured:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 80px rgba(233, 30, 140, 0.15);
  border-color: rgba(233, 30, 140, 0.5);
}

.pricing-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.pricing-card h2,
.pricing-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  line-height: 1;
}

.pricing-price .prefix {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-right: 4px;
}

.pricing-price .currency { font-size: 1.2rem; font-weight: 700; }
.pricing-price.from { color: var(--pink); }

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-features li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li svg { width: 16px; height: 16px; stroke: var(--pink); fill: none; flex-shrink: 0; }

.pricing-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-secondary {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--text-primary);
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--bg-card-border);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 0 20px rgba(233, 30, 140, 0.1);
}

.btn-block { display: block; width: 100%; text-align: center; margin-top: auto; }

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

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  border-left: 2px solid transparent;
  padding-left: 16px;
  transition: border-color var(--transition);
}

.faq-item.active {
  border-left-color: var(--pink);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  padding: 22px 40px 22px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.25s;
}

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

.faq-question::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: translateY(-30%) rotate(-135deg);
  border-color: var(--pink);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 2000px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== CTA / CONTACT ===== */
.contact {
  padding: 60px 20px;
}

.contact-inner {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.contact-heading {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.contact-heading .accent { color: var(--pink); }

.contact-inner > p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-form {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  padding: 13px 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a0a0b0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

/* ===== CONTACT MAP ===== */
.contact-map {
  max-width: 650px;
  margin: 40px auto 0;
}

.contact-map iframe {
  filter: grayscale(0.8) invert(0.92) contrast(0.9);
}

.map-address {
  text-align: center;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  padding: 50px 20px 35px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #0d0d14 100%);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 30, 140, 0.4), transparent);
}

.footer-links {
  max-width: 700px;
  margin: 0 auto 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--pink); }

.footer-links a svg { flex-shrink: 0; }

.footer-business {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: max(30px, env(safe-area-inset-bottom));
  right: max(30px, env(safe-area-inset-right));
  width: 44px;
  height: 44px;
  background: var(--pink);
  border: none;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 999;
  box-shadow: 0 4px 20px var(--pink-glow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--pink-hover);
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 8px 35px var(--pink-glow-strong);
}

.back-to-top:active {
  transform: translateY(-1px) scale(0.95);
}

.back-to-top svg { width: 20px; height: 20px; stroke: #fff; fill: none; }

/* ===== FORM MESSAGES ===== */
.form-message {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.form-message.error {
  display: block;
  background: rgba(233, 30, 140, 0.1);
  border: 1px solid rgba(233, 30, 140, 0.3);
  color: var(--pink);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered delays for grid children */
.features-grid .fade-up:nth-child(2),
.courses-grid .fade-up:nth-child(2),
.testimonials-grid .fade-up:nth-child(2),
.pricing-grid .fade-up:nth-child(2) { transition-delay: 0.1s; }

.features-grid .fade-up:nth-child(3),
.testimonials-grid .fade-up:nth-child(3),
.pricing-grid .fade-up:nth-child(3) { transition-delay: 0.2s; }

.pricing-grid .fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .btn-nav { display: none; }
  .mobile-toggle { display: block; }

  .navbar-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.97);
    padding: 20px 40px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .navbar-links.open a {
    font-size: 1rem;
    padding: 4px 0;
  }

  .navbar-links.open a::after { display: none; }

  .navbar-links.open .mobile-cta {
    display: inline-block;
    background: var(--pink);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    margin-top: 8px;
  }

  .features-grid,
  .courses-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row { grid-template-columns: 1fr; }

  .navbar { padding: 14px 20px; }

  .about-badges {
    flex-direction: column;
    gap: 12px;
  }

  .hero { padding: 90px 20px 50px; }
  .hero::before { width: 600px; height: 400px; }
  .hero::after { display: none; }

  .sticky-contact { bottom: 20px; left: 16px; }
  .sticky-btn { width: 46px; height: 46px; }

  .navbar-logo { height: 40px; }
  .navbar.scrolled .navbar-logo { height: 34px; }
}

@media (max-width: 500px) {
  .hero h1 { font-size: 2rem; }
  .instagram-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 0.76rem;
}

.breadcrumb li::after {
  content: '/';
  margin-left: 6px;
  color: var(--text-muted);
}

.breadcrumb li:last-child::after { display: none; }

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}

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

.breadcrumb span { color: var(--text-secondary); }

/* ===== PAGE HEADER (subpages) ===== */
.page-header-front {
  text-align: center;
  padding: 140px 20px 40px;
}

.page-header-front h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.page-header-front p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto;
}

.page-section-first {
  padding-top: 140px;
}

/* ===== SECTION MORE (show all link) ===== */
.section-more {
  text-align: center;
  margin-top: 32px;
}

.section-more .btn-secondary {
  display: inline-block;
  width: auto;
}

/* ===== CTA BLOCK ===== */
.cta-block {
  padding: 70px 20px;
  background: var(--bg-secondary);
  position: relative;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(233, 30, 140, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-block-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cta-block h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.cta-block h2 .accent {
  color: var(--pink);
  text-shadow: 0 0 30px rgba(233, 30, 140, 0.25);
}

.cta-block p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ===== BLOG ARTICLE GRID ===== */
.article-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.article-card:hover {
  border-color: rgba(233, 30, 140, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 40px rgba(233, 30, 140, 0.06);
}

.article-card-image {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
}

.article-card-placeholder {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-card-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--pink);
  fill: none;
  opacity: 0.4;
}

.article-card-body {
  padding: 20px 24px;
}

.article-card-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.article-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.article-card-body p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.article-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pink);
}

/* ===== BLOG ARTICLE DETAIL ===== */
.article-content {
  max-width: 750px;
  margin: 0 auto;
  padding: 60px 20px;
}

.article-header {
  margin-bottom: 32px;
}

.article-back {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.25s;
  display: inline-block;
  margin-bottom: 16px;
}

.article-back:hover { color: var(--pink); }

.article-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}

.article-header h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.article-image {
  margin-bottom: 32px;
}

.article-image img {
  width: 100%;
  border-radius: 16px;
  max-height: 400px;
  object-fit: cover;
}

.article-body {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.article-body h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 32px 0 16px;
}

.article-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 24px 0 12px;
}

.article-body p { margin-bottom: 16px; }

.article-body ul, .article-body ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.article-body li { margin-bottom: 6px; }

.article-body a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-body a:hover { color: var(--pink-hover); }

.article-body img {
  max-width: 100%;
  border-radius: 12px;
  margin: 16px 0;
}

/* ===== PARTNERS ===== */
.partners-section { background: var(--bg-secondary); }

.partners-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s ease;
}

.partner-card:hover {
  border-color: rgba(233, 30, 140, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 40px rgba(233, 30, 140, 0.06);
}

.partner-logo {
  width: var(--partner-logo-size, 160px);
  height: var(--partner-logo-size, 160px);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.partner-logo-placeholder {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  border-radius: 12px;
}

.partner-logo-placeholder svg {
  width: 60px;
  height: 60px;
  stroke: var(--pink);
  opacity: 0.3;
}

.partner-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.partner-discount {
  display: inline-block;
  background: var(--pink-subtle);
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.partner-description {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.partner-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
  transition: color 0.25s;
}

.partner-link:hover {
  color: var(--pink-hover);
}

/* ===== PRIHLASKA EMBED ===== */
.prihlaska-embed {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.prihlaska-embed-inner {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  padding: 32px 24px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .prihlaska-embed-inner { padding: 20px 16px; }
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  background: radial-gradient(ellipse at center, rgba(233, 30, 140, 0.03) 0%, transparent 60%);
  border-radius: 16px;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== 404 PAGE ===== */
.page-404 {
  min-height: 80vh;
  min-height: 80dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
}

.page-404-inner {
  text-align: center;
  max-width: 480px;
}

.page-404-code {
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  opacity: 0.3;
  margin-bottom: 16px;
}

.page-404 h1 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-404 p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ===== RESPONSIVE (subpages) ===== */
@media (max-width: 768px) {
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: 1fr; }
  .page-header-front { padding-top: 110px; }
  .page-section-first { padding-top: 110px; }
}
