:root {
  --ink: #1d1f2a;
  --muted: #5b6270;
  --paper: #f7f4ef;
  --accent: #2d6cdf;
  --accent-dark: #1b4ea6;
  --soft: #eef2f8;
  --warm: #f6eee3;
  --line: #d9dce3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

header {
  padding: 28px 6vw 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  background: var(--warm);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 20px 6vw 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-visual {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-frame {
  background: var(--soft);
  padding: 12px;
  border-radius: 18px;
}

.image-frame img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 50px 6vw;
}

.section h2 {
  font-size: 1.9rem;
  margin-bottom: 14px;
}

.section p {
  color: var(--muted);
}

.offset-section {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.offset-section.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  background: var(--paper);
  padding: 24px;
  border-radius: 16px;
  flex: 1 1 260px;
}

.section-background {
  color: #ffffff;
  background-size: cover;
  background-position: center;
}

.section-background .overlay {
  background: rgba(19, 25, 39, 0.68);
  padding: 50px 6vw;
}

.columns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.column {
  flex: 1 1 220px;
  border-left: 2px solid var(--line);
  padding-left: 16px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  padding: 18px;
  border-radius: 14px;
  background: var(--warm);
}

.form-wrap {
  background: var(--soft);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

form {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 6vw 60px;
  background: #0e121b;
  color: #d6d9e2;
}

.footer a {
  color: #d6d9e2;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 200px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #a8b0bf;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  display: none;
  z-index: 20;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.cookie-content {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 90px;
  background: #ffb86b;
  color: #2c1a00;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 15;
}

.simple-header {
  padding: 30px 6vw;
  background: var(--paper);
}

.simple-header h1 {
  margin: 0;
  font-size: 2.2rem;
}

.page-body {
  padding: 40px 6vw 60px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-item {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.reference-list {
  padding-left: 18px;
}

@media (max-width: 820px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    position: static;
    margin: 20px 6vw 0;
    display: inline-flex;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
  }
}


.bg-journey {
  background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80');
}

.cards-spaced {
  margin-top: 26px;
}

.section-tight {
  padding: 30px 0 0;
}

