* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #151a22;
  --muted: #5b6677;
  --bg: #f5f6f8;
  --surface: #ffffff;
  --accent: #2b4cff;
  --accent-dark: #1b2fb8;
  --soft: #e6e9f0;
  --shadow: 0 18px 40px rgba(21, 26, 34, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--soft);
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav .menu {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.nav .ad-label {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--soft);
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-top: 24px;
}

.hero .hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
}

.hero .hero-media {
  flex: 1;
  min-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #cfd6e6;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.section {
  margin-top: 72px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  background: var(--surface);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.panel.light {
  background: #eef2ff;
}

.inline-media {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background-color: #d6dce8;
  min-height: 260px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.4px;
  color: var(--muted);
}

.headline {
  font-size: 2.3rem;
  line-height: 1.2;
}

.subhead {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--surface);
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
}

.service-row .service-info {
  flex: 1.6;
}

.service-row .service-price {
  flex: 0.8;
  text-align: right;
  font-weight: 700;
  font-size: 1.1rem;
}

.service-row .service-action {
  flex: 0.6;
  text-align: right;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  color: var(--muted);
  margin-top: 12px;
}

.image-card-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.image-card {
  flex: 1;
  min-width: 220px;
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-card .image-wrap {
  height: 180px;
  background-color: #cfd6e6;
}

.image-card .image-body {
  padding: 18px;
}

.highlight-banner {
  display: flex;
  gap: 24px;
  align-items: center;
  background: #0f172a;
  color: #fff;
  padding: 28px;
  border-radius: 18px;
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.highlight-banner .text {
  flex: 1.5;
}

.highlight-banner .inline-link {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

.form-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--soft);
  font-size: 1rem;
  background: #fff;
}

.footer {
  margin-top: 80px;
  padding: 32px 24px;
  background: #101521;
  color: #c7cfdd;
}

.footer .footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer a {
  color: #c7cfdd;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta button {
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal {
  max-width: 900px;
  margin: 32px auto;
  background: var(--surface);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.legal h1 {
  margin-bottom: 12px;
}

.simple-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.simple-card {
  flex: 1;
  min-width: 220px;
  background: var(--surface);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

@media (max-width: 860px) {
  .hero,
  .split,
  .service-row,
  .highlight-banner {
    flex-direction: column;
  }

  .service-row .service-price,
  .service-row .service-action {
    text-align: left;
  }
}
