:root {
  --navy: #071322;
  --navy-2: #0d1c2d;
  --navy-3: #13263a;
  --orange: #ff982f;
  --orange-2: #ffb15f;
  --ink: #101827;
  --text: #344053;
  --muted: #667085;
  --line: rgba(16, 24, 39, .12);
  --paper: #ffffff;
  --soft: #f6f7f8;
  --shadow: 0 22px 52px rgba(16, 24, 39, .12);
  --content: 1160px;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
}

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

a {
  color: inherit;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

p {
  color: var(--muted);
  line-height: 1.72;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 80px;
  padding: 0 clamp(22px, 4.5vw, 72px);
  border-bottom: 1px solid rgba(16, 24, 39, .08);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 34px rgba(16, 24, 39, .07);
  color: var(--ink);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 236px;
  max-width: 38vw;
  min-height: 40px;
  text-decoration: none;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.menu-toggle {
  display: none;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--orange);
  opacity: 0;
  transform: scaleX(.55);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--orange);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta {
  min-height: 44px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #ffffff;
  font-size: 14px;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.section-inner,
.hero-inner {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-section {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: calc(100vh - 80px);
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: #ffffff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image {
  overflow: hidden;
  transform: scale(1.01);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.pv-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  opacity: 1;
  transition: opacity 260ms ease;
}

.pv-hero__image.is-switching {
  opacity: .72;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 19, 34, .82) 0%, rgba(7, 19, 34, .56) 34%, rgba(7, 19, 34, .1) 68%),
    linear-gradient(180deg, rgba(7, 19, 34, .16), rgba(7, 19, 34, .28));
}

.pv-toggle {
  position: absolute;
  top: clamp(26px, 5vw, 54px);
  right: clamp(18px, 5vw, 72px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 58px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, .1));
  box-shadow: 0 22px 70px rgba(7, 19, 34, .25), inset 0 1px 0 rgba(255, 255, 255, .35);
  color: #ffffff;
  cursor: pointer;
  font: 800 14px/1.1 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  outline: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.pv-toggle:hover {
  border-color: rgba(255, 255, 255, .56);
  box-shadow: 0 24px 80px rgba(7, 19, 34, .32), 0 0 34px rgba(255, 152, 47, .22), inset 0 1px 0 rgba(255, 255, 255, .4);
}

.pv-toggle:focus-visible {
  box-shadow: 0 0 0 4px rgba(255, 152, 47, .34), 0 24px 80px rgba(7, 19, 34, .34);
}

.pv-hero.is-attention .pv-toggle {
  animation: pv-toggle-pulse 1150ms cubic-bezier(.22, 1, .36, 1) .35s 1;
}

.pv-toggle__text {
  display: inline-flex;
  min-width: 42px;
  justify-content: center;
  color: rgba(255, 255, 255, .72);
  transition: color 220ms ease;
}

.pv-hero--day .pv-toggle__text--day,
.pv-hero--night .pv-toggle__text--night {
  color: #ffffff;
}

.pv-toggle__track {
  position: relative;
  display: inline-flex;
  width: 76px;
  height: 42px;
  align-items: center;
  border-radius: 999px;
  background: rgba(7, 19, 34, .44);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18), inset 0 8px 18px rgba(7, 19, 34, .24);
}

.pv-toggle__thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe7ad 0%, var(--orange-2) 44%, var(--orange) 100%);
  box-shadow: 0 8px 22px rgba(255, 152, 47, .45);
  transition: transform 260ms cubic-bezier(.22, 1, .36, 1), background 220ms ease, box-shadow 220ms ease;
}

.pv-hero--night .pv-toggle__thumb {
  transform: translateX(34px);
  background: radial-gradient(circle at 68% 30%, #ffffff 0 12%, #dceaff 13% 42%, #8fb5ff 100%);
  box-shadow: 0 8px 24px rgba(143, 181, 255, .44);
}

.pv-toggle__icon {
  position: absolute;
  width: 16px;
  height: 16px;
  transition: opacity 180ms ease, transform 220ms ease;
}

.pv-toggle__icon--sun {
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .26), 0 0 15px rgba(255, 255, 255, .72);
}

.pv-toggle__icon--moon {
  border-radius: 50%;
  background: var(--navy);
  opacity: 0;
  transform: scale(.76) rotate(-10deg);
}

.pv-toggle__icon--moon::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #dceaff;
}

.pv-hero--night .pv-toggle__icon--sun {
  opacity: 0;
  transform: scale(.76) rotate(14deg);
}

.pv-hero--night .pv-toggle__icon--moon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.pv-cursor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pv-cursor--sun {
  z-index: 2;
  opacity: var(--pv-sun-opacity, 0);
  transition: opacity 180ms ease;
}

.pv-cursor--sun::before,
.pv-cursor--sun::after {
  content: "";
  position: absolute;
  left: var(--pv-cursor-x, 50%);
  top: var(--pv-cursor-y, 50%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(var(--pv-sun-scale, .62));
  pointer-events: none;
}

.pv-cursor--sun::before {
  width: 168px;
  height: 168px;
  background: radial-gradient(circle, rgba(255, 215, 107, .62) 0%, rgba(255, 152, 47, .28) 34%, rgba(255, 152, 47, 0) 70%);
  filter: blur(4px);
  mix-blend-mode: screen;
}

.pv-cursor--sun::after {
  width: 48px;
  height: 48px;
  background: radial-gradient(circle, rgba(255, 246, 204, .92), rgba(255, 184, 74, .48) 52%, rgba(255, 152, 47, 0) 72%);
  filter: blur(1px);
  mix-blend-mode: screen;
}

.pv-hero--night .pv-cursor--sun {
  display: none;
}

.pv-cursor--stars {
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 180ms ease;
}

.pv-hero--night .pv-cursor--stars {
  opacity: 1;
}

.hero-content {
  max-width: 620px;
  padding: 86px 0 96px;
}

.hero-content h1 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 760;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(17px, 1.45vw, 20px);
}

.button {
  min-height: 56px;
  padding: 0 26px;
  font-size: 15px;
}

.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: var(--navy);
  box-shadow: 0 18px 42px rgba(255, 152, 47, .28);
}

.button-secondary {
  border: 1px solid rgba(16, 24, 39, .14);
  background: #ffffff;
  color: var(--ink);
}

.story-section,
.process-section,
.knowledge-section,
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 106px 0;
  background: #ffffff;
}

.story-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(16, 24, 39, .035);
  filter: blur(4px);
  pointer-events: none;
}

.story-section::before {
  right: -140px;
  bottom: 80px;
}

.story-layout,
.contact-layout,
.knowledge-layout {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: start;
}

.story-copy,
.contact-intro {
  padding-top: 52px;
}

.story-copy h2,
.section-heading h2,
.knowledge-intro h2,
.contact-intro h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 760;
  line-height: 1.14;
  letter-spacing: 0;
}

.story-copy p,
.section-heading p,
.knowledge-intro p,
.contact-intro p {
  max-width: 620px;
  margin: 0 0 28px;
  color: var(--text);
  font-size: 16px;
}

.dark-note,
.timeline-summary {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
  line-height: 1.72;
}

.dark-note {
  max-width: 460px;
  padding: 26px 28px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 42px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  bottom: auto;
  left: 36px;
  width: 1px;
  height: var(--timeline-line-height, calc(100% - 206px));
  background: rgba(16, 24, 39, .12);
}

.timeline::after {
  content: "";
  position: absolute;
  top: 32px;
  bottom: auto;
  left: 36px;
  width: 1px;
  height: 0;
  background: var(--orange);
  transition: height 2.4s cubic-bezier(.22, 1, .36, 1);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 26px;
  align-items: start;
}

.timeline-item > span {
  position: relative;
  z-index: 1;
  display: flex;
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 24, 39, .08);
  border-radius: 50%;
  background: #ffffff;
  color: var(--orange);
  box-shadow: 0 16px 34px rgba(16, 24, 39, .08);
  font-size: 13px;
  font-weight: 900;
  transition:
    background-color 420ms ease,
    border-color 420ms ease,
    color 420ms ease,
    box-shadow 420ms ease,
    transform 420ms ease;
}

.story-section.timeline-active .timeline::after {
  height: var(--timeline-line-height, calc(100% - 206px));
}

.story-section.timeline-active .timeline-item > span {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(255, 152, 47, .28);
  transform: scale(1.03);
}

.story-section.timeline-active .timeline-item:nth-child(1) > span {
  transition-delay: 120ms;
}

.story-section.timeline-active .timeline-item:nth-child(2) > span {
  transition-delay: 760ms;
}

.story-section.timeline-active .timeline-item:nth-child(3) > span {
  transition-delay: 1380ms;
}

.timeline-item h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 780;
  line-height: 1.22;
}

.timeline-item p {
  max-width: 620px;
  margin: 0;
  color: var(--text);
  font-size: 15.5px;
}

.timeline-summary {
  position: relative;
  margin-left: 74px;
  padding: 26px 30px;
}

.timeline-summary::before {
  content: "";
  position: absolute;
  top: var(--timeline-summary-connector-top, 24px);
  left: calc(var(--timeline-connector-width, 38px) * -1);
  width: var(--timeline-connector-width, 38px);
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 520ms cubic-bezier(.22, 1, .36, 1) 2.25s;
}

.story-section.timeline-active .timeline-summary::before {
  transform: scaleX(1);
}

.benefits-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 0;
  background: var(--navy);
  color: #ffffff;
}

.benefits-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/solar-1024x683.jpg");
  background-position: center right;
  background-size: cover;
  opacity: .28;
}

.benefits-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 152, 47, .12), transparent 28%),
    linear-gradient(90deg, rgba(7, 19, 34, .96), rgba(7, 19, 34, .82));
}

.section-heading {
  max-width: 690px;
  margin-bottom: 52px;
}

.section-heading.center {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.light h2 {
  color: #ffffff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .13);
}

.benefit-card {
  min-height: 228px;
  padding: 34px 30px;
  background: rgba(7, 19, 34, .58);
  text-align: center;
}

.benefit-card span,
.process-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
}

.benefit-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 760;
  line-height: 1.25;
}

.benefit-card p {
  max-width: 270px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
}

.process-section {
  background: #f8f9fb;
}

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

.process-card {
  overflow: hidden;
  border: 1px solid rgba(16, 24, 39, .08);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(16, 24, 39, .08);
}

.process-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.process-card div {
  padding: 24px;
}

.process-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 760;
}

.process-card p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}

.knowledge-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 152, 47, .12), transparent 26%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #ffffff;
}

.knowledge-layout {
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
}

.knowledge-intro {
  position: sticky;
  top: 112px;
}

.knowledge-intro h2 {
  color: #ffffff;
}

.knowledge-intro p {
  color: rgba(255, 255, 255, .74);
}

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

.faq-list details {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.faq-list summary {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  color: #ffffff;
  cursor: pointer;
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 760;
  line-height: 1.28;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  display: flex;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 152, 47, .18);
  color: var(--orange-2);
  font-size: 21px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: rgba(255, 255, 255, .74);
  font-size: 15.5px;
}

.contact-section {
  background: #ffffff;
}

.contact-section::before {
  left: -150px;
  top: 30px;
}

.soft-note {
  max-width: 460px;
  padding: 24px 26px;
  border: 1px solid rgba(16, 24, 39, .08);
  border-radius: 18px;
  background: #f8f9fb;
  color: var(--text);
  box-shadow: 0 14px 34px rgba(16, 24, 39, .045);
  line-height: 1.72;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-card {
  border-radius: 22px;
  padding: 32px 36px;
  box-shadow: var(--shadow);
}

.contact-card-dark {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #ffffff;
}

.contact-card-light {
  border: 1px solid rgba(16, 24, 39, .1);
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(16, 24, 39, .08);
}

.pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 152, 47, .18);
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 800;
}

.pill-muted {
  background: rgba(16, 24, 39, .1);
  color: var(--text);
}

.contact-card h3 {
  margin: 0 0 22px;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 760;
  line-height: 1.18;
}

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

.contact-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.contact-list div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-list span {
  color: rgba(255, 255, 255, .62);
  font-weight: 760;
}

.contact-list a {
  color: #ffffff;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--orange-2);
}

.contact-card-light p {
  margin: 0;
  color: var(--text);
}

.contact-card-light p + p {
  margin-top: 8px;
}

.form-shell {
  margin-top: 42px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 152, 47, .16), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 24px 62px rgba(7, 19, 34, .24);
}

.form-heading {
  max-width: 760px;
  margin-bottom: 18px;
}

.form-heading h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 760;
  line-height: 1.16;
}

.form-heading p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.project-form {
  display: grid;
  gap: 16px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.wizard-status {
  display: grid;
  gap: 8px;
}

.wizard-count {
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.wizard-progress {
  overflow: hidden;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
}

.wizard-progress span {
  display: block;
  width: 16.666%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  transition: width 320ms ease;
}

.wizard-step {
  display: none;
  min-height: 260px;
  margin: 0;
  border: 0;
  padding: 0;
}

.wizard-step.is-active {
  display: block;
  animation: wizardStepIn 360ms cubic-bezier(.22, 1, .36, 1);
}

.wizard-step legend {
  max-width: 760px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 760;
  line-height: 1.16;
}

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

.project-form label {
  display: grid;
  gap: 6px;
}

.project-form label span {
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 780;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  padding: 0 13px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: rgba(255, 152, 47, .72);
  box-shadow: 0 0 0 4px rgba(255, 152, 47, .14);
}

.project-form input[type="file"] {
  padding: 10px 13px;
}

.project-form textarea {
  min-height: 110px;
  padding-top: 12px;
  resize: vertical;
}

.form-wide {
  grid-column: 1 / -1;
}

.wizard-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.wizard-prev,
.wizard-next,
.wizard-submit {
  border: 0;
  cursor: pointer;
}

.wizard-prev {
  box-shadow: none;
}

.wizard-submit {
  display: none;
}

.project-wizard.is-last-step .wizard-next {
  display: none;
}

.project-wizard.is-last-step .wizard-submit {
  display: inline-flex;
}

.project-wizard.is-first-step .wizard-prev {
  opacity: .45;
  pointer-events: none;
}

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

.wizard-summary div {
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
}

.wizard-summary strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 13px;
}

.wizard-summary span {
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
}

@keyframes wizardStepIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.site-footer {
  border-top: 1px solid rgba(16, 24, 39, .08);
  background: #ffffff;
  color: var(--text);
}

.footer-inner {
  display: grid;
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: 1.5fr .8fr 1fr;
  gap: 46px;
  padding: 58px 0 44px;
}

.footer-brand p {
  max-width: 320px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
}

.footer-logo {
  width: 230px;
  max-width: 100%;
  margin-bottom: 18px;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 15px;
}

.site-footer nav,
.site-footer address {
  display: grid;
  gap: 9px;
  align-content: start;
  font-style: normal;
}

.site-footer a,
.site-footer p,
.site-footer span {
  color: var(--text);
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  gap: 28px;
  align-items: center;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(16, 24, 39, .08);
}

.footer-bottom span:first-child {
  margin-right: auto;
}

.legal-page {
  min-height: 100vh;
  background: #ffffff;
}

.legal-hero {
  padding: 96px 0 48px;
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.legal-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 760;
  line-height: 1.08;
}

.legal-section {
  padding: 48px 0 96px;
  background: #ffffff;
}

.legal-section .itrk-legaltext {
  min-height: 420px;
}

.webdesign-credit {
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 24, 39, .08);
  color: var(--text);
  font-size: 14px;
}

.webdesign-credit a {
  color: var(--orange);
  font-weight: 800;
  text-decoration: none;
}

.webdesign-credit a:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: grid;
  width: min(560px, calc(100% - 48px));
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 28px 80px rgba(7, 19, 34, .28);
  color: #ffffff;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 20px;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .button {
  min-height: 42px;
  border: 0;
  cursor: pointer;
  font-size: 14px;
}

.cookie-settings {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(7, 19, 34, .62);
}

.cookie-settings.is-open {
  display: grid;
}

.cookie-settings-panel {
  display: grid;
  width: min(560px, 100%);
  gap: 16px;
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(7, 19, 34, .28);
}

.cookie-settings-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
}

.consent-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(16, 24, 39, .1);
  border-radius: 16px;
  background: #f8f9fb;
}

.consent-option input {
  margin-top: 4px;
}

.consent-option span {
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.consent-option strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.legal-consent-placeholder {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid rgba(16, 24, 39, .1);
  border-radius: 22px;
  background: #f8f9fb;
}

.legal-consent-placeholder h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 28px;
}

.legal-consent-placeholder p {
  max-width: 680px;
  margin-bottom: 20px;
  color: var(--text);
}

[data-animate] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 760ms cubic-bezier(.22, 1, .36, 1) var(--delay, 0ms),
    transform 760ms cubic-bezier(.22, 1, .36, 1) var(--delay, 0ms);
}

body.is-loaded [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  from {
    transform: scale(1.01);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes pv-toggle-pulse {
  0% {
    box-shadow: 0 22px 70px rgba(7, 19, 34, .25), 0 0 0 rgba(255, 152, 47, 0), inset 0 1px 0 rgba(255, 255, 255, .35);
    transform: scale(1);
  }

  45% {
    box-shadow: 0 26px 82px rgba(7, 19, 34, .3), 0 0 0 11px rgba(255, 152, 47, .16), 0 0 36px rgba(255, 152, 47, .34), inset 0 1px 0 rgba(255, 255, 255, .42);
    transform: scale(1.035);
  }

  100% {
    box-shadow: 0 22px 70px rgba(7, 19, 34, .25), 0 0 0 rgba(255, 152, 47, 0), inset 0 1px 0 rgba(255, 255, 255, .35);
    transform: scale(1);
  }
}

@keyframes pv-toggle-pulse-mobile {
  0% {
    box-shadow: 0 22px 70px rgba(7, 19, 34, .25), 0 0 0 rgba(255, 152, 47, 0), inset 0 1px 0 rgba(255, 255, 255, .35);
    transform: translateX(-50%) scale(1);
  }

  45% {
    box-shadow: 0 26px 82px rgba(7, 19, 34, .3), 0 0 0 11px rgba(255, 152, 47, .16), 0 0 36px rgba(255, 152, 47, .34), inset 0 1px 0 rgba(255, 255, 255, .42);
    transform: translateX(-50%) scale(1.035);
  }

  100% {
    box-shadow: 0 22px 70px rgba(7, 19, 34, .25), 0 0 0 rgba(255, 152, 47, 0), inset 0 1px 0 rgba(255, 255, 255, .35);
    transform: translateX(-50%) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  .hero-image {
    animation: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .pv-cursor {
    display: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px 22px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .story-layout,
  .contact-layout,
  .knowledge-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .story-copy,
  .contact-intro {
    padding-top: 0;
  }

  .knowledge-intro {
    position: static;
  }

  .benefits-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .section-inner,
  .hero-inner,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 32px, var(--content));
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: auto;
    padding: 13px 16px;
  }

  .brand-logo {
    width: 190px;
    max-width: 54vw;
    min-height: 42px;
  }

  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(16, 24, 39, .12);
    border-radius: 999px;
    background: #ffffff;
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(16, 24, 39, .08);
    cursor: pointer;
  }

  .menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .menu-toggle-icon,
  .menu-toggle-icon::before,
  .menu-toggle-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .menu-toggle-icon {
    position: relative;
  }

  .menu-toggle-icon::before,
  .menu-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-toggle-icon::before {
    transform: translateY(-6px);
  }

  .menu-toggle-icon::after {
    transform: translateY(6px);
  }

  .site-header.is-menu-open .menu-toggle-icon {
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle-icon::before {
    opacity: 0;
    transform: translateY(0);
  }

  .site-header.is-menu-open .menu-toggle-icon::after {
    transform: translateY(0) rotate(90deg);
  }

  .header-cta {
    grid-column: 1 / -1;
    display: none;
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: grid;
    width: 100%;
    max-height: 0;
    gap: 4px;
    overflow: hidden;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 18px;
    background: #ffffff;
    opacity: 0;
    box-shadow: none;
    transition: max-height 260ms ease, opacity 180ms ease, padding 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  }

  .site-nav a {
    min-height: 44px;
    padding: 0 10px;
    border-radius: 12px;
    font-size: 13px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: rgba(255, 152, 47, .12);
  }

  .site-header.is-menu-open .site-nav {
    max-height: 340px;
    padding: 10px;
    border-color: rgba(16, 24, 39, .1);
    opacity: 1;
    box-shadow: 0 18px 40px rgba(16, 24, 39, .1);
  }

  .site-header.is-menu-open .header-cta {
    display: inline-flex;
    width: 100%;
  }

  .hero-section {
    min-height: calc(100svh - 82px);
    align-items: flex-start;
  }

  .pv-hero__image {
    object-position: 68% center;
  }

  .pv-toggle {
    top: 22px;
    right: auto;
    bottom: auto;
    left: 50%;
    gap: 10px;
    min-height: 54px;
    padding: 7px 9px 7px 15px;
    transform: translateX(-50%);
  }

  .pv-toggle:hover {
    transform: translateX(-50%);
  }

  .pv-hero.is-attention .pv-toggle {
    animation-name: pv-toggle-pulse-mobile;
  }

  .pv-toggle__text {
    min-width: 38px;
    font-size: 13px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 19, 34, .64), rgba(7, 19, 34, .22) 58%, rgba(7, 19, 34, .04)),
      linear-gradient(180deg, rgba(7, 19, 34, .22), rgba(7, 19, 34, .08) 42%, rgba(7, 19, 34, .54));
  }

  .hero-content {
    max-width: 520px;
    padding: 118px 0 96px;
    text-shadow: 0 2px 18px rgba(7, 19, 34, .42);
  }

  .hero-content h1 {
    margin-bottom: 18px;
    font-size: clamp(31px, 9.2vw, 42px);
  }

  .hero-content p {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.62;
  }

  .button {
    width: auto;
    min-height: 52px;
    padding: 0 18px;
  }

  .story-section,
  .process-section,
  .benefits-section,
  .knowledge-section,
  .contact-section {
    padding: 72px 0;
  }

  .story-copy h2,
  .section-heading h2,
  .knowledge-intro h2,
  .contact-intro h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .dark-note,
  .timeline-summary,
  .soft-note,
  .contact-card {
    padding: 22px;
    border-radius: 16px;
  }

  .timeline {
    gap: 28px;
  }

  .timeline::before {
    left: 25px;
    height: var(--timeline-line-height, calc(100% - 180px));
  }

  .timeline::after {
    left: 25px;
  }

  .timeline-item {
    grid-template-columns: 52px 1fr;
    gap: 17px;
  }

  .timeline-item > span {
    width: 52px;
    height: 52px;
  }

  .timeline-summary {
    margin-left: 0;
  }

  .timeline-summary::before {
    left: 25px;
    top: -28px;
    width: 1px;
    height: 28px;
    transform: scaleY(0);
    transform-origin: top center;
  }

  .story-section.timeline-active .timeline-summary::before {
    transform: scaleY(1);
  }

  .benefits-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
    padding: 26px 22px;
  }

  .process-card img {
    height: 205px;
  }

  .faq-list summary {
    padding: 18px 18px;
    font-size: 18px;
  }

  .faq-list p {
    padding: 0 18px 18px;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .form-shell {
    margin-top: 28px;
    padding: 18px;
    border-radius: 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .wizard-actions {
    flex-direction: column-reverse;
  }

  .wizard-actions .button,
  .wizard-submit {
    width: 100%;
  }

  .wizard-step {
    min-height: auto;
  }

  .wizard-step legend {
    margin-bottom: 14px;
    font-size: clamp(21px, 6vw, 28px);
  }

  .form-heading h3 {
    font-size: clamp(24px, 7vw, 30px);
  }

  .form-heading p {
    font-size: 15px;
  }

  .project-form input,
  .project-form select,
  .project-form textarea {
    min-height: 43px;
  }

  .project-form textarea {
    min-height: 100px;
  }

  .wizard-summary {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 46px 0 34px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .footer-bottom span:first-child {
    order: 2;
    width: 100%;
    margin-top: 14px;
    margin-right: 0;
    color: var(--muted);
    font-size: 13px;
  }

  .footer-bottom a {
    order: 1;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 18px;
    border-radius: 18px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .button {
    width: 100%;
  }

  .cookie-settings-panel,
  .legal-consent-placeholder {
    padding: 20px;
    border-radius: 18px;
  }
}

@media (max-width: 390px) {
  .section-inner,
  .hero-inner,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, var(--content));
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-cta {
    width: 100%;
  }

  .section-kicker {
    font-size: 11px;
    letter-spacing: 2px;
  }
}
