* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2a2e;
  --muted: #54636a;
  --sand: #f4f1ea;
  --sun: #f5b940;
  --sky: #dce9f2;
  --leaf: #dff2e3;
  --slate: #24323a;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 6vw 0;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 18px;
  background: var(--sand);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  transform: translateY(-2px);
  background: var(--sky);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 320px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 24px 6vw 0;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: var(--leaf);
  border-radius: 28px;
  align-self: flex-start;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero-text p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-button,
.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  font-weight: 600;
  border: 1px solid var(--ink);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cta-button {
  background: var(--ink);
  color: #fff;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #11191d;
}

.cta-link {
  background: transparent;
}

.cta-link:hover {
  transform: translateY(-2px);
  background: var(--sand);
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
  min-height: 360px;
  border-radius: 32px;
  overflow: hidden;
  background: #cad7df;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-card {
  position: absolute;
  bottom: 18px;
  left: -24px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  max-width: 240px;
}

.section {
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1 1 300px;
}

.split .image-frame {
  flex: 1 1 320px;
  min-height: 280px;
  border-radius: 26px;
  overflow: hidden;
  background: #d9e2e8;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.offset-band {
  background: var(--slate);
  color: #fff;
  padding: 36px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offset-band .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: 18px;
  font-size: 0.9rem;
}

.floating-panel {
  margin-top: -48px;
  background: #fff;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--sand);
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 18px;
  width: 100%;
  height: 160px;
}

.price-tag {
  font-weight: 700;
  color: var(--slate);
}

.highlight {
  background: var(--sky);
  padding: 28px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #fff;
  border: 1px solid #e4e8eb;
  padding: 16px 18px;
  border-radius: 18px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing .card {
  background: #fff;
  border: 1px solid #e6ecef;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 320px;
  background: var(--leaf);
  border-radius: 26px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.92rem;
}

.form-panel select,
.form-panel input,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #c9d3d8;
  font-size: 1rem;
  font-family: inherit;
}

.form-panel button {
  cursor: pointer;
}

.form-aside {
  flex: 1 1 280px;
  background: #f7f3ea;
  border-radius: 26px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-aside img {
  border-radius: 18px;
  width: 100%;
  height: 200px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-end;
  margin: 0 6vw 24px auto;
  background: var(--slate);
  color: #fff;
  padding: 12px 16px;
  border-radius: 28px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.sticky-cta a {
  background: #fff;
  color: var(--slate);
  padding: 8px 16px;
  border-radius: 18px;
}

.sticky-cta a:hover {
  transform: translateY(-2px);
  background: var(--sun);
  color: #1c1b18;
}

.site-footer {
  background: var(--slate);
  color: #fff;
  padding: 36px 6vw 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.footer-links a {
  padding: 6px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid #d7dde1;
  border-radius: 20px;
  padding: 18px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 16px;
  padding: 8px 14px;
  border: 1px solid var(--slate);
  background: var(--slate);
  color: #fff;
  font-weight: 600;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--slate);
}

.legal-page {
  padding: 24px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.legal-page ul {
  padding-left: 18px;
}

@media (max-width: 900px) {
  .hero-card {
    left: 18px;
  }

  .sticky-cta {
    margin: 0 6vw 24px 6vw;
  }
}
