* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1f2a;
  --muted: #5b6273;
  --accent: #2d5bd3;
  --accent-2: #0f7a62;
  --bg: #f4f5f8;
  --panel: #ffffff;
  --warm: #f2eee6;
  --cool: #eef3fb;
  --shadow: 0 16px 40px rgba(16, 24, 40, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 26px 0 12px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-title {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.95rem;
}

.nav-links a,
.inline-link {
  border-bottom: 2px solid transparent;
}

.nav-links a:focus-visible,
.nav-links a:hover,
.inline-link:focus-visible,
.inline-link:hover {
  border-bottom: 2px solid var(--accent);
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid #d6dbe6;
  border-radius: 999px;
  background: #f8f9fb;
}

.hero {
  padding: 28px 0 40px;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 32px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-column {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.panel {
  background: var(--panel);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.panel-muted {
  background: var(--cool);
}

.panel-warm {
  background: var(--warm);
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin: 0;
  line-height: 1.1;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
}

.button.secondary {
  background: #f0f3ff;
  color: var(--accent);
  border: 1px solid #c9d4ff;
}

.button:focus-visible,
.button:hover {
  opacity: 0.9;
}

.image-shell {
  background: #dfe3ea;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 260px;
}

.image-shell.compact {
  min-height: 140px;
  border-radius: 18px;
}

.avatar {
  width: 90px;
  height: 90px;
  min-height: 90px;
  border-radius: 50%;
  overflow: hidden;
  background: #dfe3ea;
}

.image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 0.92rem;
  box-shadow: var(--shadow);
}

.section {
  padding: 36px 0;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 12px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 140px;
  height: 110px;
  border-radius: 14px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-2);
  font-size: 1.05rem;
}

.insight {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #f6f8ff;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.insight-econ {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1400&q=80");
}

.panel-bg {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=800&q=80");
  background-size: cover;
  background-position: center;
  color: #f9f9fb;
  position: relative;
}

.panel-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 35, 0.7);
  border-radius: 22px;
}

.panel-bg > * {
  position: relative;
  z-index: 1;
}

.insight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18, 25, 45, 0.88), rgba(18, 25, 45, 0.55));
}

.insight-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.testimonial {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #fff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.testimonial img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-card label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6dbe6;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #0f7a62;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.footer {
  padding: 40px 0 50px;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.legal-note {
  font-size: 0.85rem;
  color: #6b7282;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: #edf1ff;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.meta-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.meta-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e4e7ef;
}

.table-row:last-child {
  border-bottom: none;
}

@media (max-width: 880px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
