* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3ee;
  --text: #1f1f1f;
  --muted: #5e5a55;
  --accent: #3d5a6c;
  --accent-soft: #d8e2e8;
  --card: #ffffff;
  --line: #ded7cf;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: underline;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 6vw;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.brand-tag {
  font-size: 0.9rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.section {
  padding: 60px 6vw;
}

.section.compact {
  padding: 40px 6vw;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  background-color: #2d3338;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
}

.cta-button,
.ghost-button {
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
}

.cta-button {
  background: var(--accent);
  color: #fff;
}

.ghost-button {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-cta {
  font-weight: 600;
}

.img-frame {
  background-color: #d8d4ce;
  border-radius: 12px;
  overflow: hidden;
  padding: 8px;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.layered {
  background: var(--accent-soft);
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(31, 31, 31, 0.15);
  pointer-events: none;
}

.highlight {
  background: #fff7e6;
  padding: 12px 16px;
  border-left: 4px solid var(--accent);
}

.form-panel {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 5;
}

.footer {
  padding: 40px 6vw;
  background: #fff;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: none;
  z-index: 10;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.bg-focus {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-color: #2f3b44;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=1400&q=80");
  background-color: #394451;
}

.bg-pricing {
  background-image: url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=1400&q=80");
  background-color: #4d4a46;
}

.hero,
.bg-trust,
.bg-pricing {
  background-size: cover;
  background-position: center;
}

.notice {
  font-size: 0.9rem;
  color: var(--muted);
}

.page-hero {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin-top: 0;
}

.page-image {
  max-width: 520px;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
  }
}
