*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2430;
  background-color: #f6f7fb;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background-color: #ffffff;
  border-bottom: 1px solid #e6e9f2;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a5f6b;
}

.nav-link {
  font-size: 0.95rem;
  color: #2a3140;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: center;
  padding: 12px 6%;
  background-color: #1f2430;
  color: #ffffff;
  z-index: 10;
}

.sticky-cta a {
  background-color: #f5c542;
  color: #1f2430;
  padding: 10px 20px;
  border-radius: 24px;
  font-weight: 600;
}

.hero {
  display: flex;
  min-height: 70vh;
  padding: 80px 6%;
  color: #ffffff;
  background-color: #1f2430;
  background-image: url("https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 34, 0.6);
}

.hero-content {
  position: relative;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1;
}

.hero h1 {
  font-size: 2.8rem;
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 28px;
  background-color: #f5c542;
  color: #1f2430;
  font-weight: 600;
}

.section {
  padding: 70px 6%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background-color: #ffffff;
}

.section-title {
  font-size: 2rem;
  margin: 0;
}

.story {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.story-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-image {
  flex: 1 1 320px;
  background-color: #d7dbe4;
  border-radius: 16px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 320px;
}

.band {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px;
  background-color: #1f2430;
  color: #ffffff;
  border-radius: 20px;
}

.band a {
  color: #f5c542;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.split-box {
  flex: 1 1 240px;
  padding: 24px;
  background-color: #f0f1f6;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-image {
  display: flex;
  gap: 20px;
  align-items: center;
}

.inline-image .image-frame {
  flex: 0 0 240px;
  background-color: #cfd6df;
  border-radius: 16px;
  overflow: hidden;
}

.inline-image img {
  width: 240px;
  height: 200px;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(31, 36, 48, 0.08);
}

.testimonial .avatar {
  width: 100%;
  height: 160px;
  background-color: #d9dde6;
  border-radius: 14px;
  overflow: hidden;
}

.testimonial img {
  width: 100%;
  height: 160px;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.benefit-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.benefit-card .card-image {
  background-color: #d6dae4;
}

.benefit-card img {
  width: 100%;
  height: 180px;
}

.benefit-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing {
  background-color: #1b202c;
  background-image: url("https://images.unsplash.com/photo-1503602642458-232111445657?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  border-radius: 24px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 22, 32, 0.78);
}

.pricing-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1;
}

.price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 220px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.price-card span {
  font-size: 1.3rem;
  font-weight: 700;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 320px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 14px 30px rgba(31, 36, 48, 0.08);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d4d8e2;
  font-size: 1rem;
}

.form-panel button {
  padding: 12px;
  border-radius: 14px;
  border: none;
  background-color: #1f2430;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.form-aside {
  flex: 1 1 260px;
  background-color: #f0f2f7;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.footer {
  margin-top: auto;
  padding: 30px 6%;
  background-color: #0f131b;
  color: #d3d7e2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer small {
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  inset: auto 20px 20px 20px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 12px 24px rgba(31, 36, 48, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 20px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background-color: #1f2430;
  color: #ffffff;
}

.cookie-reject {
  background-color: #e8ebf2;
  color: #1f2430;
}

.page-hero {
  padding: 60px 6%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-hero h1 {
  margin: 0;
  font-size: 2.4rem;
}

.simple-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.simple-image {
  flex: 1 1 280px;
  background-color: #d7dbe4;
  border-radius: 18px;
  overflow: hidden;
}

.simple-image img {
  width: 100%;
  height: 280px;
}

.content-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-content {
  padding: 60px 6%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  list-style: none;
}
