* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1f;
  --muted: #5f6370;
  --bg: #f7f4f0;
  --surface: #ffffff;
  --accent: #2a5c7a;
  --accent-soft: #d7e4ec;
  --warm: #f0e6dc;
  --shadow: rgba(16, 24, 40, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
button:hover {
  text-decoration: underline;
}

header {
  padding: 28px 6vw 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  background: var(--accent);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.section {
  padding: 64px 6vw;
}

.section-tight {
  padding: 40px 6vw;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 48px 6vw 72px;
}

.hero-copy {
  flex: 1 1 46%;
  padding-right: 12px;
}

.hero-copy h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-copy p {
  color: var(--muted);
  margin: 0 0 22px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.hero-visual {
  flex: 1 1 54%;
  position: relative;
  transform: translateY(14px);
}

.image-frame {
  background: var(--warm);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 46px var(--shadow);
}

.image-frame.large {
  height: 420px;
}

.image-frame.medium {
  height: 320px;
}

.image-frame.small {
  height: 220px;
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-band {
  background-color: var(--accent-soft);
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.insight-band .overlay {
  background: rgba(20, 37, 48, 0.72);
  padding: 54px 6vw;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.insight-stat {
  flex: 1 1 200px;
}

.asym-split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.asym-split.reverse {
  flex-direction: row-reverse;
}

.asym-split .text-block {
  flex: 1 1 48%;
}

.asym-split .visual-block {
  flex: 1 1 42%;
  transform: translateY(-20px);
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background: var(--surface);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.highlight-panel {
  background: var(--surface);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 36px var(--shadow);
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.model-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.model-card {
  flex: 1 1 220px;
  background: var(--warm);
  padding: 20px;
  border-radius: 16px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px var(--shadow);
  z-index: 20;
}

.page-title {
  margin: 0 0 12px;
  font-size: 2.2rem;
}

.page-hero {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.page-hero .text-block {
  flex: 1 1 50%;
}

.page-hero .visual-block {
  flex: 1 1 40%;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #ccd2d8;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

footer {
  padding: 48px 6vw 80px;
  background: #f0ebe5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 18px 40px var(--shadow);
  max-width: 320px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.hidden {
  display: none;
}

.content-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-visual {
    transform: none;
  }

  .asym-split {
    flex-direction: column;
  }
}
