* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #585858;
  --accent: #3b6df2;
  --accent-dark: #2a4aa6;
  --soft: #f5f3ef;
  --sand: #efe9df;
  --mist: #f7f8fb;
  --night: #121212;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0;
  background: #fff;
}

.topbar .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.ad-label {
  font-size: 0.85rem;
  color: #7a2a2a;
  padding: 4px 10px;
  border: 1px solid #e3c8c8;
  border-radius: 999px;
  background: #fff5f5;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  padding: 120px 0 90px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 12, 18, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.2;
}

.hero p {
  font-size: 1.05rem;
  color: #f1f1f1;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.primary:hover,
.btn.primary:focus {
  transform: translateY(-2px);
}

.btn.secondary {
  background: #fff;
  color: #111;
}

.btn.secondary:hover,
.btn.secondary:focus {
  transform: translateY(-2px);
}

.section {
  padding: 80px 0;
}

.section.soft {
  background: var(--soft);
}

.section.mist {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.section.dark {
  background: var(--night);
  color: #fff;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .visual {
  flex: 1 1 280px;
  background: #e8e8e8;
  border-radius: 24px;
  overflow: hidden;
}

.split .visual img {
  width: 100%;
  height: 100%;
}

.overlap-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card .card-image {
  background: #ececec;
  border-radius: 16px;
  overflow: hidden;
}

.card .card-image img {
  width: 100%;
  height: 180px;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  background: #ecf0ff;
  color: var(--accent-dark);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.testimonial strong {
  color: var(--accent-dark);
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.pricing-item {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}

form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d6d6;
  font-size: 0.95rem;
  width: 100%;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.sticky-cta button {
  background: var(--accent-dark);
  color: #fff;
}

.footer {
  padding: 40px 0 60px;
  background: #0f1115;
  color: #d0d4dc;
}

.footer a {
  color: #d0d4dc;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer .refs {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #9aa0aa;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  width: min(340px, 92%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  z-index: 30;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 70px 0 40px;
  background: var(--mist);
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.page-content {
  padding: 50px 0 80px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.mini-visual {
  background: #eee;
  border-radius: 18px;
  overflow: hidden;
}

.mini-visual img {
  width: 100%;
  height: 220px;
}

.hidden {
  display: none;
}

@media (max-width: 780px) {
  .sticky-cta {
    right: 50%;
    transform: translateX(50%);
  }

  .hero {
    padding: 100px 0 70px;
  }
}
