:root {
  --journey-bg: #04090c;
  --journey-deep: #07131d;
  --journey-ink: #fff7eb;
  --journey-text: rgba(224, 240, 243, 0.9);
  --journey-muted: rgba(143, 173, 180, 0.76);
  --journey-line: rgba(155, 124, 255, 0.18);
  --journey-blue: #6ab8ff;
  --journey-purple: #9b7cff;
  --journey-teal: #2fd4c2;
  --journey-wrap: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; }
body.journey-page { margin: 0; color: var(--journey-text); font-family: "Inter", system-ui, sans-serif; background: var(--journey-bg); }
body.journey-page::before { position: fixed; inset: 0; z-index: -2; background: radial-gradient(900px 640px at 4% 0%, rgba(31, 116, 216, 0.17), transparent 70%), radial-gradient(800px 620px at 96% 8%, rgba(155, 124, 255, 0.16), transparent 72%), radial-gradient(760px 620px at 10% 92%, rgba(47, 212, 194, 0.09), transparent 72%), linear-gradient(145deg, #04090c 0%, #07151f 54%, #090c19 100%); content: ""; }
body.journey-page::after { position: fixed; inset: 0; z-index: -1; opacity: 0.52; background: radial-gradient(620px 520px at 18% 20%, rgba(106, 184, 255, 0.12), transparent 72%), radial-gradient(700px 560px at 86% 38%, rgba(155, 124, 255, 0.12), transparent 72%), radial-gradient(660px 540px at 36% 88%, rgba(47, 212, 194, 0.08), transparent 74%); content: ""; pointer-events: none; animation: journeyAmbientPulse 8s ease-in-out infinite alternate; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }
.journey-wrap { width: var(--journey-wrap); margin-inline: auto; }
.journey-skip { position: fixed; top: 8px; left: 8px; z-index: 200; padding: 10px 14px; border-radius: 8px; background: var(--journey-blue); color: #031019; font-weight: 850; text-decoration: none; transform: translateY(-140%); }
.journey-skip:focus { transform: translateY(0); }

.journey-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(155, 124, 255, 0.13); background: rgba(4, 9, 12, 0.82); box-shadow: 0 18px 58px rgba(0, 0, 0, 0.22); backdrop-filter: blur(18px); }
.journey-header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 28px; }
.journey-brand { display: inline-flex; align-items: center; gap: 11px; color: var(--journey-ink); font-family: "Space Grotesk", sans-serif; font-size: 21px; font-weight: 750; text-decoration: none; }
.journey-brand img { width: 42px; height: 42px; }
.journey-nav { display: flex; align-items: center; gap: 6px; }
.journey-nav a { padding: 10px 12px; border-radius: 9px; color: var(--journey-text); font-size: 13px; font-weight: 700; text-decoration: none; transition: color 180ms ease, background 180ms ease; }
.journey-nav a:hover, .journey-nav a[aria-current="page"] { color: var(--journey-ink); background: rgba(155, 124, 255, 0.1); }
.journey-nav .journey-nav-cta { margin-left: 5px; color: #05111a; background: linear-gradient(135deg, var(--journey-blue), var(--journey-purple)); }
.journey-nav .journey-nav-cta:hover { color: #02080d; background: linear-gradient(135deg, #86c7ff, #b19aff); }
.journey-nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--journey-line); border-radius: 10px; background: rgba(155, 124, 255, 0.07); color: var(--journey-ink); }
.journey-nav-toggle span, .journey-nav-toggle span::before, .journey-nav-toggle span::after { display: block; width: 20px; height: 2px; margin: auto; background: currentColor; content: ""; }
.journey-nav-toggle span { position: relative; }
.journey-nav-toggle span::before { position: absolute; top: -6px; }
.journey-nav-toggle span::after { position: absolute; top: 6px; }

.journey-main { overflow: clip; }
.journey-hero { position: relative; padding: 104px 0 82px; }
.journey-hero::after { position: absolute; right: -8%; bottom: -220px; width: 620px; height: 620px; border: 1px solid rgba(155, 124, 255, 0.13); border-radius: 50%; box-shadow: 0 0 0 80px rgba(106, 184, 255, 0.025), 0 0 0 160px rgba(155, 124, 255, 0.018); content: ""; pointer-events: none; }
.journey-kicker { color: var(--journey-purple); font-size: 11px; font-weight: 850; letter-spacing: 0.16em; text-transform: uppercase; }
.journey-hero h1 { max-width: 980px; margin: 20px 0 24px; color: var(--journey-ink); font-family: "Space Grotesk", sans-serif; font-size: clamp(54px, 7vw, 92px); line-height: 0.96; letter-spacing: -0.055em; text-wrap: balance; }
.journey-hero-copy { max-width: 770px; margin: 0; color: var(--journey-text); font-size: clamp(18px, 2vw, 24px); line-height: 1.55; }
.journey-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.journey-button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 17px; border: 1px solid rgba(155, 124, 255, 0.28); border-radius: 10px; background: rgba(155, 124, 255, 0.075); color: var(--journey-ink); font-size: 13px; font-weight: 850; text-decoration: none; transition: transform 180ms ease, background 180ms ease, border-color 180ms ease; }
.journey-button:hover { transform: translateY(-2px); border-color: rgba(106, 184, 255, 0.5); background: rgba(106, 184, 255, 0.12); }
.journey-button.primary { border-color: transparent; background: linear-gradient(135deg, var(--journey-blue), var(--journey-purple)); color: #041019; }

.journey-rail { background: transparent; }
.journey-pricing-paths { position: relative; z-index: 2; padding-bottom: 18px; }
.journey-rail-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.journey-rail-item { min-width: 0; padding: 24px; border: 1px solid var(--journey-line); border-radius: 14px; background: rgba(7, 18, 27, 0.58); text-decoration: none; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.journey-rail-item:hover { transform: translateY(-3px); border-color: rgba(106, 184, 255, 0.48); background: rgba(10, 29, 42, 0.82); }
.journey-rail-item span { color: var(--journey-purple); font-size: 9px; font-weight: 850; letter-spacing: 0.15em; text-transform: uppercase; }
.journey-rail-item strong { display: block; margin-top: 8px; color: var(--journey-ink); font-size: 16px; }
.journey-rail-item p { margin: 5px 0 0; color: var(--journey-muted); font-size: 11px; line-height: 1.5; }

.journey-section { position: relative; padding: 96px 0; }
.journey-section:nth-of-type(even) { background: transparent; }
.journey-section-head { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.45fr); gap: 48px; align-items: end; margin-bottom: 36px; }
.journey-section h2 { max-width: 820px; margin: 14px 0 0; color: var(--journey-ink); font-family: "Space Grotesk", sans-serif; font-size: clamp(38px, 5vw, 64px); line-height: 1; letter-spacing: -0.045em; text-wrap: balance; }
.journey-section-head > p { margin: 0; color: var(--journey-muted); font-size: 14px; line-height: 1.7; }

.journey-card-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 18px; }
.journey-offer-followup { margin-top: 18px; }
.journey-card { --pointer-x: 20%; --pointer-y: 0%; position: relative; grid-column: span 4; display: flex; flex-direction: column; min-height: 390px; padding: 28px; border: 1px solid var(--journey-line); border-radius: 18px; background: radial-gradient(440px 280px at var(--pointer-x) var(--pointer-y), rgba(106, 184, 255, 0.12), transparent 70%), linear-gradient(145deg, rgba(11, 28, 40, 0.94), rgba(10, 13, 27, 0.97)); box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24); text-decoration: none; overflow: hidden; }
.journey-card.wide { grid-column: span 8; }
.journey-card.half { grid-column: span 6; }
.journey-card.full { grid-column: 1 / -1; min-height: 330px; }
.journey-card-number { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid rgba(155, 124, 255, 0.13); color: var(--journey-purple); font-size: 10px; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.journey-card h3 { margin: 34px 0 14px; color: var(--journey-ink); font-family: "Space Grotesk", sans-serif; font-size: clamp(25px, 3vw, 38px); line-height: 1.04; }
.journey-card > p { margin: 0; color: var(--journey-text); font-size: 14px; line-height: 1.65; }
.journey-card ul { display: grid; gap: 9px; margin: 24px 0 0; padding: 19px 0 0; border-top: 1px solid rgba(155, 124, 255, 0.13); list-style: none; }
.journey-card li { position: relative; padding-left: 16px; color: var(--journey-muted); font-size: 12px; line-height: 1.5; }
.journey-card li::before { position: absolute; left: 0; top: 0.58em; width: 6px; height: 6px; border-radius: 50%; background: var(--journey-blue); box-shadow: 0 0 12px rgba(106, 184, 255, 0.58); content: ""; }
.journey-card-link { margin-top: auto; padding-top: 26px; color: var(--journey-blue); font-size: 13px; font-weight: 850; }
.journey-card-media { margin: -28px -28px 0; aspect-ratio: 16 / 9; border-bottom: 1px solid var(--journey-line); background: #061018; overflow: hidden; }
.journey-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: left top; filter: saturate(0.82) brightness(0.88); transition: transform 420ms ease, filter 420ms ease; }
.journey-card:hover .journey-card-media img { transform: scale(1.035); filter: saturate(1) brightness(1); }
.journey-card.is-hidden { display: none; }

.journey-work-grid { display: flex; flex-wrap: wrap; gap: 18px; align-items: stretch; }
.journey-work-grid > .journey-card { flex: 1 1 420px; min-width: min(100%, 340px); min-height: 520px; }
.journey-work-card .journey-card-media-hvac img { object-position: center 18%; }
.journey-card-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 26px; }
.journey-card-actions a { padding: 9px 11px; border: 1px solid rgba(106, 184, 255, 0.22); border-radius: 999px; background: rgba(106, 184, 255, 0.06); color: var(--journey-blue); font-size: 11px; font-weight: 850; text-decoration: none; }
.journey-card-actions a:hover { border-color: rgba(106, 184, 255, 0.52); background: rgba(106, 184, 255, 0.13); color: var(--journey-ink); }

.journey-company-paths { display: grid; grid-template-columns: auto repeat(2, minmax(0, 1fr)); gap: 12px; align-items: center; margin-top: 22px; padding: 14px; border: 1px solid rgba(155, 124, 255, 0.14); border-radius: 14px; background: rgba(5, 13, 20, 0.48); }
.journey-company-paths > span { padding: 0 8px; color: var(--journey-muted); font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.journey-company-paths a { display: grid; gap: 4px; padding: 12px 14px; border-radius: 10px; background: rgba(155, 124, 255, 0.055); text-decoration: none; }
.journey-company-paths strong { color: var(--journey-ink); font-size: 13px; }
.journey-company-paths small { color: var(--journey-muted); font-size: 11px; line-height: 1.45; }
.journey-company-paths a:hover { background: rgba(106, 184, 255, 0.1); }

.journey-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.journey-filter button { padding: 10px 13px; border: 1px solid var(--journey-line); border-radius: 999px; background: rgba(155, 124, 255, 0.055); color: var(--journey-text); font-size: 11px; font-weight: 800; cursor: pointer; }
.journey-filter button:hover, .journey-filter button[aria-pressed="true"] { border-color: rgba(106, 184, 255, 0.46); background: rgba(106, 184, 255, 0.13); color: var(--journey-ink); }

.journey-process { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin: 0; padding: 0; list-style: none; }
.journey-process li { min-height: 250px; padding: 24px; border: 1px solid var(--journey-line); border-radius: 16px; background: linear-gradient(145deg, rgba(11, 28, 40, 0.86), rgba(10, 13, 27, 0.93)); }
.journey-process span { color: var(--journey-purple); font-size: 10px; font-weight: 850; letter-spacing: 0.14em; }
.journey-process h3 { margin: 44px 0 12px; color: var(--journey-ink); font-size: 24px; }
.journey-process p { margin: 0; color: var(--journey-muted); font-size: 12px; line-height: 1.65; }

.journey-offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.journey-offer-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.journey-offer { position: relative; display: flex; flex-direction: column; min-height: 620px; padding: 30px; border: 1px solid var(--journey-line); border-radius: 20px; background: radial-gradient(460px 280px at var(--pointer-x, 50%) var(--pointer-y, 0%), rgba(106, 184, 255, 0.1), transparent 72%), linear-gradient(145deg, rgba(11, 28, 40, 0.94), rgba(10, 13, 27, 0.98)); box-shadow: 0 30px 100px rgba(0, 0, 0, 0.27); }
.journey-offer.featured { border-color: rgba(155, 124, 255, 0.58); background: radial-gradient(500px 320px at 50% 0%, rgba(155, 124, 255, 0.2), transparent 72%), linear-gradient(145deg, rgba(13, 27, 47, 0.98), rgba(18, 12, 38, 0.98)); }
.journey-offer.featured::before { position: absolute; top: -1px; left: 16%; right: 16%; height: 2px; background: linear-gradient(90deg, transparent, var(--journey-blue), var(--journey-purple), transparent); box-shadow: 0 0 20px rgba(155, 124, 255, 0.7); content: ""; }
.journey-offer-label { min-height: 28px; color: var(--journey-purple); font-size: 10px; font-weight: 850; letter-spacing: 0.13em; text-transform: uppercase; }
.journey-price { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-top: 17px; }
.journey-price-part { display: inline-grid; grid-template-columns: auto auto; gap: 7px; align-items: baseline; white-space: nowrap; }
.journey-price strong { color: var(--journey-ink); font-family: "Space Grotesk", sans-serif; font-size: 38px; line-height: 1; }
.journey-price small { color: var(--journey-muted); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.journey-price b { color: var(--journey-blue); }
.journey-offer h3 { margin: 24px 0 12px; color: var(--journey-ink); font-size: 27px; line-height: 1.08; }
.journey-offer > p { margin: 0; color: var(--journey-text); font-size: 13px; line-height: 1.65; }
.journey-offer ul { display: grid; gap: 9px; flex: 1; margin: 22px 0 28px; padding: 20px 0 0; border-top: 1px solid rgba(155, 124, 255, 0.14); list-style: none; }
.journey-offer li { position: relative; padding-left: 17px; color: var(--journey-muted); font-size: 12px; line-height: 1.5; }
.journey-offer li::before { position: absolute; left: 0; top: 0.6em; width: 6px; height: 6px; border-radius: 50%; background: var(--journey-blue); content: ""; }

.journey-comparison { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--journey-line); border-radius: 18px; overflow: hidden; background: rgba(7, 17, 26, 0.78); }
.journey-comparison th, .journey-comparison td { padding: 16px 18px; border-right: 1px solid rgba(155, 124, 255, 0.12); border-bottom: 1px solid rgba(155, 124, 255, 0.12); font-size: 12px; text-align: left; }
.journey-comparison th { color: var(--journey-ink); background: rgba(155, 124, 255, 0.08); }
.journey-comparison td { color: var(--journey-muted); }
.journey-comparison th:last-child, .journey-comparison td:last-child { border-right: 0; }
.journey-comparison tr:last-child td { border-bottom: 0; }
.journey-comparison td:not(:first-child) { color: var(--journey-text); text-align: center; }

.journey-faq { display: grid; grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr); gap: 70px; align-items: start; }
.journey-faq-intro { position: sticky; top: 112px; }
.journey-faq-list { display: grid; gap: 10px; }
.journey-faq details { border: 1px solid var(--journey-line); border-radius: 14px; background: linear-gradient(145deg, rgba(11, 28, 40, 0.86), rgba(10, 13, 27, 0.93)); overflow: hidden; }
.journey-faq summary { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 20px 21px; color: var(--journey-ink); font-size: 14px; font-weight: 800; list-style: none; cursor: pointer; }
.journey-faq summary::-webkit-details-marker { display: none; }
.journey-faq summary::after { display: grid; place-items: center; width: 27px; height: 27px; flex: 0 0 27px; border: 1px solid var(--journey-line); border-radius: 50%; color: var(--journey-blue); content: "+"; transition: transform 180ms ease; }
.journey-faq details[open] summary::after { transform: rotate(45deg); }
.journey-faq details p { margin: 0; padding: 0 21px 21px; color: var(--journey-muted); font-size: 12px; line-height: 1.7; }

.journey-cta { padding: 88px 0; background: transparent; }
.journey-cta-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 42px; align-items: center; }
.journey-cta h2 { max-width: 820px; margin: 0; color: var(--journey-ink); font-family: "Space Grotesk", sans-serif; font-size: clamp(40px, 5.5vw, 70px); line-height: 0.98; letter-spacing: -0.05em; }
.journey-cta p { max-width: 680px; margin: 18px 0 0; color: var(--journey-text); line-height: 1.65; }
.journey-footer { padding: 38px 0 46px; border-top: 1px solid var(--journey-line); background: #03070a; }
.journey-footer-inner { display: flex; justify-content: space-between; gap: 28px; align-items: flex-start; }
.journey-footer p { max-width: 560px; margin: 0; color: var(--journey-muted); font-size: 12px; line-height: 1.6; }
.journey-footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.journey-footer a { color: var(--journey-text); font-size: 12px; font-weight: 700; text-decoration: none; }
.journey-footer a:hover { color: var(--journey-blue); }

[data-journey-tilt] { --tilt-x: 0deg; --tilt-y: 0deg; --lift: 0px; transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift)); transform-style: preserve-3d; transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease; will-change: transform; }
[data-journey-tilt]:hover { --lift: -5px; border-color: rgba(106, 184, 255, 0.46); box-shadow: 0 36px 110px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(106, 184, 255, 0.08); }
.journey-reveal { opacity: 0; translate: 0 24px; filter: blur(3px); }
.journey-reveal.is-visible { opacity: 1; translate: 0 0; filter: blur(0); transition: opacity 620ms ease var(--journey-delay, 0ms), translate 620ms cubic-bezier(.2,.78,.24,1) var(--journey-delay, 0ms), filter 620ms ease var(--journey-delay, 0ms); }

@media (max-width: 1000px) {
  .journey-nav-toggle { display: block; }
  .journey-nav { position: absolute; top: calc(100% + 1px); left: 24px; right: 24px; display: none; padding: 12px; border: 1px solid var(--journey-line); border-radius: 14px; background: rgba(5, 13, 20, 0.98); box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36); }
  .journey-nav.open { display: grid; }
  .journey-nav .journey-nav-cta { margin-left: 0; }
  .journey-section-head { grid-template-columns: 1fr; gap: 20px; }
  .journey-card, .journey-card.wide { grid-column: span 6; }
  .journey-offer-grid { grid-template-columns: 1fr; }
  .journey-offer-grid.two { grid-template-columns: 1fr; }
  .journey-offer { min-height: 0; }
  .journey-process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --journey-wrap: min(100% - 28px, 1180px); }
  .journey-header-inner { min-height: 68px; }
  .journey-brand { font-size: 18px; }
  .journey-brand img { width: 38px; height: 38px; }
  .journey-hero { padding: 72px 0 60px; }
  .journey-hero h1 { font-size: clamp(48px, 14vw, 66px); }
  .journey-rail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey-section { padding: 72px 0; }
  .journey-card, .journey-card.wide, .journey-card.half { grid-column: 1 / -1; }
  .journey-card { min-height: 0; }
  .journey-work-grid > .journey-card { min-height: 0; }
  .journey-company-paths { grid-template-columns: 1fr; }
  .journey-process { grid-template-columns: 1fr; }
  .journey-comparison { display: block; overflow-x: auto; }
  .journey-faq { grid-template-columns: 1fr; gap: 34px; }
  .journey-faq-intro { position: static; }
  .journey-cta-inner { grid-template-columns: 1fr; }
  .journey-cta .journey-button { width: 100%; }
  .journey-footer-inner { display: grid; }
  .journey-footer-links { justify-content: flex-start; }
}

@media (hover: none), (pointer: coarse) {
  [data-journey-tilt] { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body.journey-page::after { animation: none; }
  [data-journey-tilt], .journey-reveal, .journey-reveal.is-visible { transform: none; translate: none; filter: none; opacity: 1; transition: none; }
}

@keyframes journeyAmbientPulse {
  from { opacity: 0.5; }
  to { opacity: 0.86; }
}
