* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2a37;
  --muted: #52606d;
  --accent: #2f6f7a;
  --accent-2: #d0874c;
  --bg: #f6f4f1;
  --panel: #ffffff;
  --soft: #eef3f4;
  --shadow: 0 18px 40px rgba(28, 39, 49, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
[hidden] {
  display: none !important;
}
a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

aside {
  width: 260px;
  padding: 32px 24px;
  background: #111c24;
  color: #f5f7f8;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  background: #0b141b;
  color: #f5f7f8;
  border: 1px solid #2b3c4b;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

nav a {
  color: #f5f7f8;
  font-size: 14px;
  opacity: 0.88;
}

nav a:hover {
  opacity: 1;
}

.aside-cta {
  margin-top: auto;
  background: #f5f1ec;
  color: #111c24;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aside-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #10151a;
  font-weight: 600;
}

main {
  flex: 1;
  padding: 40px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

section {
  background: var(--panel);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero {
  background: url("images/hero.svg") center/cover no-repeat;
  color: #f5f7f8;
  min-height: 360px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 23, 30, 0.68);
  border-radius: 22px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(245, 247, 248, 0.16);
  border-radius: 999px;
  font-size: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #f5f7f8;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.split {
  display: flex;
  gap: 24px;
}

.split > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  flex: 1;
  min-width: 180px;
  background: var(--soft);
  padding: 16px;
  border-radius: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #f9fafb;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e4eaee;
}

.card img {
  border-radius: 12px;
}

.layered {
  position: relative;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -40px;
  width: 240px;
  height: 240px;
  background: url("images/bg-wave.svg") center/cover no-repeat;
  opacity: 0.6;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  background: #f5f6f7;
}

.pricing-item span {
  font-weight: 700;
  color: var(--accent);
  font-size: 18px;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-2);
  text-decoration: underline;
}

.form-block {
  background: #0f1c24;
  color: #f5f7f8;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6dde3;
  font-size: 15px;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-2);
  color: #111c24;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  z-index: 10;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.footer a {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
}

.service-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-pick {
  flex: 1;
  min-width: 180px;
  padding: 12px;
  border-radius: 14px;
  background: #f0f4f5;
  border: 1px solid #dfe7ea;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
}

.service-pick.active {
  border-color: var(--accent-2);
  background: #fff7f0;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.page-hero {
  background: #e9f0f1;
  border-radius: 22px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.page-hero img {
  width: 120px;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  aside {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #111c24;
    padding: 16px 24px;
    display: none;
  }

  nav.open {
    display: block;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .aside-cta {
    display: none;
  }

  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
