* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1d21;
  background-color: #f6f4f0;
  line-height: 1.6;
}

a {
  color: #2b4eff;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background: #ffe9c7;
  color: #6a3d00;
  padding: 6px 10px;
  border-radius: 999px;
  width: fit-content;
}

.hero {
  position: relative;
  color: #ffffff;
  padding: 90px 0 110px;
  background-color: #1d2430;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 15, 25, 0.55);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0;
}

.hero p {
  font-size: 18px;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ffd166;
  color: #1a1d21;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.secondary {
  background: #ffffff;
  color: #1a1d21;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #1f2430;
  color: #ffffff;
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 34px);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.img-frame {
  background-color: #d8d2c5;
  border-radius: 18px;
  overflow: hidden;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(15, 18, 25, 0.08);
}

.card.dark {
  background: #2b3445;
  color: #ffffff;
}

.badge {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
}

.highlight {
  background: #f1efe8;
  border-radius: 16px;
  padding: 18px;
}

.mt-24 {
  margin-top: 24px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 14px;
  background: #ffffff;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c7cbd3;
  font-size: 14px;
}

.inline-cta {
  font-weight: 600;
}

.testimonial {
  background: #f8f2e7;
  border-radius: 16px;
  padding: 16px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #1a1d21;
  color: #ffffff;
  padding: 12px 0;
  z-index: 10;
}

.sticky-cta .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer {
  padding: 40px 0 60px;
  background: #0f131a;
  color: #d8dee9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 25px rgba(20, 22, 30, 0.18);
  max-width: 320px;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 70px 0;
  background-color: #262c36;
  color: #ffffff;
  position: relative;
  background-size: cover;
  background-position: center;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 28, 36, 0.62);
}

.page-hero .container {
  position: relative;
}

.page-hero.about {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
}

.page-hero.services {
  background-image: url("https://images.unsplash.com/photo-1487017159836-4e23ece2e4cf?w=1400&q=80");
}

.page-hero.contact {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.page-hero.thanks {
  background-image: url("https://images.unsplash.com/photo-1522075469751-3a6694fb2f61?w=1400&q=80");
}

.page-hero.privacy {
  background-image: url("https://images.unsplash.com/photo-1483058712412-4245e9b90334?w=1400&q=80");
}

.page-hero.gdpr {
  background-image: url("https://images.unsplash.com/photo-1722503585827-169e7b20c3f6?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHw0N3x8UmFua2luZyUzQSUyMDUlMjBtb2JpbG55Y2glMjBhcGxpa2FjamklMkMlMjBrdCVDMyVCM3JlJTIwZ3dpYXpkeSUyMHd5YmllcmFqJUM0JTg1JTIwZGxhJTIwcHJvZHVrdHl3bm8lQzUlOUJjaS58cGx8MHwwfHx8MTc4MjcyMTk3NXww&ixlib=rb-4.1.0&q=80&w=1080");
}

.page-hero.cookies {
  background-image: url("https://images.unsplash.com/photo-1508780709619-79562169bc64?w=1400&q=80");
}

.page-hero.terms {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
}

.legal-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
