* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #0b1b2b;
  --muted: #556172;
  --accent: #3b5bff;
  --accent-dark: #2636b5;
  --sand: #f4f1ec;
  --mist: #eef2f7;
  --leaf: #e2f2ec;
  --sun: #ffe8b3;
  --line: #d9dee6;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

main {
  flex: 1;
}

section {
  padding: 64px 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: column;
}

.split-panel {
  flex: 1;
}

.kicker {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 12px;
}

h1, h2, h3 {
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 14px 0;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--mist);
  font-size: 0.8rem;
  color: var(--muted);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stats div {
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--mist);
  font-weight: 600;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(11, 27, 43, 0.12);
}

.layered {
  position: relative;
  overflow: hidden;
}

.layered::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
}

.layered .container {
  position: relative;
}

.bg-mist {
  background: var(--mist);
}

.bg-sand {
  background: var(--sand);
}

.bg-leaf {
  background: var(--leaf);
}

.bg-sun {
  background: var(--sun);
}

.bg-lab {
  background-image: url("https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-studio {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-campus {
  background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 6px;
}

input, select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

button {
  cursor: pointer;
  font-family: inherit;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 5;
}

.sticky-cta a {
  box-shadow: 0 12px 30px rgba(59, 91, 255, 0.35);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
  box-shadow: 0 14px 30px rgba(11, 27, 43, 0.12);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hidden {
  display: none;
}

@media (min-width: 840px) {
  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-list {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
