* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1f23;
  --muted: #5a6572;
  --accent: #1f6feb;
  --accent-dark: #154aa8;
  --bg: #f6f3ef;
  --soft: #ffffff;
  --sand: #efe7dd;
  --graphite: #2c2f36;
  --highlight: #dfe9fb;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.image-frame {
  background-color: #d6d2cc;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.wrap {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--soft);
  border-bottom: 1px solid #e1d9cf;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1,
.brand h2 {
  font-size: 22px;
  letter-spacing: 0.6px;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 320px;
  text-align: right;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--graphite);
  color: #fff;
}

.hero-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 24px;
}

.hero-copy {
  flex: 1.1;
  padding: 54px 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: 42px;
  line-height: 1.2;
}

.hero-copy p {
  color: #d9e1ef;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #fff;
}

.hero-visual {
  flex: 0.9;
  background-color: #2f3945;
  display: flex;
  align-items: stretch;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.floating-note {
  position: absolute;
  right: 36px;
  bottom: -32px;
  background: var(--soft);
  color: var(--ink);
  padding: 20px 24px;
  border-radius: 20px;
  width: min(320px, 90%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.floating-note strong {
  display: block;
  margin-bottom: 6px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  background: var(--soft);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.dark {
  background: var(--graphite);
  color: #f5f7fb;
}

.panel .image-frame {
  border-radius: 18px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: stretch;
  background: var(--soft);
  border-radius: 20px;
  padding: 20px;
}

.service-card .image-frame {
  width: 160px;
  height: 120px;
  border-radius: 16px;
  background-color: #d1ccc5;
}

.service-card img {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  margin-bottom: 4px;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: var(--accent-dark);
}

.accent-block {
  background: var(--highlight);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-bg-one {
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  padding: 40px;
  color: #ffffff;
}

.section-bg-two {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  padding: 40px;
  color: #ffffff;
}

.accent-block .image-frame {
  border-radius: 18px;
  background-color: #c7d7f5;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: var(--sand);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  display: flex;
  flex-direction: row;
  gap: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  align-items: center;
}

.step-index {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  color: var(--muted);
}

.form-wrap {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: stretch;
}

.form-card {
  flex: 1.2;
  background: var(--soft);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  font-weight: 600;
  font-size: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d0c7bc;
  border-radius: 12px;
  font-size: 14px;
}

.form-card textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  flex: 0.8;
  background: var(--graphite);
  color: #f6f7fb;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  background: #ffffff;
  padding: 40px 0;
  border-top: 1px solid #e2d9d0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.notice {
  background: var(--sand);
  padding: 18px;
  border-radius: 16px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: min(360px, 90%);
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  width: auto;
}

.plain-page {
  background: var(--soft);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plain-page h1 {
  font-size: 30px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-list-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.page-title {
  font-size: 34px;
}

.visual-banner {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  background: var(--highlight);
  border-radius: 22px;
  padding: 24px;
}

.visual-banner .image-frame {
  width: 200px;
  height: 140px;
  border-radius: 18px;
  background-color: #c6d6f4;
}

.visual-banner img {
  width: 100%;
  height: 100%;
}

.small-print {
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero-inner,
  .split,
  .form-wrap,
  .visual-banner,
  .service-card {
    flex-direction: column;
  }

  .hero-copy {
    padding: 40px 28px;
  }

  .floating-note {
    position: static;
    margin: 20px auto 0;
  }

  .sticky-cta {
    position: static;
  }
}
