* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f4f1;
  --ink: #1b1b1b;
  --muted: #5b5b5b;
  --accent: #1f6f5c;
  --accent-soft: #e3efe9;
  --sand: #f2e8da;
  --rose: #f6e9ee;
  --slate: #e8edf2;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background-color: #e6e2db;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

header {
  padding: 24px 0 8px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 40px 0 20px;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-media {
  flex: 0.9;
  position: relative;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  background: var(--sand);
}

.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -12px;
  background: var(--accent);
  color: white;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  max-width: 200px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  border: none;
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: white;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 48px 0;
}

.bg-training {
  background-image: url("https://images.unsplash.com/photo-1523475472560-d2df97ec485c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-focus {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.overlay-panel {
  background: rgba(255, 255, 255, 0.92);
  padding: 24px;
  border-radius: 18px;
}

.section-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.muted {
  color: var(--muted);
}

.asym-block {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.asym-block.reverse {
  flex-direction: row-reverse;
}

.asym-card {
  flex: 1;
  background: white;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.asym-image {
  flex: 1.1;
  border-radius: 18px;
  overflow: hidden;
  background: var(--slate);
}

.metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.metric {
  flex: 1;
  min-width: 220px;
  background: var(--rose);
  padding: 18px;
  border-radius: 16px;
}

.metric svg {
  width: 26px;
  height: 26px;
}

.testimonial {
  display: flex;
  gap: 18px;
  align-items: center;
  background: white;
  padding: 18px;
  border-radius: 16px;
}

.testimonial img {
  width: 84px;
  height: 84px;
  border-radius: 14px;
}

.services-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 18px;
  background: white;
  border-radius: 16px;
  padding: 18px;
  align-items: center;
}

.service-card img {
  width: 180px;
  height: 140px;
  border-radius: 12px;
}

.service-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.form-panel {
  flex: 1;
  background: white;
  padding: 24px;
  border-radius: 16px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-fields label {
  font-weight: 600;
}

.form-fields input,
.form-fields select,
.form-fields textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfcfcf;
}

.sidebar-panel {
  flex: 0.8;
  background: var(--sand);
  padding: 22px;
  border-radius: 16px;
}

.footer {
  padding: 28px 0 40px;
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: white;
  padding: 18px;
  border-radius: 14px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 96px;
  background: var(--accent);
  color: white;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  display: none;
  cursor: pointer;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-points {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.point {
  flex: 1;
  min-width: 220px;
  background: var(--slate);
  padding: 16px;
  border-radius: 14px;
}

.page-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
}

.page-hero img {
  width: 240px;
  height: 180px;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .hero,
  .asym-block,
  .form-wrap,
  .page-hero {
    flex-direction: column;
  }

  .hero-badge {
    position: static;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
