:root {
  color-scheme: light;
  --bg: #f5f3ef;
  --ink: #1d1f22;
  --muted: #5a6168;
  --accent: #275d8c;
  --accent-2: #6e2d6e;
  --panel: #ffffff;
  --panel-2: #eef1f4;
  --soft: #e7e3dd;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 260px;
  padding: 24px 20px;
  background: #11181f;
  color: #f4f6f8;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-mark {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.82rem;
  color: #c8d1dc;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-nav a {
  color: #f4f6f8;
  font-weight: 500;
}

.sidebar-cta {
  background: #1c2733;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-cta button {
  border: none;
  background: #f4f6f8;
  color: #1c2733;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.content {
  flex: 1;
  padding: 32px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  display: flex;
  gap: 28px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.stack {
  flex-direction: column;
  align-items: flex-start;
}

.section.center {
  justify-content: center;
  text-align: center;
}

.panel {
  background: var(--panel);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.panel.soft {
  background: var(--panel-2);
}

.panel.accent {
  background: #f7f2fa;
}

.media-card {
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
}

.media-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tone-1 {
  background-color: #dfe5ea;
}

.tone-2 {
  background-color: #e7e0e8;
}

.tone-3 {
  background-color: #dfe7da;
}

.tone-4 {
  background-color: #dbe4ef;
}

.tone-5 {
  background-color: #e4e1da;
}

.tone-6 {
  background-color: #d9e2eb;
}

.tone-7 {
  background-color: #dde3e8;
}

.tone-8 {
  background-color: #e5e1dc;
}

.tone-9 {
  background-color: #dfe6eb;
}

.tone-10 {
  background-color: #e1e6eb;
}

.hero {
  align-items: stretch;
}

.hero .copy {
  flex: 1;
}

.tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.metric {
  flex: 1 1 180px;
  padding: 16px;
  border-radius: 16px;
  background: var(--soft);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--panel);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.card .price {
  font-weight: 700;
  color: var(--accent-2);
}

.card button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.bg-image-1 {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  padding: 32px;
  color: #fdfdfd;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cfd6dd;
  font-size: 1rem;
}

form button {
  border: none;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  padding: 14px 18px;
  background: #11181f;
  color: #f4f6f8;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.sticky-cta button {
  border: none;
  background: #f4f6f8;
  color: #11181f;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

footer {
  padding: 24px 40px 60px;
  background: #0f1317;
  color: #dde4ea;
}

footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-card {
  flex: 1 1 220px;
  background: #18202a;
  padding: 16px;
  border-radius: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-banner button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e6e9ed;
  color: #1d1f22;
}

.notice {
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    flex: 1;
    width: 100%;
  }

  .content {
    padding: 24px;
  }

  .section,
  .section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
