*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a37;
  background-color: #f7f7f4;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  gap: 24px;
  background-color: #fdfdfc;
  border-bottom: 1px solid #e6e5e0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.3px;
}

.brand span {
  font-size: 13px;
  color: #5f6b7a;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background-color: #e8f2ff;
  color: #1b3c73;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 6vw 32px;
  background: #101c2b;
  color: #ffffff;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 56px);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #ffd166;
  color: #1b1b1b;
}

.button.secondary {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.button.ghost {
  background-color: transparent;
  border: 1px solid #1f2a37;
  color: #1f2a37;
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section.alt {
  background-color: #ffffff;
}

.section.dark {
  background-color: #101c2b;
  color: #ffffff;
}

.section.image-back {
  background-image: url("https://images.unsplash.com/photo-1484704849700-f032a568e944?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.section.image-back::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(13, 24, 38, 0.65);
}

.section.image-back .section-layer {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .visual {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  background-color: #dde5ee;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-hero {
  height: 360px;
  background-color: #20354f;
}

.frame-story {
  height: 320px;
  background-color: #e1e6ee;
}

.frame-warm {
  height: 320px;
  background-color: #f3efe7;
}

.frame-dark {
  height: 300px;
  background-color: #1a2a3d;
}

.frame-form {
  height: 340px;
  background-color: #e4edf6;
}

.frame-tech {
  height: 300px;
  background-color: #dae1eb;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 16px;
  background-color: #f1f4f9;
}

.card-image {
  border-radius: 12px;
  overflow: hidden;
  background-color: #dfe6ef;
  height: 160px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card.alt {
  background-color: #fff7ea;
}

.card strong {
  font-size: 18px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.stat {
  flex: 1 1 200px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #ecebea;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border-left: 4px solid #ffd166;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.price-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 26px;
  font-weight: 700;
  color: #0b3b65;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d1d9e6;
  font-size: 15px;
}

.form-note {
  font-size: 14px;
  color: #1f3a4d;
}

.form-error {
  color: #c2362b;
}

.footer {
  padding: 40px 6vw 60px;
  background-color: #0b1726;
  color: #d3dbe6;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer a {
  color: #d3dbe6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-col {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #ffffff;
  padding: 12px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 10;
}

.sticky-cta span {
  font-size: 13px;
  color: #1f2a37;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 11;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.wide-image {
  min-height: 280px;
}

.muted {
  color: #5f6b7a;
}

.inline-link {
  color: #1b65c9;
  text-decoration: underline;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  max-width: 560px;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    justify-content: center;
  }
}
