* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f1d1a;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow: hidden;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw;
  background: #f7f4f0;
  position: relative;
  z-index: 2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: #1f1d1a;
  color: #f7f4f0;
}

.cta-primary {
  background: #1f1d1a;
  color: #f7f4f0;
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.cta-secondary {
  padding: 10px 18px;
  border: 1px solid #1f1d1a;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sticky-cta {
  position: sticky;
  top: 12px;
  margin: 0 6vw;
  display: flex;
  justify-content: flex-end;
  z-index: 3;
}

.sticky-cta a {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section.alt {
  background: #fffdf9;
}

.section.dark {
  background: #1f1d1a;
  color: #f7f4f0;
}

.section-header {
  max-width: 520px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1rem;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 280px;
  min-width: 250px;
}

.panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.panel.dark {
  background: #2e2a25;
  color: #f7f4f0;
}

.floating-card {
  position: relative;
  top: -36px;
  margin-left: auto;
  max-width: 420px;
}

.floating-card img {
  border-radius: 16px;
}

.asym-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.asym-blocks .block {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
}

.asym-blocks .block:nth-child(2n) {
  transform: translateY(16px);
}

.asym-blocks .block img {
  border-radius: 12px;
  margin-bottom: 14px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.pricing-card {
  flex: 1 1 230px;
  border-radius: 20px;
  padding: 24px;
  background: #f2ede6;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 220px;
}

.pricing-card h3 {
  font-size: 1.2rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.inline-cta {
  text-decoration: underline;
  font-weight: 600;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c7c1b8;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fffdf9;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.footer {
  padding: 50px 6vw;
  background: #1f1d1a;
  color: #f7f4f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.footer small {
  display: block;
  margin-top: 14px;
  color: #c4bdb2;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: none;
  z-index: 10;
}

.cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: #1f1d1a;
  color: #ffffff;
}

.cookie-reject {
  background: #f2ede6;
  color: #1f1d1a;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.hero-text {
  flex: 1 1 300px;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
}

.hero-text p {
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.hero-media {
  flex: 1 1 280px;
  position: relative;
}

.hero-media img {
  border-radius: 22px;
}

.hero-media .overlay-card {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  max-width: 220px;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f2ede6;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}

.note {
  font-size: 0.9rem;
  color: #8d857b;
}

.page-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.content-wrap {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.thanks-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .sticky-cta {
    position: static;
    justify-content: flex-start;
  }

  .hero-text h1 {
    font-size: 2.1rem;
  }
}
