:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --surface-blue: #eef5ff;
  --text: #111827;
  --muted: #5f6b7a;
  --subtle: #8491a3;
  --border: #dde5ee;
  --border-strong: #c9d5e3;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-soft: #dbeafe;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
  --shadow-soft: 0 14px 40px rgba(17, 24, 39, 0.06);
  --radius: 8px;
  --container: min(1160px, calc(100% - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--text);
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(241, 246, 253, 0.94);
  border-bottom: 1px solid rgba(201, 213, 227, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--border-strong);
  background: rgba(232, 241, 253, 0.96);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  min-height: 72px;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  width: max-content;
  color: var(--text);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.logo strong {
  color: var(--accent);
}

.site-nav {
  display: none;
}

.site-nav a,
.header-cta,
.footer-grid nav a,
.footer-bottom a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover,
.header-cta:hover,
.footer-grid nav a:hover,
.footer-bottom a:hover {
  color: var(--text);
}

.header-cta {
  display: none;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span + span {
  margin-top: -12px;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-open .site-nav {
  position: fixed;
  inset: 72px 20px auto;
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.nav-open .site-nav a {
  padding: 12px 8px;
  color: var(--text);
  font-size: 18px;
}

.hero {
  padding: 72px 0 84px;
}

.hero-grid,
.split-section,
.experience-grid,
.contact-grid,
.faq-layout {
  display: grid;
  gap: 44px;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 22px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 680px;
  font-size: clamp(44px, 11vw, 76px);
}

h2 {
  max-width: 820px;
  font-size: clamp(34px, 8vw, 56px);
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  font-size: clamp(18px, 4.2vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 18px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

.system-row {
  display: grid;
  gap: 12px;
  max-width: 680px;
}

.enova-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  width: max-content;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 10px 13px;
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  box-shadow: var(--shadow-soft);
}

.enova-mark strong {
  color: var(--accent);
}

.module-pills,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.module-pills span,
.trust-row span,
.competence-grid span {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  padding: 8px 11px;
  font-size: 14px;
  font-weight: 650;
}

.hero-media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.hero-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(240px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-panel span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.hero-panel strong {
  display: block;
  color: var(--text);
  font-size: 54px;
  line-height: 1;
}

.section {
  padding: 84px 0;
}

.intro-band,
.process-section,
.faq-section {
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.section-top {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.section-top p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 18px;
}

.argument-list {
  display: grid;
  gap: 14px;
}

.argument-list article,
.choice-grid article,
.service-card,
.stats-grid article,
.contact-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.argument-list article {
  padding: 22px;
}

.argument-list p,
.choice-grid p,
.service-card p {
  margin-bottom: 0;
}

.cards-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.service-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--accent);
}

.timeline {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
}

.timeline span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.timeline p {
  margin-bottom: 0;
}

.competence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.competence-grid span {
  display: grid;
  min-height: 54px;
  place-items: center;
  color: var(--text);
  text-align: center;
}

.experience-section {
  background:
    linear-gradient(180deg, rgba(238, 245, 255, 0.8), rgba(248, 250, 252, 0)),
    var(--bg);
}

.experience-copy h2 {
  max-width: 700px;
}

.experience-copy p:not(.eyebrow) {
  font-size: 18px;
}

.experience-summary {
  display: grid;
  gap: 16px;
}

@media (min-width: 840px) {
  .experience-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 380px);
    gap: 56px;
    align-items: center;
  }

  .experience-copy {
    max-width: 680px;
  }

  .experience-copy p:not(.eyebrow) {
    max-width: 680px;
  }

  .stats-grid {
    display: block;
    width: 100%;
  }

  .stats-grid article {
    min-height: auto;
    padding: 32px;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.stats-grid article {
  min-height: 170px;
  padding: 22px;
}

.stats-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(42px, 16vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
}

.stats-grid span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.7;
}

.stats-grid ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.stats-grid li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
}

.stats-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.image-band {
  overflow: hidden;
  max-height: 560px;
}

.image-band img {
  width: 100%;
  height: min(54vw, 560px);
  min-height: 320px;
  object-fit: cover;
}

.choice-grid {
  display: grid;
  gap: 14px;
}

.choice-grid article {
  padding: 24px;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

summary {
  position: relative;
  cursor: pointer;
  padding: 19px 48px 19px 18px;
  color: var(--text);
  font-weight: 750;
  list-style: none;
}

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

summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 180ms ease;
}

details[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

details p {
  margin: -4px 18px 20px;
}

.contact-section {
  background: var(--text);
  color: #fff;
}

.contact-section h2,
.contact-section h3 {
  color: #fff;
}

.contact-section p {
  color: #cbd5e1;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 14px;
}

.contact-list span {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-list a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.contact-reveal {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-reveal:hover {
  color: #bfdbfe;
}

.contact-reveal:focus-visible {
  outline: 3px solid #93c5fd;
  outline-offset: 4px;
}

.contact-reveal__value a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 10px;
  background: #fff;
  padding: 22px;
  color: var(--text);
}

.contact-form label {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  padding: 12px 13px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.form-consents {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.contact-form .checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.checkbox-field span {
  color: var(--muted);
}

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.contact-form input[name="website"] {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
  outline: none;
}

.contact-form .btn {
  margin-top: 8px;
}
.contact-list li span:last-child,
.contact-list address {
    color:#fff;
    font-weight:700;
    text-transform:none;
    font-size:18px;
    font-style:normal;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 38px 0 26px;
}

.footer-grid,
.footer-bottom {
  display: grid;
  gap: 20px;
}

.footer-grid p {
  max-width: 520px;
  margin-bottom: 0;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.reveal {
  transform: translateY(18px);
  opacity: 0;
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 619px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: clamp(38px, 13vw, 54px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding: 58px 0 70px;
  }

  .hero-media,
  .hero-media img {
    min-height: 320px;
  }

  .experience-grid {
    gap: 28px;
  }

  .experience-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .stats-grid article {
    padding: 22px 18px;
  }

  .contact-form {
    padding: 18px;
  }
}

@media (min-width: 620px) {
  .services-grid,
  .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .competence-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 840px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 0 14px;
    color: var(--text);
  }

  .hero {
    padding: 98px 0 110px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
    align-items: center;
  }

  .split-section,
  .contact-grid,
  .faq-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

  .section {
    padding: 112px 0;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .competence-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .choice-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .choice-grid article {
    grid-column: span 2;
  }

  .choice-grid article:nth-last-child(2) {
    grid-column: 2 / span 2;
  }

  .stats-grid {
    align-self: center;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1120px) {
  .timeline {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .timeline li {
    min-height: 255px;
  }
}
