* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f5f2;
  --ink: #1b1f2a;
  --muted: #4f5b66;
  --accent: #2f5cff;
  --accent-dark: #2037a6;
  --soft: #e6e9f2;
  --panel: #ffffff;
  --warm: #f2ebe3;
  --forest: #0f2d2f;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 18px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.ad-label {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 260px;
}

.hero {
  display: flex;
  gap: 28px;
  padding: 40px 0 20px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: var(--panel);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(27, 31, 42, 0.08);
}

.hero-visual {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.hero-visual .img-wrap {
  border-radius: 22px;
  overflow: hidden;
  background: #dfe5f3;
  min-height: 360px;
}

.hero-visual .note {
  background: var(--warm);
  padding: 16px;
  border-radius: 14px;
  align-self: flex-end;
  max-width: 280px;
}

.section {
  padding: 44px 0;
}

.section.alt {
  background: var(--panel);
}

.section.deep {
  background: var(--forest);
  color: #f5f7fb;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
}

.panel.card {
  background: var(--panel);
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(27, 31, 42, 0.08);
}

.offset-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.offset-card {
  flex: 1 1 240px;
  background: var(--panel);
  padding: 20px;
  border-radius: 16px;
  transform: translateY(-12px);
  box-shadow: 0 14px 30px rgba(27, 31, 42, 0.08);
}

.offset-card:nth-child(2) {
  transform: translateY(16px);
}

.offset-card:nth-child(3) {
  transform: translateY(-4px);
}

.service-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 40px rgba(27, 31, 42, 0.08);
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--soft);
  font-size: 0.82rem;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 12px 20px;
  border-radius: 999px;
  background: transparent;
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
}

.img-wrap {
  background: #dde3ef;
  border-radius: 14px;
  overflow: hidden;
}

.form-section {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 320px;
  background: var(--panel);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(27, 31, 42, 0.08);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9d2e3;
  font: inherit;
  background: #fff;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 20;
}

.sticky-cta button {
  background: #0f2d2f;
  color: #f5f7fb;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(15, 45, 47, 0.3);
}

.footer {
  margin-top: auto;
  padding: 30px 0 40px;
  background: #12141b;
  color: #d7dbea;
}

.footer-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-block {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  width: min(340px, 90%);
  box-shadow: 0 18px 40px rgba(27, 31, 42, 0.18);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 999px;
  background: var(--soft);
}

.cookie-actions .accept {
  background: var(--accent);
  color: white;
}

.bg-secure {
  background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-overlay {
  background: rgba(15, 45, 47, 0.82);
  padding: 32px;
  border-radius: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight {
  background: var(--warm);
  padding: 20px;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .form-section {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
