* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1b;
  --muted: #5c6570;
  --accent: #2563eb;
  --accent-soft: #e8efff;
  --surface: #ffffff;
  --panel: #f4f6f9;
  --panel-strong: #e9edf3;
  --warm: #fff3e6;
  --deep: #0f172a;
  --frame-1: #e9eef5;
  --frame-2: #f5eee8;
  --frame-3: #e6f2ef;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: var(--deep);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.ad-label {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 10px;
  background: #1f2937;
  color: #f8fafc;
  border-radius: 999px;
  font-size: 12px;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list a {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.sidebar-note {
  font-size: 12px;
  color: #cbd5f5;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 40px 80px;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  background: var(--panel);
  padding: 28px;
  border-radius: 24px;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual {
  flex: 1;
  min-height: 280px;
  border-radius: 22px;
  background-color: #dbeafe;
  background-size: cover;
  background-position: center;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  background: var(--panel-strong);
  padding: 22px;
  border-radius: 18px;
  flex: 1;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.metric {
  flex: 1 1 180px;
  background: var(--warm);
  padding: 16px;
  border-radius: 16px;
}

.metric-image {
  flex: 1 1 240px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: var(--frame-1);
}

.image-frame.frame-2 {
  background: var(--frame-2);
}

.image-frame.frame-3 {
  background: var(--frame-3);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  border-radius: 14px;
}

.form-section {
  background: var(--panel);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0d7e2;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  background: #111827;
  color: #fff;
  border-radius: 999px;
  z-index: 20;
}

.footer {
  margin-top: 20px;
  padding: 24px;
  background: var(--deep);
  color: #e5e7eb;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #e5e7eb;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #111827;
  color: #fff;
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #22c55e;
  color: #0f172a;
}

.cookie-reject {
  background: #e2e8f0;
  color: #0f172a;
}

.simple-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.narrow {
  max-width: 720px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
}

.section-bg {
  background: var(--panel-strong);
  padding: 20px;
  border-radius: 20px;
}

.center {
  text-align: center;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
}

.muted {
  color: var(--muted);
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .content {
    padding: 24px;
  }

  .hero,
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
