* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1f1f;
  --muted: #5f5f5f;
  --accent: #f4b443;
  --accent-dark: #c78717;
  --surface: #ffffff;
  --surface-alt: #f6f4f0;
  --surface-contrast: #141414;
  --line: #e4e0d7;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 4px 10px;
  background: var(--accent);
  color: #2a1b00;
  font-size: 0.85rem;
  border-radius: 999px;
}

.hero {
  margin: 0 6vw;
  min-height: 64vh;
  display: flex;
  align-items: stretch;
  border-radius: 28px;
  overflow: hidden;
  background: #ddd;
  position: relative;
}

.hero-main {
  background-image: url("https://images.pexels.com/photos/9091137/pexels-photo-9091137.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-about {
  background-image: url("https://images.pexels.com/photos/9091137/pexels-photo-9091137.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-services {
  background-image: url("https://images.pexels.com/photos/34852961/pexels-photo-34852961.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-contact {
  background-image: url("https://images.pexels.com/photos/3927386/pexels-photo-3927386.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-thanks {
  background-image: url("https://images.unsplash.com/photo-1521412644187-c49fa049e84d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-privacy {
  background-image: url("https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-gdpr {
  background-image: url("https://images.unsplash.com/photo-1507398941214-572c25f4b1dc?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-cookies {
  background-image: url("https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-terms {
  background-image: url("https://images.unsplash.com/photo-1508780709619-79562169bc64?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14, 14, 14, 0.65), rgba(14, 14, 14, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px;
  max-width: 620px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0;
}

.hero-content p {
  margin: 0;
  color: #f3efe7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #2a1b00;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-ghost {
  background: var(--surface-alt);
  color: var(--ink);
}

.section {
  padding: 72px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--surface-alt);
}

.section.dark {
  background: var(--surface-contrast);
  color: #fff;
}

.trust-background {
  background-image: linear-gradient(
      rgba(10, 10, 10, 0.86),
      rgba(10, 10, 10, 0.86)
    ),
    url("https://images.unsplash.com/photo-1483721310020-03333e577078?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-header {
  max-width: 720px;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 300px;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #d9d4c9;
}

.card-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(244, 180, 67, 0.2);
  color: #9c6a00;
  font-size: 0.85rem;
  width: fit-content;
}

.stat-row {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 160px;
  padding: 16px;
  border-radius: 14px;
  background: #201f1c;
  color: #f7f2ea;
}

.pricing-grid .card {
  border-color: #e9d7b0;
}

.pricing-grid .price {
  font-size: 1.5rem;
  font-weight: 700;
}

.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 18px;
  max-width: 620px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sticky-cta span {
  font-size: 0.9rem;
}

.footer {
  padding: 40px 6vw 60px;
  background: #0f0f0f;
  color: #f7f2ea;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f7f2ea;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 16px 18px;
  border-radius: 14px;
  max-width: 360px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.legal-wrapper {
  max-width: 860px;
}

.notice {
  padding: 16px;
  border-radius: 12px;
  background: #fff6e4;
  border: 1px solid #f1d19a;
  color: #6b4a00;
}

.muted {
  color: var(--muted);
}

.inline-link {
  text-decoration: underline;
}

details {
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 12px;
  background: var(--surface);
}

summary {
  cursor: pointer;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero {
    margin: 0 4vw;
  }

  .hero-content {
    padding: 40px 28px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
