* { box-sizing: border-box; }
body { margin: 0; font-family: 'Inter', sans-serif; line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: 'Zandes', sans-serif; }
a { text-decoration: none; }

/* Header */
.site-header { background: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 10; }
.site-header .container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 10px 20px; }
.site-header nav a { margin-left: 15px; color: #333; font-weight: 600; }
.site-header nav a.btn-cta { background: #BE2D93; color: #fff; padding: 8px 16px; border-radius: 4px; }
.menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

@media (max-width: 768px) {
  .site-header .container { flex-wrap: wrap; }
  .site-header nav { display: none; flex-direction: column; width: 100%; background: #fff; }
  .site-header nav a { margin: 10px 0; }
  .site-header nav.show { display: flex; }
  .menu-toggle { display: block; }
}

/* Hero */
.hero { position: relative; height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; }
.hero video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; filter: blur(5px); z-index: -1; }
.hero .dark-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 0; }
.hero .overlay { position: relative; z-index: 1; }
.hero .btn { margin-top: 20px; background: #BE2D93; color: #fff; padding: 10px 20px; border-radius: 4px; display: inline-block; }

/* Generic section */
.section { padding: 60px 20px; }
.section.gray { background: #f7f7f7; }
.section .container { max-width: 1200px; margin: 0 auto; }

/* Training section */
.training .content { display: flex; flex-wrap: wrap; align-items: center; }
.training .text, .training .image { flex: 1; padding: 20px; }
.training img { width: 100%; border-radius: 8px; }
.training .btn { background: #BE2D93; color: #fff; padding: 10px 20px; border-radius: 4px; }

/* App section */
.app .items { display: flex; flex-wrap: wrap; gap: 20px; }
.app .item { flex: 1; min-width: 260px; background: #fff; border: 1px solid #eee; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; }
.app .item img { width: 100%; height: 200px; object-fit: cover; }
.app .item .content { padding: 20px; flex-grow: 1; }
.app .item .btn { background: #BE2D93; color: #fff; padding: 8px 16px; border-radius: 4px; display: inline-block; }

/* Happy grid */
.happy .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.happy .card { background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 20px; text-align: center; }
.happy .card .title { font-weight: 600; margin-top: 10px; }
@keyframes dance {0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);}}
.happy .card.dance { animation: dance 0.6s ease; }

footer { background: #333; color: #fff; text-align: center; padding: 1rem; }
footer a { color: #BE2D93; }
