* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c1c1c;
  --muted: #5b5f66;
  --accent: #2c6bed;
  --accent-dark: #1e3f8f;
  --sand: #f4f2ee;
  --fog: #eef0f4;
  --ink-soft: #2c2f36;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 6vw;
  border-bottom: 1px solid #e2e5ea;
  background: #ffffff;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.main-nav a {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus {
  border-bottom-color: var(--accent);
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid #d9dde3;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: #fafafa;
}

.hero {
  padding: 5rem 6vw;
  color: #ffffff;
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 20, 24, 0.62);
}

.hero-content {
  position: relative;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border-color: #ffffff;
}

.btn.dark {
  background: var(--ink);
}

.section {
  padding: 4rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section.alt {
  background: var(--sand);
}

.section.fog {
  background: var(--fog);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.image-frame {
  background-color: #e8ebf0;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame.tall img {
  height: 380px;
  width: 100%;
}

.image-frame.wide img {
  height: 320px;
  width: 100%;
}

.story-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid #e2e5ea;
  border-radius: 18px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.quote {
  padding: 1.8rem;
  border-left: 4px solid var(--accent);
  background: #ffffff;
  border-radius: 16px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.metric {
  flex: 1 1 200px;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.4rem;
  border: 1px solid #e2e5ea;
}

.sticky-cta {
  position: sticky;
  top: 1.4rem;
  align-self: flex-start;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.6rem;
  border: 1px solid #e2e5ea;
  box-shadow: 0 12px 24px rgba(24, 28, 34, 0.08);
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #e2e5ea;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

select,
input,
textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #cbd1d9;
  font-size: 1rem;
  font-family: inherit;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.footer {
  margin-top: auto;
  padding: 3rem 6vw;
  background: #121418;
  color: #f4f5f7;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.footer a {
  color: #f4f5f7;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e5ea;
  padding: 1.2rem;
  width: min(340px, 90vw);
  box-shadow: 0 12px 24px rgba(24, 28, 34, 0.12);
  display: none;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
}

.cookie-actions button {
  flex: 1;
}

.hero-bg {
  background-color: #0f1b2c;
}

.bg-hero-electro {
  background-image: url("https://images.unsplash.com/photo-1517336714731-489689fd1ca8?w=1400&q=80");
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1505740420928-5e560c06d30e?w=1400&q=80");
}

.section-bg {
  background-position: center;
  background-size: cover;
  color: #ffffff;
  position: relative;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 18, 0.62);
}

.section-bg .section-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 680px;
}

.simple-hero {
  padding: 4rem 6vw;
  background: var(--fog);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.legal-content {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-box {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-box > div {
  flex: 1 1 260px;
}

@media (max-width: 720px) {
  .hero {
    padding: 4rem 7vw;
  }

  .site-header {
    padding: 1.2rem 6vw;
  }
}
