* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1f23;
  --muted: #5b616b;
  --cream: #f6f2ea;
  --sand: #e9e2d6;
  --deep: #0f2b3a;
  --accent: #b3192d;
  --accent-soft: #f2d3d7;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.topbar {
  padding: 22px 24px 10px;
  border-bottom: 1px solid #e4e4e4;
}

.nav-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}

.ad-label {
  font-size: 12px;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 60px 24px;
  background-color: var(--deep);
  background-image: linear-gradient(120deg, rgba(15, 43, 58, 0.6), rgba(15, 43, 58, 0.15)),
    url("https://images.unsplash.com/photo-1653991918209-f01269c0b695?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero .hero-inner {
  max-width: 560px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 12px;
}

h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn.light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--cream);
}

.section.dark {
  background: var(--deep);
  color: #fff;
}

.section .section-title {
  font-size: 28px;
  margin-bottom: 20px;
}

.split {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 300px;
}

.image-box {
  background-color: var(--sand);
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
}

.story-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 180px;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 12px;
}

.cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.card-body {
  padding: 18px 20px 24px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.flag-bg {
  background-color: var(--deep);
  background-image: linear-gradient(180deg, rgba(15, 43, 58, 0.85), rgba(15, 43, 58, 0.35)),
    url("https://images.unsplash.com/photo-1644994573054-6b6bb9944222?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.pricing-item span {
  font-weight: 600;
}

.form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  z-index: 30;
  font-size: 14px;
}

.footer {
  padding: 40px 24px;
  background: #f4f4f4;
  font-size: 14px;
  color: var(--muted);
}

.footer .footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: none;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--ink);
}

.secondary-hero {
  min-height: 240px;
  padding: 50px 24px;
  display: flex;
  align-items: center;
  color: #fff;
  background-color: var(--deep);
  background-size: cover;
  background-position: center;
}

.about-hero {
  background-image: linear-gradient(120deg, rgba(15, 43, 58, 0.72), rgba(15, 43, 58, 0.1)),
    url("https://images.unsplash.com/photo-1717754517798-c85780832fd7?w=1400&q=80");
}

.services-hero {
  background-image: linear-gradient(120deg, rgba(15, 43, 58, 0.7), rgba(15, 43, 58, 0.1)),
    url("https://images.unsplash.com/photo-1652291959820-f81c23b616af?w=1400&q=80");
}

.contact-hero {
  background-image: linear-gradient(120deg, rgba(15, 43, 58, 0.7), rgba(15, 43, 58, 0.1)),
    url("https://images.unsplash.com/photo-1675855508131-798d42b6f1ee?w=1400&q=80");
}

.legal {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-20 {
  margin-top: 20px;
}

.list-pad {
  padding-left: 18px;
}
