@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&display=swap");

:root {
  --ink: #1b1b1b;
  --muted: #5b616a;
  --accent: #2c6f6d;
  --accent-2: #edb458;
  --surface: #f4f3ef;
  --surface-2: #e7ecf0;
  --deep: #0f2a33;
  --shadow: rgba(15, 42, 51, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 10px;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.nav-ad {
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--accent-2);
  padding-bottom: 2px;
}

.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

.main-nav a,
.inline-link {
  border-bottom: 1px solid transparent;
}

.main-nav a:hover,
.inline-link:hover {
  border-bottom: 1px solid var(--accent);
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 30px;
  padding: 60px 0 30px;
}

.hero-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 1;
  background: var(--surface);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  box-shadow: 0 16px 40px var(--shadow);
}

.media {
  background-color: #d9dde2;
  border-radius: 20px;
  overflow: hidden;
}

.media.hero {
  min-height: 420px;
}

.media.inline-260 {
  min-height: 260px;
}

.media.inline-300 {
  min-height: 300px;
}

.media.card-160 {
  height: 160px;
}

.media.page-hero {
  min-height: 220px;
}

.media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 46px);
  margin: 0;
}

.hero p {
  color: var(--muted);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 14px 24px rgba(44, 111, 109, 0.25);
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 24px;
  background: var(--deep);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 10;
}

.section {
  padding: 56px 0;
}

.section.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.offset {
  margin-left: auto;
  width: min(1000px, 92%);
}

.section-title {
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 12px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 30px rgba(15, 42, 51, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.layered {
  background: var(--surface);
  border-radius: 32px;
  padding: 32px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 13px;
}

.form-wrap {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 30px rgba(15, 42, 51, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5d9dd;
  font-family: inherit;
  font-size: 14px;
}

.two-col {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 220px;
}

.footer {
  background: var(--deep);
  color: #f5f5f5;
  padding: 42px 0 60px;
}

.footer .footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer a {
  color: #f5f5f5;
  border-bottom: 1px solid transparent;
}

.footer a:hover {
  border-bottom: 1px solid #f5f5f5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.muted {
  color: var(--muted);
}

.banner {
  background: var(--surface-2);
  padding: 26px;
  border-radius: 22px;
}

.bg-section {
  background-color: #1f2a33;
  background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f5f5f5;
  border-radius: 32px;
}

.bg-section .muted {
  color: #dbe3e8;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.page-hero {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 40px 0 20px;
}

.page-hero .media {
  flex: 1;
  min-height: 220px;
}

.page-hero .page-hero-text {
  flex: 1.2;
}

.footer small {
  color: #cdd7dc;
}

@media (max-width: 900px) {
  .hero,
  .section.split,
  .page-hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 14px;
  }
}
