:root {
  --bg: #f5f6f8;
  --ink: #1c2430;
  --muted: #51606f;
  --brand: #1f6feb;
  --brand-dark: #184fa3;
  --accent: #0f8a6f;
  --paper: #ffffff;
  --soft: #e6ebf0;
  --highlight: #f3f8ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--paper);
  border-bottom: 1px solid var(--soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--soft);
  padding: 6px 10px;
  border-radius: 16px;
  background: var(--highlight);
}

.hero {
  background: #dde6f7;
}

.hero-inner {
  display: flex;
  gap: 28px;
  padding: 70px 0;
  align-items: stretch;
}

.hero-copy,
.hero-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-visual {
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  min-height: 320px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 16px;
}

.hero p {
  color: var(--muted);
  margin: 0 0 20px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  background: var(--brand);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: var(--accent);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
}

.section {
  padding: 64px 0;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .media {
  flex: 1;
}

.media-frame {
  background-color: #d7dfe8;
  border-radius: 20px;
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.section h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-top: 0;
}

.tag {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--highlight);
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 12px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: var(--paper);
  border-radius: 18px;
  border: 1px solid var(--soft);
  padding: 18px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.service-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-wrap {
  background: var(--paper);
  border-radius: 22px;
  border: 1px solid var(--soft);
  padding: 28px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid .field {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--soft);
  font-size: 15px;
}

.form-actions {
  margin-top: 16px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--brand-dark);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  z-index: 10;
}

.highlight {
  background: #ecf4ff;
}

.bg-context {
  background: #e9f0f7;
  background-image: url("https://images.unsplash.com/photo-1473172707857-f9e276582ab6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-context .text {
  background: rgba(15, 20, 30, 0.6);
  padding: 24px;
  border-radius: 20px;
}

.testimonials {
  background: #f7f4fb;
  background-image: url("https://images.unsplash.com/photo-1497493292307-31c376b6e479?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.testimonials .card {
  background: rgba(255, 255, 255, 0.92);
}

.footer {
  background: #1a2230;
  color: #e6ebf0;
  padding: 40px 0;
}

.footer a {
  color: #b5c7e6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.legal {
  font-size: 13px;
  color: #c7d2e5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--paper);
  border: 1px solid var(--soft);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(20, 30, 50, 0.2);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-inner,
  .split {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
[hidden] {
  display: none !important;
}