* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1f23;
  --muted: #5a6772;
  --accent: #2f6fed;
  --accent-dark: #1f4eb0;
  --mist: #f4f6f8;
  --sand: #eef3f2;
  --plum: #e7e5f2;
  --sun: #f8f1e4;
  --line: #e2e8ee;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 40px 0 80px;
}

header {
  padding: 26px 0 10px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
}

.nav-link {
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-link:hover {
  border-color: var(--accent);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.hero-text {
  flex: 1 1 360px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-panel {
  flex: 1 1 420px;
  min-height: 360px;
  border-radius: 28px;
  background-image: url("https://images.unsplash.com/photo-1478358161113-b0e11994a36b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #cfd6d5;
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.secondary:hover {
  background: var(--accent);
  color: #fff;
}

.inline-link {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.inline-link:hover {
  border-color: var(--accent);
}

.section {
  padding: 32px;
  border-radius: 28px;
}

.section.mist {
  background: var(--mist);
}

.section.sun {
  background: var(--sun);
}

.section.plum {
  background: var(--plum);
}

.section.sand {
  background: var(--sand);
}

.section.bg-energy {
  background-image: linear-gradient(
      120deg,
      rgba(27, 31, 35, 0.75),
      rgba(27, 31, 35, 0.45)
    ),
    url("https://images.unsplash.com/photo-1477244075012-5cc28286e465?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2a3136;
  color: #ffffff;
}

.section.bg-energy .note,
.section.bg-energy p {
  color: #e6edf4;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1 1 320px;
}

.text-block h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.text-block p {
  color: var(--muted);
  margin-bottom: 12px;
}

.image-frame {
  flex: 1 1 320px;
  min-height: 260px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #d8dee3;
  box-shadow: 0 18px 40px rgba(27, 31, 35, 0.1);
}

.offset-block {
  position: relative;
}

.offset-block .floating {
  position: relative;
  left: 24px;
  top: -12px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.service-card .content {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  font-size: 0.9rem;
}

.cta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.form-shell button {
  border: none;
  cursor: pointer;
}

.service-pick {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-pick button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.service-pick button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(47, 111, 237, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.sticky-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-card {
  flex: 1 1 220px;
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  background: #fff;
  border-radius: 12px;
}

.footer {
  padding: 50px 0 30px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
}

.footer a:hover {
  color: var(--accent);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 18px 40px rgba(27, 31, 35, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 25;
  width: min(920px, 92%);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.cookie-actions button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero .image-frame {
  min-height: 220px;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.tagline {
  font-weight: 600;
  color: var(--accent);
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .offset-block .floating {
    left: 0;
    top: 0;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
