* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1f;
  background-color: #f7f6f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 28px 0 18px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.75rem;
  color: #5a5a5f;
  border: 1px solid #d0cfd5;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
}

.hero {
  padding: 40px 0 70px;
}

.hero-wrap {
  display: flex;
  align-items: stretch;
  gap: 28px;
}

.hero-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  line-height: 1.1;
}

.hero-text p {
  font-size: 1.05rem;
  color: #3d3d40;
}

.hero-media {
  flex: 1 1 50%;
  position: relative;
  background-color: #d7d4c8;
  border-radius: 22px;
  overflow: hidden;
  min-height: 360px;
}

.hero-media img {
  height: 100%;
}

.floating-card {
  position: absolute;
  bottom: -20px;
  left: 22px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  max-width: 260px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid #1d1d1f;
  background: #1d1d1f;
  color: #fff;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #1d1d1f;
}

.btn:hover,
.link-cta:hover {
  opacity: 0.86;
}

.section {
  padding: 70px 0;
  position: relative;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 55%;
}

.split .media-block {
  flex: 1 1 45%;
  background-color: #d9d0c7;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.offset-panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.08);
  margin-left: -40px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill-list span {
  padding: 8px 14px;
  background: #efede7;
  border-radius: 999px;
  font-size: 0.85rem;
}

.bg-tone {
  background-color: #efeae3;
}

.bg-image {
  background-color: #d7d4c8;
  background-size: cover;
  background-position: center;
}

.bg-image.training {
  background-image: url("https://images.unsplash.com/photo-1570440696486-5cfc676e2a68?w=1400&q=80");
}

.bg-image.band {
  background-image: url("https://images.unsplash.com/photo-1767404890803-228d5390fcd4?w=1400&q=80");
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.card img {
  height: 160px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
  margin-top: 12px;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  background: #1d1d1f;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  align-self: flex-start;
}

.form-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 340px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c6be;
  font-family: inherit;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

footer {
  background: #1a1a1d;
  color: #d4d4d8;
  padding: 40px 0;
}

footer p {
  margin-bottom: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  padding: 18px;
  display: none;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.simple-page {
  padding: 40px 0 80px;
}

.simple-page h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.simple-page h2 {
  margin-top: 24px;
  margin-bottom: 10px;
}

.contact-box {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .hero-wrap,
  .split {
    flex-direction: column;
  }

  .offset-panel {
    margin-left: 0;
  }

  .sticky-cta {
    position: relative;
    top: 0;
  }
}
