* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #12212a;
  background: #f7f8fa;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 10px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  font-size: 14px;
  color: #384a57;
}

.nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: #2d8cff;
}

.ad-label {
  font-size: 12px;
  background: #e8f2ff;
  color: #1d4d86;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 72px 0 60px;
  background: #0d2233;
  color: #fefefe;
  background-image: url("https://images.unsplash.com/photo-1546603877-4b755409ef68?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHwxfHxJbm5vd2FjamUlMjBrb211bmFsbmUlMkMlMjBrdCVDMyVCM3JlJTIwdXNwcmF3bmlhaiVDNCU4NSUyMG1pYXN0byUyMGJleiUyMGNoYW9zdS58cGx8MHwwfHx8MTc4MzU4MTQ3OXww&ixlib=rb-4.1.0&q=80&w=1080");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 23, 34, 0.68);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 14px;
}

.hero p {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #2d8cff;
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(45, 140, 255, 0.2);
}

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--light {
  background: #ffffff;
  color: #1b354a;
  border-color: #ffffff;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: #ffffff;
}

.section--image {
  background-image: url("https://images.unsplash.com/photo-1782952368487-227cc0ea7ccb?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHwzN3x8SW5ub3dhY2plJTIwa29tdW5hbG5lJTJDJTIwa3QlQzMlQjNyZSUyMHVzcHJhd25pYWolQzQlODUlMjBtaWFzdG8lMjBiZXolMjBjaGFvc3UufHBsfDB8MHx8fDE3ODM1ODE0ODB8MA&ixlib=rb-4.1.0&q=80&w=1080");
  background-size: cover;
  background-position: center;
  background-color: #1b3344;
  color: #ffffff;
  position: relative;
}

.section--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 23, 34, 0.7);
}

.section--image .container {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split__content,
.split__media {
  flex: 1 1 320px;
}

.split--reverse {
  flex-direction: row-reverse;
}

.image-frame {
  background: #dfe8ef;
  border-radius: 20px;
  overflow: hidden;
  padding: 8px;
}

.image-frame img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(16, 34, 48, 0.08);
  flex: 1 1 240px;
}

.card img {
  border-radius: 14px;
  margin-bottom: 12px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #d7dee4;
  padding-bottom: 14px;
}

.price-item span {
  font-weight: 600;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 16px 40px rgba(18, 33, 42, 0.12);
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #243848;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9d4dd;
  background: #f9fbfc;
  font-size: 15px;
  margin-bottom: 16px;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.inline-link {
  color: #2d8cff;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #182733;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(12, 20, 28, 0.2);
  z-index: 30;
}

.sticky-cta:hover {
  background: #0f1c26;
}

.footer {
  background: #0f1c26;
  color: #d5dee4;
  padding: 40px 0;
  margin-top: auto;
}

.footer a {
  color: #d5dee4;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: flex-start;
}

.disclaimer {
  font-size: 13px;
  max-width: 520px;
  color: #c4d0d8;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  color: #1a2a36;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(18, 33, 42, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  z-index: 40;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 320px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #2d8cff;
  background: #2d8cff;
  color: #ffffff;
  font-weight: 600;
}

.cookie-btn--ghost {
  background: transparent;
  color: #2d8cff;
}

.page-hero {
  padding: 56px 0 32px;
  background: #ffffff;
}

.page-hero h1 {
  margin-top: 0;
}

.page-hero .split {
  align-items: flex-start;
}

.simple-list {
  padding-left: 18px;
}

.notice {
  background: #edf6ff;
  padding: 16px;
  border-radius: 14px;
  color: #1d3b56;
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
