* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #0e1a1f;
  background: #f6f7f9;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 24px 0 12px;
}

.topbar-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #0d4b62;
}

.hero {
  padding: 30px 0 40px;
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(14, 26, 31, 0.08);
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 0 0 16px;
  line-height: 1.2;
}

.hero p {
  margin: 0 0 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #0e1a1f;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: #0d4b62;
  color: #fff;
  border-color: #0d4b62;
}

.btn-light {
  background: #ffffff;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 50px 0;
}

.section.alt {
  background: #ffffff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e2f2f8;
  color: #0d4b62;
  font-weight: 600;
  font-size: 0.85rem;
  width: fit-content;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  padding-left: 18px;
  position: relative;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0d4b62;
}

.panel {
  background: #f0f3f6;
  padding: 18px 20px;
  border-radius: 16px;
}

.cta-inline {
  color: #0d4b62;
  font-weight: 600;
  text-decoration: underline;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(14, 26, 31, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0d4b62;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(14, 26, 31, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd8df;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-wrapper {
  position: relative;
}

.sticky-cta {
  position: sticky;
  top: 14px;
  align-self: flex-start;
  background: #0e1a1f;
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 30px 0;
  background: #0e1a1f;
  color: #f5f5f5;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f5f5f5;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(14, 26, 31, 0.15);
  padding: 18px;
  display: none;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.page-header {
  padding: 30px 0;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 900px) {
  .topbar-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-split,
  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .hero-card,
  .split-content,
  .split-image {
    flex: 1;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .two-column {
    flex-direction: row;
  }
}
