* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1c1f;
  --muted: #5d6670;
  --accent: #3a6ea5;
  --accent-dark: #2b4f78;
  --surface: #f6f4f1;
  --surface-strong: #efe9e4;
  --overlay: #101418;
  --soft: #ffffff;
}

body {
  font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 6vw 12px;
  gap: 32px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.logo {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.tagline {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 320px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  font-size: 0.95rem;
}

.main-nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.ad-label {
  background: var(--surface-strong);
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

main {
  flex: 1;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 44px 6vw 60px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.15;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn-outline:hover {
  background: var(--accent-dark);
  color: #fff;
}

.text-link {
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent-dark);
}

.hero-media {
  flex: 1 1 280px;
  min-height: 340px;
  border-radius: 28px;
  background-color: #d1d9e0;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-badge {
  position: absolute;
  bottom: -24px;
  right: 16px;
  background: var(--soft);
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  max-width: 230px;
}

.hero-badge strong {
  display: block;
  font-size: 1.1rem;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.story-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  flex: 1 1 280px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #dbe2e8;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 46px 10vw 52px;
  background-color: #cbd3d6;
  background-image: url("https://images.unsplash.com/photo-1472289065668-ce650ac443d2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.insight-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 24, 0.55);
}

.insight-panel > * {
  position: relative;
  z-index: 1;
}

.insight-panel h2 {
  font-size: 2rem;
}

.split-canvas {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.sticky-cta {
  flex: 1 1 260px;
  background: var(--surface);
  padding: 24px;
  border-radius: 20px;
  position: sticky;
  top: 16px;
  align-self: flex-start;
}

.sticky-cta p {
  color: var(--muted);
  margin-bottom: 16px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.service-card .btn {
  margin-top: 8px;
  align-self: flex-start;
}

.form-section {
  background: var(--surface-strong);
  border-radius: 28px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cdd2d7;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial {
  flex: 1 1 220px;
  background: var(--soft);
  border: 1px solid #e5e9ed;
  padding: 18px;
  border-radius: 16px;
}

.footer {
  background: var(--overlay);
  color: #eef2f6;
  padding: 34px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #eef2f6;
  border-bottom: 1px solid rgba(238, 242, 246, 0.4);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  z-index: 10;
}

.cookie-banner p {
  flex: 1 1 240px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.simple-hero {
  padding: 48px 6vw 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.simple-hero h1 {
  font-size: 2.2rem;
}

.content-block {
  padding: 24px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 900px;
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: var(--surface);
  padding: 22px;
  border-radius: 18px;
}

.thanks-panel {
  padding: 48px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
  }

  .hero-badge {
    position: static;
    margin-top: 16px;
  }

  .sticky-cta {
    position: static;
  }
}
