*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0f1114;
  --card: #171b20;
  --muted: #8a95a3;
  --text: #f3f5f7;
  --accent: #6ce4b6;
  --accent-2: #7fb2ff;
  --line: #262c33;
  --warm: #f2e6d8;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent-2);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

header {
  display: flex;
  justify-content: center;
  padding: 26px 20px 10px;
}

.nav-wrap {
  width: 100%;
  max-width: 1180px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 4px 8px;
  border-radius: 999px;
}

.cta-link {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 20px 60px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 17, 20, 0.92), rgba(15, 17, 20, 0.5));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: 44px;
  margin: 0;
  max-width: 760px;
}

.hero p {
  max-width: 620px;
  color: var(--warm);
}

.btn {
  background: var(--accent);
  color: #0c0f12;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.secondary {
  background: transparent;
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
}

.section {
  padding: 70px 20px;
  display: flex;
  justify-content: center;
}

.section.alt {
  background: #12161c;
}

.section-inner {
  width: 100%;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split .media {
  flex: 1;
}

.media-wrap {
  background: #1e242b;
  border-radius: 18px;
  padding: 10px;
}

.media-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.price {
  font-size: 20px;
  color: var(--accent);
  font-weight: 600;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.form-box {
  background: #141920;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  background: #0f1318;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
}

footer {
  padding: 50px 20px 90px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
}

.footer-inner {
  max-width: 1180px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #11171d;
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sticky-cta button {
  background: var(--accent-2);
  color: #0b0d10;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #151a21;
  border: 1px solid var(--line);
  padding: 16px 18px;
  border-radius: 14px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-actions button.primary {
  background: var(--accent);
  color: #0b0d10;
  border: none;
}

.simple-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.notice {
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: #151a20;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 34px;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
  }
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.hero-thanks {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
}

.hero-privacy {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
}

.hero-gdpr {
  background-image: url("https://images.unsplash.com/photo-1496181133206-80ce9b88a853?w=1400&q=80");
}

.hero-cookies {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
}

.hero-terms {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
}
