* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f23;
  background: #f7f6f3;
}

a {
  color: #1b3a57;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e4e1db;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  gap: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: #7a6e60;
}

nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cta-button,
.secondary-button,
.inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 24px;
  border: 1px solid #1b3a57;
  background: #1b3a57;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.secondary-button {
  background: transparent;
  color: #1b3a57;
}

.inline-cta {
  padding: 6px 10px;
  border-radius: 16px;
  background: #efe6d8;
  color: #3b2d1f;
  border: 1px solid #d7c6ae;
  font-size: 13px;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 0 80px;
}

.split {
  display: flex;
  gap: 30px;
  padding: 0 6%;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .visual {
  flex: 1;
  min-width: 0;
}

.panel {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(22, 29, 37, 0.08);
}

.panel h1,
.panel h2,
.panel h3 {
  margin-top: 0;
}

.hero-visual {
  border-radius: 22px;
  overflow: hidden;
  background-color: #d9d9d9;
  min-height: 320px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 14px;
  background: #e9edf1;
  color: #30465a;
  font-size: 12px;
  font-weight: 600;
}

.two-col {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.metric {
  flex: 1;
  min-width: 160px;
  padding: 16px;
  background: #f0ede7;
  border-radius: 14px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(22, 29, 37, 0.08);
}

.service-card .img-wrap {
  border-radius: 16px;
  overflow: hidden;
  background-color: #c9c2b6;
  height: 150px;
}

.service-card img {
  width: 100%;
  height: 100%;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.choice-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #d8d2c7;
  border-radius: 16px;
  padding: 14px;
  background: #f7f4ee;
  flex: 1 1 180px;
}

.choice-card input {
  accent-color: #1b3a57;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfc8bc;
  font-size: 14px;
}

.section-banner {
  border-radius: 24px;
  padding: 28px;
  background-color: #d7d8d2;
  color: #1b1f23;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
}

.banner-finance {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
}

.banner-atelier {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1400&q=80");
}

.banner-vision {
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1400&q=80");
}

.banner-trust {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(22, 29, 37, 0.08);
}

.footer {
  background: #11161c;
  color: #e5e7eb;
  padding: 40px 6% 80px;
}

.footer a {
  color: #f5f0e8;
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1b3a57;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999;
}

.sticky-cta button {
  background: #ffffff;
  color: #1b3a57;
  border: none;
  padding: 8px 12px;
  border-radius: 16px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 20px rgba(22, 29, 37, 0.18);
  max-width: 320px;
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 14px;
  border: 1px solid #1b3a57;
  padding: 8px 12px;
  cursor: pointer;
  background: #1b3a57;
  color: #ffffff;
}

.cookie-actions .reject {
  background: transparent;
  color: #1b3a57;
}

.legal-content {
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-content h1 {
  margin: 0;
}

.table-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px;
  background: #ffffff;
  border-radius: 12px;
}

.table-row strong {
  min-width: 180px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
