* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f4f0;
  --ink: #1c1d1f;
  --muted: #5a5f66;
  --accent: #1f6f54;
  --accent-dark: #134a38;
  --paper: #ffffff;
  --warm: #ebe2d8;
  --cool: #e6eef2;
  --shadow: 0 18px 40px rgba(18, 24, 32, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid rgba(28, 29, 31, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  background: var(--warm);
  padding: 6px 10px;
  border-radius: 999px;
}

.section {
  padding: 70px 6vw;
}

.section-alt {
  background: var(--paper);
}

.section-soft {
  background: var(--cool);
}

.split {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
  min-width: 280px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-weight: 600;
  margin-top: 0;
}

h1 {
  font-size: 38px;
  line-height: 1.2;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn.ghost {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid rgba(28, 29, 31, 0.16);
}

.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.stat {
  background: var(--paper);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  min-width: 170px;
}

.media {
  border-radius: 20px;
  overflow: hidden;
  background-color: #dcd6ce;
  min-height: 240px;
  box-shadow: var(--shadow);
}

.card-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: var(--paper);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  flex: 1 1 260px;
  min-width: 240px;
}

.card-body {
  padding: 18px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.list-clean {
  padding-left: 18px;
}

.form-box {
  background: var(--paper);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-box label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--muted);
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(28, 29, 31, 0.16);
  margin-bottom: 16px;
  font-size: 15px;
  font-family: inherit;
}

.form-box button {
  width: 100%;
}

.inline-cta {
  font-weight: 600;
}

.site-footer {
  background: #151a1f;
  color: #e6eef2;
  padding: 50px 6vw;
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-grid > div {
  flex: 1 1 240px;
}

.muted {
  color: rgba(230, 238, 242, 0.7);
}

.disclaimer {
  font-size: 13px;
  color: rgba(230, 238, 242, 0.7);
  margin-top: 24px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 90px;
  background: var(--accent-dark);
  color: #fff;
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.sticky-cta button {
  border: none;
  background: #fff;
  color: var(--accent-dark);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 13px;
}

.sticky-cta .cta-link {
  background: #fff;
  color: var(--accent-dark);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #101418;
  color: #e6eef2;
  padding: 16px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 14px;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: #2b3138;
  color: #e6eef2;
}

.bg-energy {
  background: linear-gradient(rgba(17, 22, 26, 0.65), rgba(17, 22, 26, 0.65)),
    url("https://images.unsplash.com/photo-1707758283398-7df21adba23a?w=1400&q=80")
      center/cover no-repeat;
  color: #fff;
}

.bg-network {
  background: linear-gradient(rgba(17, 22, 26, 0.55), rgba(17, 22, 26, 0.55)),
    url("https://images.unsplash.com/photo-1600490819528-42405785433a?w=1400&q=80")
      center/cover no-repeat;
  color: #fff;
}

@media (max-width: 860px) {
  .sticky-cta {
    right: 16px;
    left: 16px;
    bottom: 90px;
    justify-content: space-between;
  }
}

@media (max-width: 720px) {
  .split {
    flex-direction: column;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
