@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #1a1f24;
  --muted: #5b646d;
  --accent: #1c6b5c;
  --accent-dark: #12463c;
  --surface: #f4f6f3;
  --surface-strong: #e8ece7;
  --warm: #f7f1e6;
  --radius: 20px;
  --shadow: 0 20px 60px rgba(20, 24, 28, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fbfbf9;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background-color: #dfe7e0;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 20px 0;
  background: #fff;
  border-bottom: 1px solid #e6e9e4;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.ad-disclosure {
  font-size: 0.85rem;
  color: var(--accent-dark);
  border: 1px solid #d7dfd7;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2f7f4;
}

.hero {
  color: #fff;
  padding: 110px 0 90px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 18, 16, 0.82), rgba(8, 18, 16, 0.35));
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 1.1rem;
  color: #e7efe9;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-row.spacing {
  margin-top: 28px;
}

.btn {
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(18, 70, 60, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.section {
  padding: 90px 0;
}

.section.tight {
  padding: 70px 0;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 20px;
}

.muted {
  color: var(--muted);
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.image-frame {
  background: #dfe7e0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
  height: 160px;
}

.tag {
  display: inline-flex;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.highlight {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
}

.background-panel {
  background-position: center;
  background-size: cover;
  color: #fff;
}

.overlay {
  background: rgba(12, 20, 18, 0.7);
  padding: 40px;
  border-radius: var(--radius);
}

.pricing-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid #e0e6e0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price {
  font-size: 1.6rem;
  font-weight: 600;
}

.select-btn {
  margin-top: auto;
  align-self: flex-start;
}

.selected {
  outline: 2px solid var(--accent);
}

.form-wrapper {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7ded7;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 240px;
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 50;
}

.sticky-cta span {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  background: #131b18;
  color: #e8efe9;
  padding: 50px 0;
  margin-top: auto;
}

.footer .links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer p,
.footer a {
  color: #c7d4cd;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 18px;
  max-width: 340px;
  z-index: 60;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 10px 16px;
  font-size: 0.85rem;
}

.page-hero {
  padding: 70px 0;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.page-hero .overlay {
  padding: 28px;
}

.legal {
  background: var(--surface);
}

.legal article {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 720px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 90px 0 70px;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 10px;
    justify-content: space-between;
  }
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1509395176047-4a66953fd231?w=1400&q=80");
}

.bg-network {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1470770903676-69b98201ea1c?w=1400&q=80");
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.bg-privacy {
  background-image: url("https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?w=1400&q=80");
}

.bg-gdpr {
  background-image: url("https://images.unsplash.com/photo-1501854140801-50d01698950b?w=1400&q=80");
}

.bg-cookies {
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
}

.bg-terms {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
}
