* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #13171b;
  --slate: #3c4751;
  --stone: #6d7a84;
  --mist: #eef1f4;
  --cloud: #f6f7f9;
  --accent: #b88a44;
  --accent-dark: #9a6f2f;
  --forest: #0f1a20;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cloud);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  object-fit: cover;
  display: block;
  max-width: 100%;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

header {
  background: #fff;
  padding: 18px 0;
  border-bottom: 1px solid #e2e6ea;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 18px;
}

.nav-links a:hover {
  background: var(--mist);
}

.ad-label {
  font-size: 12px;
  color: var(--stone);
  text-align: right;
  max-width: 220px;
}

.hero {
  margin: 40px 0 60px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
}

.panel-card {
  background: #fff;
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 18px 35px rgba(15, 26, 32, 0.08);
}

.panel-card h1,
.panel-card h2 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.panel-card p {
  color: var(--slate);
  margin-bottom: 18px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary:hover {
  background: rgba(184, 138, 68, 0.08);
}

.image-frame {
  background: #dfe5ea;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  min-height: 320px;
}

.section {
  margin: 60px 0;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

.section p {
  color: var(--slate);
  margin-bottom: 16px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 26px rgba(15, 26, 32, 0.08);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.card-body p {
  margin-bottom: 12px;
  color: var(--stone);
}

.card-body .price {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.layered {
  background: linear-gradient(120deg, #f8f5f0, #e7edf2);
  padding: 40px;
  border-radius: 24px;
}

.steps {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 200px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
}

.testimonials {
  background: var(--forest);
  color: #fff;
  padding: 50px 40px;
  border-radius: 26px;
}

.testimonials p {
  color: #d8dee3;
}

.form-wrap {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 26, 32, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 1px solid #d5dbe0;
  border-radius: 12px;
  font-size: 15px;
}

footer {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid #dde2e6;
  color: var(--stone);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  box-shadow: 0 16px 28px rgba(15, 26, 32, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 30px rgba(15, 26, 32, 0.15);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.notice {
  background: #f1f4f7;
  padding: 20px;
  border-radius: 18px;
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

@media (max-width: 960px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
