* {
  box-sizing: border-box;
}

:root {
  --ink: #0f1b2d;
  --muted: #4b5b73;
  --accent: #2a5bd7;
  --accent-soft: #d8e4ff;
  --surface: #f4f6fb;
  --warm: #f7efe7;
  --dark: #111827;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

header {
  padding: 1.5rem 5vw 0.5rem 5vw;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--surface);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

nav a {
  padding-bottom: 0.1rem;
  border-bottom: 2px solid transparent;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 5vw;
}

.hero-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  background: var(--surface);
  padding: 2.5rem;
  border-radius: 1.5rem;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-top: 0;
}

.hero-copy p {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-image {
  flex: 1 1 340px;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  background: #dfe6f5;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.hero-card {
  margin-top: -3rem;
  margin-left: 12vw;
  background: var(--dark);
  color: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  max-width: 420px;
}

.hero-card p {
  margin: 0.6rem 0 0 0;
  color: #cbd5f0;
}

.section {
  padding: 0 5vw;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
  background: var(--warm);
  padding: 2rem;
  border-radius: 1.2rem;
}

.asym-text.alt {
  background: var(--surface);
}

.asym-image {
  flex: 1 1 280px;
  border-radius: 1.2rem;
  overflow: hidden;
  background: #e6edf8;
  min-height: 240px;
}

.floating-note {
  margin-top: -2rem;
  margin-right: 5vw;
  background: #ffffff;
  border: 1px solid #e5e9f2;
  padding: 1.5rem;
  border-radius: 1rem;
  max-width: 380px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.service-card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid #e4e8f1;
  border-radius: 1.2rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 220px;
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 0.9rem;
}

.image-frame {
  background: #e6edf8;
  border-radius: 0.9rem;
  overflow: hidden;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.cta-row.spaced {
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
}

.btn.dark {
  background: var(--dark);
  color: #ffffff;
  border-color: var(--dark);
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
}

.panel {
  background: var(--surface);
  padding: 2rem;
  border-radius: 1.5rem;
  color: var(--ink);
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
}

form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 0.75rem 0.85rem;
  border-radius: 0.8rem;
  border: 1px solid #d7dde9;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  font-size: 0.9rem;
  color: var(--muted);
}

.split-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  background: #0f1b2d;
  color: #ffffff;
  padding: 2.5rem;
  border-radius: 1.6rem;
}

.bg-horizon {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #dbe5f8;
  color: #ffffff;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #dbe5f8;
  color: #ffffff;
}

.split-banner p {
  color: #d0d7e6;
}

.divider {
  height: 1px;
  background: #e5e9f2;
  margin: 2.5rem 0;
}

.list-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--muted);
}

.footer {
  padding: 3rem 5vw;
  background: var(--dark);
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer a {
  color: #e5e7eb;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-block {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #ffffff;
  border: 1px solid #d7dde9;
  border-radius: 1rem;
  padding: 1.2rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  z-index: 50;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 5.5rem;
  z-index: 40;
}

.sticky-cta a {
  box-shadow: 0 12px 30px rgba(42, 91, 215, 0.35);
}

.page-hero {
  padding: 1.5rem 5vw 0;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 0.6rem;
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.image-strip figure {
  flex: 1 1 240px;
  background: #e6edf8;
  border-radius: 1rem;
  overflow: hidden;
}

.image-strip img {
  width: 100%;
  height: 220px;
}

.note {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 1rem 1.2rem;
}

.plain-list {
  padding-left: 1.2rem;
}

.plain-list li {
  margin-bottom: 0.5rem;
}

.legal-content {
  max-width: 900px;
}

.legal-content h2 {
  margin-top: 2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 900px) {
  .hero-card {
    margin-left: 0;
  }

  .sticky-cta {
    right: 1rem;
  }
}
