.root {
  min-height: 100%;
}

:root {
  --ink: #1b1f23;
  --muted: #5f6b76;
  --accent: #1f5a74;
  --accent-strong: #0f3b4f;
  --soft: #f3f5f7;
  --sand: #efe9e2;
  --leaf: #e6efe9;
  --paper: #f8f6f2;
  --line: #d7dde3;
  --shadow: rgba(15, 20, 24, 0.08);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  color: var(--accent-strong);
}

header {
  padding: 20px 6%;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--paper);
}

main {
  display: flex;
  flex-direction: column;
  gap: 42px;
  padding-bottom: 60px;
}

.section {
  padding: 48px 6%;
}

.section.tight {
  padding-top: 32px;
  padding-bottom: 32px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel.card {
  background: #ffffff;
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: 0 14px 40px var(--shadow);
}

.panel-img {
  flex: 1 1 320px;
  min-width: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
}

.hero {
  background: var(--soft);
}

.hero .panel-img {
  background: #dde7ee;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  margin-bottom: 14px;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--leaf);
  color: #2f5742;
  font-size: 0.85rem;
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 40, 0.6);
}

.bg-story .content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card-item {
  flex: 1 1 220px;
  min-width: 220px;
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px var(--shadow);
  display: flex;
  flex-direction: column;
}

.image-box {
  background: #e6e6e6;
  overflow: hidden;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-body p {
  margin: 0;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.list span {
  color: var(--muted);
}

.form-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 32px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 26px var(--shadow);
  z-index: 10;
}

.footer {
  background: var(--ink);
  color: #f2f5f7;
  padding: 40px 6%;
}

.footer a {
  color: #f2f5f7;
}

.footer-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-col {
  flex: 1 1 200px;
}

.footer small {
  color: #c6d0d7;
}

.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 12px 26px var(--shadow);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid var(--accent);
  padding: 8px 14px;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
}

.hidden {
  display: none;
}

.page-hero {
  background: var(--paper);
}

.page-hero .panel-img {
  background: #e7e1da;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 26px var(--shadow);
  flex-wrap: wrap;
}

.pricing-row strong {
  font-size: 1.1rem;
}

.note-card {
  background: var(--leaf);
  padding: 18px;
  border-radius: 14px;
}
