* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f5f7fb;
  --ink: #0d1b2a;
  --muted: #4c5b6b;
  --accent: #1d6fa3;
  --accent-dark: #15537a;
  --surface: #ffffff;
  --soft: #e7eef6;
  --shadow: 0 24px 60px rgba(13, 27, 42, 0.14);
  --radius: 22px;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.wrap {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 8px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  border-radius: 28px;
  padding: 80px 32px 56px;
  color: #f8fbff;
  overflow: hidden;
  min-height: 66vh;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 27, 42, 0.76), rgba(13, 27, 42, 0.25));
}

.hero-content {
  position: relative;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: #f5f7fb;
  color: #f5f7fb;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.section {
  padding: 70px 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.offset-panel {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(-26px);
}

.offset-panel.right {
  transform: translateY(26px);
}

.media {
  border-radius: 20px;
  overflow: hidden;
  background: #dfe8f2;
  box-shadow: 0 16px 36px rgba(13, 27, 42, 0.12);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  background: var(--surface);
  border-radius: 20px;
  padding: 22px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 32px rgba(13, 27, 42, 0.08);
}

.card h3 {
  font-size: 1.1rem;
}

.pricing {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.aside-note {
  background: #dfe8f2;
  border-radius: 16px;
  padding: 18px;
  color: var(--muted);
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

ol.stacked {
  list-style: decimal;
  padding-left: 20px;
}

ol.stacked li {
  margin-left: 4px;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.floating-cta a {
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: inline-flex;
}

.form-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  display: inline-block;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd8e3;
  font-size: 0.98rem;
  background: #f9fbff;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer {
  background: #0b1725;
  color: #e5edf6;
  padding: 44px 0;
  margin-top: 60px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0 24px;
}

.footer-small {
  color: #a9b8c7;
  font-size: 0.92rem;
}

.bg-panel {
  background: #e6eef6;
  border-radius: 26px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.bg-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(231, 238, 246, 0.2));
}

.bg-panel > * {
  position: relative;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--surface);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.link-inline {
  text-decoration: underline;
}

.hero-fridge {
  background-image: url("https://images.unsplash.com/photo-1541604193435-22287d32c2c2?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-ice {
  background-color: #dfe8f2;
  background-image: url("https://images.unsplash.com/photo-1751831402956-4e5e45f56ba7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  padding: 50px;
  color: #0d1b2a;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero .media {
  flex: 1 1 320px;
  min-height: 260px;
}

.page-hero .content {
  flex: 1 1 320px;
}

.notice {
  background: #f1f6fb;
  border-left: 4px solid var(--accent);
  padding: 16px;
  border-radius: 12px;
  color: var(--muted);
}

.thanks-box {
  background: var(--surface);
  border-radius: 26px;
  padding: 36px;
  box-shadow: var(--shadow);
  text-align: center;
}

@media (max-width: 780px) {
  .hero {
    padding: 60px 24px 42px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-cta {
    right: 16px;
    bottom: 16px;
  }
}
