@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --ink: #1b1d1f;
  --muted: #5a5f66;
  --accent: #1e5b82;
  --accent-soft: #e4eff6;
  --sand: #f5f1ea;
  --card: #ffffff;
  --line: #d8dde3;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #faf9f7;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

header {
  padding: 24px 6vw;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav__brand {
  font-weight: 700;
  font-size: 1.1rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav__ad {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 0 6vw 120px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split__text,
.split__media {
  flex: 1;
  min-width: 0;
}

.split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.split__media {
  border-radius: 18px;
  overflow: hidden;
  background: #d8dde3;
  min-height: 320px;
  position: relative;
}

.split__media--hero {
  min-height: 420px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(27, 29, 31, 0.65), rgba(27, 29, 31, 0));
}

.hero__media {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero__content h1 {
  font-size: clamp(2.3rem, 2.8vw, 3.4rem);
  margin: 0;
}

.hero__content p {
  font-size: 1.1rem;
  color: #e6e9ee;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: white;
}

.btn--ghost {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.section-card {
  background: var(--card);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.section-bg {
  position: relative;
  border-radius: 24px;
  padding: 32px;
  color: white;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.65);
}

.section-bg > * {
  position: relative;
  z-index: 1;
}

.section-bg--strategy {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 18px;
  background: var(--card);
  padding: 20px;
  border: 1px solid var(--line);
}

.card__image {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  background: #d8dde3;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  font-weight: 600;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-row {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 20px;
  border-radius: 18px;
  background: var(--sand);
}

.service-row__image {
  flex: 0 0 220px;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  background: #d8dde3;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > * {
  flex: 1 1 200px;
}

.footer {
  padding: 60px 6vw 80px;
  background: #111418;
  color: #e2e6eb;
}

.footer a {
  color: #e2e6eb;
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer__col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #b6bcc4;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 6vw;
  background: rgba(17, 20, 24, 0.92);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  gap: 16px;
  z-index: 10;
}

.sticky-cta button {
  background: #f4b942;
  color: #1a1b1d;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 90px;
  max-width: 340px;
  background: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 12;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.page-hero {
  padding: 50px 6vw 0;
}

.page-hero__panel {
  display: flex;
  gap: 30px;
  align-items: center;
}

.page-hero__panel.reverse {
  flex-direction: row-reverse;
}

.page-hero__image {
  flex: 1;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background: #d8dde3;
}

.page-hero__content {
  flex: 1;
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 6vw 80px;
}

@media (max-width: 900px) {
  .split,
  .service-row,
  .page-hero__panel {
    flex-direction: column;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
