* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #101522;
  --ink-soft: #2a3242;
  --paper: #f6f3ee;
  --mist: #e5e1da;
  --accent: #2343d9;
  --accent-soft: #e2e7ff;
  --gold: #b48937;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  overflow: hidden;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.nav {
  padding: 24px 0 12px;
}

.nav-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  padding: 8px 12px;
  background: var(--mist);
  border-radius: 999px;
  font-size: 0.82rem;
}

.hero {
  padding: 28px 0 56px;
}

.hero-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-media {
  flex: 1 1 380px;
  position: relative;
}

.hero-card {
  background: white;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(16, 21, 34, 0.12);
  transform: translateY(30px);
}

.hero-image {
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  border: none;
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: var(--ink);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: white;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 360px;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.offset-block {
  background: var(--accent-soft);
  border-radius: 22px;
  padding: 28px;
  transform: translateX(24px);
}

.floating-panel {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 40px rgba(16, 21, 34, 0.1);
  transform: translateY(-24px);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(16, 21, 34, 0.08);
}

.card-body {
  padding: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.quote {
  flex: 1 1 240px;
  background: white;
  border-radius: 18px;
  padding: 18px;
  border-left: 4px solid var(--gold);
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  background: white;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--mist);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

form {
  flex: 1 1 320px;
  background: white;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(16, 21, 34, 0.08);
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid #c9c5be;
  font-size: 1rem;
}

.form-aside {
  flex: 1 1 240px;
  background: #101522;
  color: white;
  border-radius: 18px;
  padding: 22px;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
}

.bg-hero {
  background: #0d1323;
}

.bg-intro {
  background: #171d2a;
}

.bg-story {
  background: #dad4c9;
}

.bg-insight {
  background: #0f1a2b;
}

.bg-trust {
  background: #1f2435;
}

.bg-benefits {
  background: #cbbca5;
}

.bg-pricing {
  background: #191f2c;
}

.bg-form {
  background: #2a3242;
}

.bg-about {
  background: #101b28;
}

.bg-services {
  background: #2c2a24;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--ink);
  color: white;
  border: none;
  cursor: pointer;
}

.footer {
  padding: 32px 0 48px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: white;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(16, 21, 34, 0.2);
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: white;
  border-radius: 18px;
  padding: 20px;
}

.page-hero {
  padding: 40px 0 20px;
}

.legal {
  padding-bottom: 64px;
}

.background-band {
  background: var(--ink);
  color: white;
  padding: 24px 0;
}

.background-band .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.highlight {
  background: var(--gold);
  color: white;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
