* {
  box-sizing: border-box;
}

:root {
  --ink: #102027;
  --mist: #f4f7f5;
  --sun: #f3c556;
  --leaf: #2f6f5e;
  --deep: #12343b;
  --clay: #e9e2d7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 2px;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 260px;
  padding: 28px 24px;
  background: #0f2b32;
  color: #f5f8f6;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  padding: 10px 12px;
  border: 1px solid rgba(245, 248, 246, 0.4);
  border-radius: 12px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom: 1px solid var(--sun);
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-button {
  background: var(--sun);
  color: #1a1a1a;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-button:hover {
  filter: brightness(0.95);
}

.cta-outline {
  border: 1px solid var(--sun);
  color: var(--sun);
  padding: 12px 16px;
  border-radius: 999px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
}

.content {
  flex: 1;
  padding: 36px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero {
  background-image: linear-gradient(rgba(15, 43, 50, 0.5), rgba(15, 43, 50, 0.1)),
    url("https://images.unsplash.com/photo-1780445392792-556e5609c5ab?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  color: #f8faf9;
  padding: 54px 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  margin: 0;
  font-size: 2.4rem;
}

.hero p {
  max-width: 540px;
  margin: 0;
}

.section {
  padding: 28px 0;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 280px;
}

.image-frame {
  background-color: var(--clay);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  min-height: 220px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(16, 32, 39, 0.08);
}

.panel-soft {
  background: #eff4f1;
  border-radius: 22px;
  padding: 24px;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 28px rgba(16, 32, 39, 0.08);
}

.price-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--leaf);
}

.inline-link {
  color: var(--leaf);
  text-decoration: underline;
}

.highlight-section {
  background-image: linear-gradient(rgba(15, 43, 50, 0.65), rgba(15, 43, 50, 0.2)),
    url("https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 36px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.testimonial {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(16, 32, 39, 0.07);
}

.form-section {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccd7d1;
  font-size: 1rem;
  font-family: inherit;
}

.form-status {
  font-size: 0.95rem;
  color: var(--leaf);
  min-height: 20px;
}

.footer {
  padding: 30px 0 10px;
  font-size: 0.95rem;
  color: #304047;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #0f2b32;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(15, 43, 50, 0.35);
  z-index: 10;
}

.sticky-cta:hover {
  filter: brightness(1.1);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 20px 40px rgba(16, 32, 39, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--leaf);
  color: #fff;
}

.cookie-reject {
  background: #d7e0dc;
  color: #243137;
}

.legal-hero {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.legal-hero img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
}

.section-note {
  background: #fff3d6;
  padding: 16px;
  border-radius: 14px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    flex: none;
  }

  .content {
    padding: 28px 24px 80px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
