* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f5f4f1;
  --ink: #1e1e1e;
  --muted: #5f5f5f;
  --accent: #2e5dff;
  --accent-dark: #1f3db1;
  --soft: #ffffff;
  --sand: #ebe7df;
  --slate: #2c2c2c;
  --radius: 22px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: var(--soft);
  border-bottom: 1px solid #e2e2e2;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: var(--accent);
}

.hero {
  background: linear-gradient(120deg, #fdfcf9, #ece8e1);
  padding: 40px 6vw 60px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  padding: 50px 6vw;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-card {
  background: var(--soft);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
  background-position: center;
  background-size: cover;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1473187983305-f615310e7daa?auto=format&fit=crop&w=1400&q=80");
}

.field-media {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1400&q=80");
}

.tech-media {
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1400&q=80");
}

.night-media {
  background-image: url("https://images.unsplash.com/photo-1472207259839-6aa1b0fdd859?auto=format&fit=crop&w=1400&q=80");
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
}

.btn.secondary {
  background: var(--sand);
  color: var(--ink);
}

.btn.outline {
  background: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--accent);
}

.tag {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e1e1e1;
  font-size: 0.85rem;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 16px;
}

.muted {
  color: var(--muted);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--soft);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #e6e0d6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  align-self: flex-start;
  background: var(--slate);
  color: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  max-width: 260px;
}

.form-panel {
  background: var(--soft);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid #e7e1d9;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4d4d4;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  background: #1f1f1f;
  color: #efefef;
  padding: 40px 6vw;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  font-size: 0.9rem;
}

.banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.banner-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 16px;
  background: var(--soft);
  border: 1px solid #e5dfd5;
}

.secondary-section {
  background: var(--sand);
}

.dark-section {
  background: #1b1b1b;
  color: #f6f6f6;
}

.dark-section .btn.secondary {
  background: #f6f6f6;
  color: #1b1b1b;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.image-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    gap: 40px;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split > * {
    flex: 1;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .cta-row,
  .banner-actions,
  .image-row {
    flex-direction: row;
  }
}
