* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1f24;
  --muted: #54606e;
  --accent: #2f5bff;
  --soft: #f4f6fa;
  --sand: #f7f2ea;
  --mint: #e8f4f1;
  --slate: #111827;
  --card: #ffffff;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.image-box {
  background-color: #e6eefc;
  padding: 6px;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.site-header {
  padding: 28px 0 18px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #e6e9ef;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 32px;
  margin-top: 24px;
}

.hero-text {
  flex: 1.1;
  padding: 24px 0;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-text p {
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid var(--ink);
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.btn.primary {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.hero-visual {
  flex: 0.9;
  position: relative;
}

.hero-visual .image-frame {
  background: #d9e4ff;
  padding: 12px;
  border-radius: 24px;
  height: 100%;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.floating-tag {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 12px 30px rgba(12, 16, 32, 0.12);
  width: 210px;
}

.section {
  margin-top: 90px;
}

.section-title {
  font-size: 26px;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  max-width: 720px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  min-width: 280px;
}

.split .visual {
  flex: 0.9;
  min-width: 260px;
  background: var(--sand);
  padding: 16px;
  border-radius: 20px;
}

.highlight {
  background: var(--soft);
  padding: 32px;
  border-radius: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.highlight .note {
  flex: 1.2;
}

.highlight .metrics {
  flex: 0.8;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid #e4e7ee;
  border-radius: 18px;
  padding: 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

.card img {
  border-radius: 14px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.storyline {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.storyline .panel {
  flex: 1 1 280px;
  background: var(--mint);
  padding: 22px;
  border-radius: 18px;
}

.offset-block {
  margin-left: 70px;
}

.form-wrap {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.form-side {
  flex: 0.9;
  background: var(--sand);
  padding: 22px;
  border-radius: 18px;
}

.form-area {
  flex: 1.1;
  background: #ffffff;
  border: 1px solid #e5e7ef;
  border-radius: 18px;
  padding: 24px;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #d8dde6;
  padding: 12px;
  border-radius: 14px;
  background: #ffffff;
}

.service-option input {
  margin-top: 4px;
}

label span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cdd3df;
  font-size: 15px;
  font-family: inherit;
}

.form-status {
  color: #8b3d00;
  font-size: 14px;
}

.testimonial {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.testimonial img {
  border-radius: 16px;
}

.banner {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  padding: 40px;
  color: #ffffff;
  position: relative;
  background-color: #1f2937;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.55);
  border-radius: 26px;
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.footer {
  margin-top: 90px;
  padding-top: 36px;
  border-top: 1px solid #e4e7ee;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer strong {
  color: var(--ink);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #d9dde6;
  padding: 16px 18px;
  border-radius: 14px;
  max-width: 360px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 90;
}

.legal-block {
  background: var(--soft);
  padding: 24px;
  border-radius: 16px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  border: 1px solid #e1e5ee;
  border-radius: 16px;
  padding: 18px;
  background: #ffffff;
}

.image-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.image-strip .strip-item {
  flex: 1 1 200px;
  background: #e6eefc;
  padding: 10px;
  border-radius: 16px;
}

@media (max-width: 860px) {
  .hero {
    flex-direction: column;
  }

  .offset-block {
    margin-left: 0;
  }

  .floating-tag {
    position: static;
    margin-top: 16px;
  }
}
