:root {
  --ink: #121212;
  --muted: #5f5f5f;
  --line: #d9d9d9;
  --paper: #f6f6f6;
  --white: #ffffff;
  --accent: #0f0f0f;
  --accent-soft: #efefef;
  --radius: 2px;
  --max: 1140px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  border: 0;
  font: inherit;
}

button {
  cursor: pointer;
}

.solar-page {
  overflow: hidden;
}

.solar-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.solar-top {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.solar-top-inner {
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.solar-top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.solar-top-nav a {
  color: #2b2b2b;
}

.solar-wordmark {
  text-align: center;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 23px;
  letter-spacing: 0.02em;
}

.solar-menu-wrap {
  display: flex;
  justify-content: flex-end;
}

.solar-menu-btn {
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 12px;
}

.section {
  margin-top: 52px;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
}

.hero {
  padding: 40px 26px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #646464;
  margin-bottom: 8px;
}

.hero h1 {
  font-size: clamp(30px, 5vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 18px;
  font-size: 14px;
}

.hero-form {
  display: inline-flex;
  align-items: center;
  border: 1px solid #bdbdbd;
  min-width: min(560px, 100%);
  background: #fbfbfb;
}

.hero-form input {
  flex: 1;
  padding: 12px 14px;
  font-size: 13px;
  color: #2f2f2f;
  background: transparent;
}

.hero-form input::placeholder {
  color: #969696;
}

.hero-form button {
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tiny-note {
  margin-top: 8px;
  font-size: 10px;
  color: #7a7a7a;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: var(--white);
}

.split-copy {
  padding: 46px 34px;
}

.split-copy h2 {
  font-size: clamp(30px, 4.8vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 460px;
}

.split-copy p {
  font-size: 14px;
  color: var(--muted);
  max-width: 430px;
}

.btn-row {
  margin-top: 22px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-dark,
.btn-light {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 16px;
  border: 1px solid #bdbdbd;
}

.btn-dark {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.btn-light {
  color: #2b2b2b;
  background: #fff;
}

.split-media {
  background: #d7d7d7;
  position: relative;
  min-height: 320px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-media-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #a2a2a2;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.center-intro {
  text-align: center;
  margin-bottom: 30px;
}

.center-intro h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.center-intro p {
  font-size: 14px;
  color: var(--muted);
}

.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.reason {
  text-align: center;
  padding: 8px 12px;
}

.reason-mark {
  width: 28px;
  height: 28px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 1px solid #1f1f1f;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.reason h3 {
  font-size: 25px;
  line-height: 1.05;
  margin-bottom: 8px;
}

.reason p {
  color: var(--muted);
  font-size: 13px;
}

.inline-ctas {
  margin-top: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.process-card {
  text-align: center;
}

.process-thumb {
  background: #d7d7d7;
  border: 1px solid #cfcfcf;
  aspect-ratio: 16 / 10;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  color: #9b9b9b;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.process-card h3 {
  font-size: 27px;
  line-height: 1.03;
  margin-bottom: 7px;
}

.process-card p {
  font-size: 13px;
  color: var(--muted);
}

.pill-row {
  text-align: center;
  margin-bottom: 18px;
}

.pill {
  display: inline-block;
  border: 1px solid #bfbfbf;
  padding: 8px 14px;
  font-size: 11px;
  margin: 0 4px;
  background: #fff;
}

.pill.active {
  background: #121212;
  color: #fff;
  border-color: #121212;
}

.offer-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.offer-card {
  background: #fff;
  border: 1px solid #1a1a1a;
  padding: 16px;
}

.offer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.offer-score {
  font-size: 13px;
  color: #333;
}

.offer-name {
  font-size: 24px;
  line-height: 1;
  margin-top: 4px;
}

.offer-price {
  font-size: 46px;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.feature-head {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5b5b5b;
  margin-bottom: 8px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  margin-bottom: 14px;
}

.feature-grid li {
  list-style: none;
  font-size: 13px;
  color: #2b2b2b;
}

.feature-grid li::before {
  content: "\2713";
  margin-right: 8px;
  color: #111;
}

.offer-terms {
  font-size: 11px;
  color: #676767;
  margin-bottom: 12px;
}

.full-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #0f0f0f;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quote {
  border: 1px solid #bdbdbd;
  background: #fff;
  padding: 16px;
}

.quote .stars {
  letter-spacing: 0.07em;
  margin-bottom: 9px;
  font-size: 13px;
}

.quote p {
  color: #363636;
  font-size: 13px;
  min-height: 60px;
}

.quote-author {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #535353;
  font-size: 12px;
}

.avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #d4d4d4;
}

.faq {
  max-width: 880px;
  margin: 0 auto;
}

.faq details {
  border-top: 1px solid #c9c9c9;
  padding: 12px 2px;
}

.faq details:last-child {
  border-bottom: 1px solid #c9c9c9;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin-top: 8px;
  color: #555;
  font-size: 14px;
}

.help {
  text-align: center;
  margin-top: 30px;
}

.help h3 {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 10px;
}

.help p {
  color: #666;
  margin-bottom: 14px;
}

.footer-box {
  border: 1px solid #c9c9c9;
  background: #fff;
  padding: 22px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 16px;
}

.footer-title {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 26px;
  margin-bottom: 6px;
}

.footer-copy {
  color: #555;
  font-size: 13px;
  margin-bottom: 10px;
}

.newsletter {
  display: flex;
  gap: 8px;
}

.newsletter input {
  border: 1px solid #bdbdbd;
  padding: 10px;
  width: 100%;
  font-size: 12px;
}

.newsletter button {
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 12px;
}

.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 6px;
}

.footer-col li,
.footer-col a {
  font-size: 13px;
  color: #4f4f4f;
}

.footer-bottom {
  border-top: 1px solid #d4d4d4;
  margin-top: 16px;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #666;
  font-size: 11px;
}

.sovendus-wrap {
  margin-top: 40px;
}

.markdown-wrap {
  margin-top: 28px;
  background: #fff;
  border: 1px solid #d8d8d8;
  padding: 20px;
}

.markdown-wrap h2,
.markdown-wrap h3,
.markdown-wrap h4 {
  margin-bottom: 8px;
}

.markdown-wrap p,
.markdown-wrap li {
  color: #333;
  font-size: 14px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 1300;
}

.modal-overlay.modal-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: min(92vw, 520px);
  background: #fff;
  border: 1px solid #111;
  padding: 22px;
}

.modal-card h3 {
  font-size: 30px;
  line-height: 0.95;
  margin-bottom: 8px;
}

.modal-card p {
  color: #555;
  margin-bottom: 12px;
}

.modal-fields {
  display: grid;
  gap: 10px;
}

.modal-fields label {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}

.modal-fields input {
  width: 100%;
  border: 1px solid #bbb;
  padding: 10px;
}

.modal-submit {
  width: 100%;
  margin-top: 12px;
  background: #111;
  color: #fff;
  padding: 11px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .solar-top-inner {
    grid-template-columns: auto 1fr auto;
  }

  .solar-wordmark {
    text-align: left;
    font-size: 20px;
  }

  .split-grid,
  .reasons,
  .process-grid,
  .testimonials,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .split-media {
    min-height: 260px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .solar-shell {
    padding: 0 12px;
  }

  .section {
    margin-top: 34px;
  }

  .solar-top-nav {
    gap: 10px;
    font-size: 10px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .solar-top-nav::-webkit-scrollbar {
    display: none;
  }

  .solar-menu-btn {
    font-size: 9px;
    padding: 8px 9px;
  }

  .hero {
    padding: 24px 14px;
  }

  .hero h1,
  .split-copy h2,
  .center-intro h2,
  .reason h3,
  .process-card h3,
  .help h3 {
    font-size: 40px;
  }

  .hero-form {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-form button {
    width: 100%;
  }

  .split-copy {
    padding: 24px 16px;
  }

  .panel,
  .split-grid,
  .quote,
  .offer-card,
  .footer-box {
    border-left: 0;
    border-right: 0;
  }

  .offer-price {
    font-size: 38px;
  }

  .footer-box {
    padding: 18px 14px;
  }

  .newsletter {
    flex-direction: column;
  }
}
