* {
  box-sizing: border-box;
}

:root {
  color: #1b1b1b;
  background: #f5f4f1;
  accent-color: #2f5bff;
}

body {
  margin: 0;
  font-family: "Inter", "Arial", sans-serif;
  background: #f5f4f1;
  color: #1b1b1b;
  line-height: 1.6;
}

a {
  color: #1b1b1b;
  text-decoration: underline;
}

.site-header {
  background: #f5f4f1;
  border-bottom: 1px solid #dedbd3;
  padding: 20px 6vw;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  background: #1b1b1b;
  color: #f5f4f1;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 64px 6vw;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section.dense {
  padding: 40px 6vw;
}

.split-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-media {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  background: #ffffff;
}

.section-accent {
  background: #eef1ff;
}

.section-contrast {
  background: #1b1b1b;
  color: #f5f4f1;
}

.section-contrast a {
  color: #f5f4f1;
}

.section-bg {
  background-size: cover;
  background-position: center;
}

.bg-focus {
  background-image: url("https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?w=1400&q=80");
}

.image-frame {
  width: 100%;
  border-radius: 24px;
  padding: 10px;
  background: #dcd7cf;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame-hero {
  background: #d9e2ff;
  height: 420px;
}

.frame-medium {
  background: #f2e9da;
  height: 360px;
}

.frame-card {
  background: #e6ecea;
  height: 220px;
}

.frame-legal {
  background: #e6e1d8;
  height: 320px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.button,
button {
  background: #2f5bff;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.secondary-button {
  background: #ffffff;
  color: #1b1b1b;
  border: 1px solid #1b1b1b;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  flex: 1 1 220px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card-image {
  width: 100%;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}

.stat-block {
  background: #ffffff;
  color: #1b1b1b;
  border-radius: 16px;
  padding: 16px;
  flex: 1 1 140px;
}

.inline-testimonial {
  background: #ffffff;
  border-left: 4px solid #2f5bff;
  padding: 16px;
  margin-top: 16px;
}

.form-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d0ccc3;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1b1b1b;
  color: #f5f4f1;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
}

.site-footer {
  background: #f0ede7;
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #3b3b3b;
}

#cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 10;
}

#cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 12px 0;
}

.hero-title {
  font-size: 2.6rem;
  margin: 0 0 12px 0;
}

.small-note {
  font-size: 0.9rem;
  color: inherit;
}
