* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1d20;
  --muted: #5a6068;
  --accent: #1d4ed8;
  --accent-soft: #e8efff;
  --surface: #f7f6f3;
  --warm: #efe7da;
  --deep: #0f172a;
  --highlight: #fbbf24;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 6vw 16px;
  gap: 32px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.brand strong {
  font-size: 26px;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.nav a:hover {
  border-color: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 24px 6vw 64px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(251, 191, 36, 0.2), transparent 60%);
  z-index: -1;
}

.hero-main {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.1;
  max-width: 740px;
}

.hero p {
  max-width: 640px;
  font-size: 18px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn.secondary {
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 29, 32, 0.12);
}

.hero-media {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  align-items: stretch;
}

.hero-media img {
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  height: 320px;
  object-fit: cover;
}

.floating-card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  max-width: 280px;
  align-self: flex-end;
}

.floating-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.floating-card p {
  font-size: 14px;
  color: var(--muted);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 6vw;
  position: relative;
}

.section.alt {
  background: var(--surface);
}

.section.warm {
  background: var(--warm);
}

.section.deep {
  background: var(--deep);
  color: #fff;
}

.section .section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 680px;
}

.section h2 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.2;
}

.section p {
  color: var(--muted);
  font-size: 16px;
}

.section.deep p {
  color: rgba(255, 255, 255, 0.72);
}

.offset-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.offset-row {
  display: flex;
  gap: 20px;
  align-items: stretch;
  flex-wrap: wrap;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.offset-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.offset-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.offset-media {
  flex: 1 1 260px;
  border-radius: 18px;
  overflow: hidden;
}

.offset-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 2px solid var(--highlight);
  padding-left: 18px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-item span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 160px;
  background: rgba(255, 255, 255, 0.16);
  padding: 18px;
  border-radius: 16px;
}

.stat strong {
  font-size: 22px;
  display: block;
}

.stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(27, 29, 32, 0.12);
  background: #fff;
}

.service-row header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: baseline;
}

.service-row h3 {
  font-size: 18px;
}

.service-row strong {
  font-size: 18px;
  color: var(--accent);
}

.service-row ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  max-width: 560px;
}

.form-panel label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(27, 29, 32, 0.2);
  font-size: 15px;
  font-family: inherit;
}

.form-panel button {
  align-self: flex-start;
}

.inline-link {
  font-weight: 600;
  color: var(--accent);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border-left: 4px solid var(--highlight);
}

.testimonial span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  display: flex;
  justify-content: flex-end;
  padding: 0 6vw 24px;
  z-index: 2;
}

.sticky-cta a {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(29, 78, 216, 0.2);
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.footer small {
  color: rgba(255, 255, 255, 0.65);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  font-weight: 600;
}

.cookie-actions button.accept {
  background: var(--ink);
  color: #fff;
}

.page-title {
  padding: 24px 6vw 12px;
  font-size: clamp(30px, 4vw, 48px);
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 12px 6vw 52px;
}

.content-block ul {
  list-style: disc;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding: 12px 6vw 60px;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.contact-card span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .hero-main {
    flex: 1;
  }

  .hero-media {
    flex: 1;
  }

  .offset-row {
    flex-wrap: nowrap;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-row {
    flex: 1 1 calc(50% - 18px);
  }
}
