* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c232b;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6%;
  background: #ffffff;
  border-bottom: 1px solid #e4e0da;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand .name {
  font-size: 1.4rem;
  font-weight: 700;
}

.brand .tagline {
  font-size: 0.9rem;
  color: #5a6a78;
}

.ad-label {
  font-size: 0.85rem;
  color: #7a4d1c;
  background: #f2e6d7;
  padding: 6px 12px;
  border-radius: 20px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 6%;
  background: #111419;
  color: #f5f2ed;
}

.hero .hero-text,
.hero .hero-visual {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero .hero-text h1 {
  font-size: 2.7rem;
  line-height: 1.1;
}

.hero .hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 30px;
  background: #f1c26b;
  color: #1c232b;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #f1c26b;
  color: #f1c26b;
}

.section {
  padding: 60px 6%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel h2 {
  font-size: 2rem;
  line-height: 1.2;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #ece6df;
}

.price {
  font-weight: 700;
  color: #2c4d6b;
}

.image-wrap {
  background: #ded7ce;
  border-radius: 16px;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: auto;
}

.highlight {
  background: #f0ece7;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: rgba(18, 21, 26, 0.72);
  background-blend-mode: multiply;
  color: #f7f5f2;
}

.bg-ethics {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: rgba(24, 28, 33, 0.72);
  background-blend-mode: multiply;
  color: #f7f5f2;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 700;
  color: #7a4d1c;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #e3ded6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d9d2c7;
  font-size: 1rem;
  background: #fdfbf9;
}

.footer {
  margin-top: auto;
  padding: 36px 6%;
  background: #101418;
  color: #e5e1db;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.footer small {
  color: #b7b0a8;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  background: #1c232b;
  color: #f5f2ed;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  width: calc(100% - 40px);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.legal-grid .panel {
  flex: 1 1 260px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e3ded6;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero .hero-text h1 {
    font-size: 2.2rem;
  }
}
