:root {
  --ink: #0f1a2b;
  --muted: #5b6678;
  --paper: #f7f5f1;
  --sand: #efe9df;
  --sky: #e4edf6;
  --accent: #2f5d7c;
  --accent-dark: #1e3e55;
  --leaf: #5a7d6c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

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

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

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

.hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 65vh;
}

.hero .panel {
  flex: 1 1 320px;
  padding: 48px 6vw;
}

.hero .panel.media {
  background-color: #d9e2eb;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero .panel.media .overlay {
  background: rgba(15, 26, 43, 0.4);
  color: #fff;
  padding: 36px;
  border-radius: 18px;
  max-width: 420px;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 0 0 12px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.button:focus,
.button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.section {
  padding: 72px 6vw;
}

.section.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

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

.section.split .copy,
.section.split .media {
  flex: 1 1 320px;
}

.section.split .media {
  background-color: #dfe6ee;
  border-radius: 20px;
  overflow: hidden;
}

.section.alt {
  background: var(--sky);
}

.section.deep {
  background: var(--sand);
}

.section.bg-context {
  background-color: #d9dee3;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section.bg-context .copy {
  background: rgba(15, 26, 43, 0.6);
  padding: 32px;
  border-radius: 18px;
}

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

.panel-box {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 24px rgba(15, 26, 43, 0.08);
}

.panel-box.sky {
  background: #e3e8ef;
}

.panel-box.sand {
  background: #f1ede4;
}

.panel-box.neutral {
  background: #e8eef4;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(15, 26, 43, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .media {
  background-color: #e0e6ed;
  border-radius: 12px;
  overflow: hidden;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.price-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  border: 1px solid #e1e6ee;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.form-wrap {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 14px 30px rgba(15, 26, 43, 0.08);
}

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

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4dbe5;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
}

footer {
  padding: 48px 6vw;
  background: #0f1a2b;
  color: #d2d8e0;
}

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

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

.footer-col a {
  color: #d2d8e0;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(15, 26, 43, 0.2);
  padding: 8px;
  z-index: 10;
}

.sticky-cta button {
  border: none;
  background: var(--leaf);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta button:hover,
.sticky-cta button:focus {
  background: #466255;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(15, 26, 43, 0.15);
  z-index: 9;
}

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

.cookie-banner button {
  border-radius: 999px;
  padding: 8px 16px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.cookie-banner button.secondary {
  background: transparent;
  color: var(--accent);
}

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

.bg-journey {
  background-color: #dde6db;
  background-image: url("https://images.unsplash.com/photo-1471879832106-c7ab9e0cee23?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-journey .copy {
  background: rgba(15, 26, 43, 0.58);
  padding: 28px;
  border-radius: 18px;
}

.bg-network {
  background-color: #d7dfe6;
  background-image: url("https://images.unsplash.com/photo-1503602642458-232111445657?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-network .copy {
  background: rgba(15, 26, 43, 0.58);
  padding: 28px;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .nav-split {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
