* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1f23;
  --muted: #5b6772;
  --line: #e5e8ec;
  --brand: #1f5c4a;
  --accent: #f2c14e;
  --soft: #f7f4ef;
  --deep: #0f1c23;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 20px 0 10px;
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  background: #fffaf0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero {
  padding: 70px 0 40px;
  background: var(--soft);
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero-copy p {
  color: var(--muted);
  max-width: 520px;
}

.hero-image {
  flex: 1 1 340px;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #e7efe9;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.cta-row.spaced {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--brand);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.flow-section {
  padding: 70px 0;
}

.flow-section.alt {
  background: #f9fafb;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-text h2,
.flow-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.split-text p {
  color: var(--muted);
}

.image-frame {
  flex: 1 1 320px;
  min-height: 260px;
  border-radius: 16px;
  overflow: hidden;
  background: #e2e6ea;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 840px;
}

.storyline p {
  color: var(--muted);
}

.inline-cta {
  color: var(--brand);
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.card-image {
  min-height: 200px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-body p {
  color: var(--muted);
}

.tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.trust-item {
  flex: 1 1 240px;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  color: var(--muted);
}

.testimonial {
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 12px;
  background: #ffffff;
  color: var(--muted);
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 260px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep);
}

.reveal-note {
  color: var(--muted);
  max-width: 640px;
}

.service-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-button {
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 12px 16px;
  background: #ffffff;
  cursor: pointer;
}

.service-button.is-active {
  border-color: var(--brand);
  color: var(--brand);
  background: #f1f6f4;
}

.form-wrap {
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--deep);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.sticky-cta button {
  background: #ffffff;
  color: var(--deep);
  border-radius: 999px;
  padding: 8px 14px;
  border: none;
  cursor: pointer;
}

.footer {
  margin-top: auto;
  background: #0f1419;
  color: #e6e9ed;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.footer small {
  color: #cbd3da;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-header {
  padding: 60px 0 30px;
  background: #f6f8f9;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-content {
  padding: 50px 0 70px;
}

.page-content.alt {
  background: #f9fafb;
}

.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #ffffff;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
}

.simple-image {
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  background: #e4e9ee;
  margin-top: 24px;
}

.notice-box {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
