* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1f24;
  --muted: #5e6a75;
  --accent: #1f6feb;
  --accent-dark: #184aa1;
  --soft: #f4f6f9;
  --warm: #fff7ec;
  --line: #d7dde4;
  --card: #ffffff;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: #ffffff;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.site-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-tag {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
}

.ad-disclosure {
  font-size: 0.82rem;
  color: #1d3557;
  background: var(--warm);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #f0d9b5;
  max-width: 260px;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 48px 0;
}

.hero-copy {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero-image {
  flex: 1 1 50%;
}

.image-wrap {
  background-color: #e6ebf1;
  border-radius: 16px;
  overflow: hidden;
}

.hero-image .image-wrap {
  height: 360px;
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 36px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 52%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split .visual {
  flex: 1 1 48%;
}

.visual .image-wrap {
  height: 280px;
}

.section-band {
  background: var(--soft);
  padding: 40px 24px;
  border-radius: 18px;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-band.energy-band {
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.section-band.energy-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 25, 38, 0.55);
  border-radius: 18px;
}

.section-band.energy-band > * {
  position: relative;
  z-index: 1;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card .image-wrap {
  height: 160px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
}

.btn.secondary {
  background: #0f172a;
}

.muted {
  color: var(--muted);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 16px;
}

.form-section {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #0f172a;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.16);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  flex: 1;
}

.hidden {
  display: none;
}

.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .hero-image .image-wrap,
  .visual .image-wrap {
    height: 240px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
