* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1f24;
  background: #f6f7fb;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: #2056d8;
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 48px 0 80px;
}

.page-wrap {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e4e7f0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand strong {
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: #6a6f7d;
}

.nav-toggle {
  display: none;
  background: #eff2ff;
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  font-weight: 600;
  color: #1f2a44;
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1;
  background: #dfe5f5;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
}

.split .media img {
  width: 100%;
  height: 100%;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecf1ff;
  color: #2947b6;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  line-height: 1.15;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: #2056d8;
  color: #ffffff;
}

.btn.secondary {
  background: #f0f3ff;
  color: #1f2a44;
}

.note {
  font-size: 0.95rem;
  color: #5b6172;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e6e9f2;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .card-media {
  background: #e7ebf7;
  border-radius: 14px;
  overflow: hidden;
  height: 160px;
}

.card .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f1c3f;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #eef2f9;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.form-wrap {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #e6e9f2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6dbe8;
  font-size: 1rem;
}

.sticky-cta {
  background: #101a38;
  color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 24px;
}

.sticky-cta .btn {
  background: #ffb547;
  color: #2d2005;
}

.highlight {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e6e9f2;
  padding: 20px;
}

.section-bg {
  background: #0f1c3f;
  color: #ffffff;
  border-radius: 22px;
  padding: 28px;
}

.section-bg.bg-studio {
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.section-bg.bg-studio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 38, 0.72);
  border-radius: 22px;
}

.section-bg.bg-studio .content {
  position: relative;
  z-index: 1;
}

.section-bg a {
  color: #ffe2b0;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  background: #0c1226;
  color: #f1f2f7;
  padding: 32px 0 48px;
}

.footer a {
  color: #c4d1ff;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #d9deed;
  border-radius: 18px;
  padding: 16px 20px;
  display: none;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(12, 18, 38, 0.12);
  z-index: 20;
  width: min(720px, 92%);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn.secondary {
  background: #f4f6fb;
}

.simple-hero {
  padding: 36px 0 12px;
}

.simple-hero h1 {
  font-size: clamp(2rem, 2.4vw, 2.6rem);
}

.image-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.image-strip .media {
  flex: 1 1 280px;
  min-height: 220px;
  background: #e7ebf7;
  border-radius: 18px;
  overflow: hidden;
}

@media (max-width: 960px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 16px;
  }

  .site-nav.open {
    display: flex;
  }
}
