* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1f2a2e;
  background: #f6f7f5;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  padding: 20px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #f1efe9;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.ad-label {
  background: #1f2a2e;
  color: #fff;
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.hero {
  padding: 60px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: #f6f7f5;
}

.hero-top {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-copy h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero-copy p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button,
.button-link {
  border: none;
  background: #1f2a2e;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.alt,
.button-link.alt {
  background: #d2dcd6;
  color: #1f2a2e;
}

.hero-media {
  flex: 0.9;
  display: flex;
  align-items: stretch;
}

.image-frame {
  background: #dbe3e6;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  display: flex;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zig-section {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 50px 6vw;
  align-items: center;
}

.zig-section.reverse {
  flex-direction: row-reverse;
}

.zig-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.zig-content h2,
.zig-content h3 {
  margin: 0;
}

.zig-content p {
  margin: 0;
  line-height: 1.6;
}

.panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(16, 20, 26, 0.08);
}

.card-row {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card h4 {
  margin: 0;
}

.card p {
  margin: 0;
  line-height: 1.5;
}

.split-highlight {
  padding: 40px 6vw;
  background: #1f2a2e;
  color: #f8f7f2;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.bg-panel {
  background-color: #283338;
  color: #f7f7f4;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}

.bg-leak-a {
  background-image: url("https://images.unsplash.com/photo-1682540963112-facad29c3fa2?w=1400&q=80");
}

.bg-leak-b {
  background-image: url("https://images.unsplash.com/photo-1768321902691-082df3e874cf?w=1400&q=80");
}

.bg-leak-c {
  background-image: url("https://images.unsplash.com/photo-1773517458766-82ddcbeef548?w=1400&q=80");
}

.split-highlight .panel {
  background: #f8f7f2;
  color: #1f2a2e;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 14px;
  background: #f1efe9;
}

.service-item span {
  font-weight: 600;
}

.form-section {
  padding: 50px 6vw 70px;
  background: #eef0ec;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-shell {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.form-shell form {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}

label {
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #c8d1d3;
  font-size: 0.95rem;
  font-family: inherit;
}

.footer {
  padding: 30px 6vw 40px;
  background: #1b2326;
  color: #e6e9e3;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #e6e9e3;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.notice {
  font-size: 0.85rem;
  line-height: 1.5;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #3c5c56;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(16, 20, 26, 0.25);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: #1f2a2e;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(16, 20, 26, 0.18);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.cookie-accept {
  background: #1f2a2e;
  color: #fff;
}

.cookie-reject {
  background: #d2dcd6;
  color: #1f2a2e;
}

.simple-hero {
  padding: 50px 6vw 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.simple-hero h1 {
  margin: 0;
}

.content-block {
  padding: 30px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-block p {
  margin: 0;
  line-height: 1.6;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 16px;
}

.thanks-box {
  background: #fff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(16, 20, 26, 0.1);
  max-width: 520px;
}

@media (max-width: 900px) {
  .hero-top,
  .zig-section,
  .split-highlight,
  .form-shell {
    flex-direction: column;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
