:root {
  --ink: #071d35;
  --ink-soft: #173651;
  --blue: #0879f9;
  --blue-bright: #2da4ff;
  --sky: #ddecff;
  --paper: #ffffff;
  --mist: #f4f7fa;
  --line: #dce5ed;
  --stone: #e9e5df;
  --success: #11784a;
  --danger: #a82c2c;
  --shadow-sm: 0 12px 32px rgba(7, 29, 53, 0.08);
  --shadow-lg: 0 28px 70px rgba(7, 29, 53, 0.14);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --max: 1220px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
}

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

.container {
  width: min(calc(100% - 44px), var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: #8dc8ff;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 13ch;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.9rem);
  font-weight: 750;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.8vw, 4.7rem);
  font-weight: 730;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 720;
}

.lede {
  max-width: 700px;
  color: #496379;
  font-size: clamp(1.08rem, 1.9vw, 1.3rem);
}

.muted {
  color: #5e7284;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button::after {
  font-size: 1.2em;
  line-height: 0;
  content: "↗";
}

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

.button--primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 10px 26px rgba(7, 29, 53, 0.2);
}

.button--primary:hover {
  background: #102e4b;
}

.button--blue {
  color: var(--paper);
  background: var(--blue);
  box-shadow: 0 10px 26px rgba(8, 121, 249, 0.28);
}

.button--blue:hover {
  background: #006ce5;
}

.button--light {
  color: var(--ink);
  background: var(--paper);
}

.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: #b8c7d3;
}

.button--outline:hover {
  background: var(--mist);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(7, 29, 53, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  width: 32px;
  height: 30px;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  top: 13px;
  width: 22px;
  height: 5px;
  background: var(--blue);
  border-radius: 5px;
  content: "";
}

.brand-mark::before {
  left: -1px;
  transform: rotate(-48deg);
}

.brand-mark::after {
  right: -1px;
  transform: rotate(48deg);
}

.brand-word {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: 0.23em;
  line-height: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.2vw, 42px);
}

.nav-menu a {
  position: relative;
  padding: 28px 0 24px;
  color: #39546a;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.nav-menu a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Home hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0 0 0 39%;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 29, 53, 0.24), transparent 36%);
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(64%, 880px);
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  padding: clamp(70px, 8vw, 120px) max(44px, calc((100vw - var(--max)) / 2));
  color: var(--paper);
  background: linear-gradient(145deg, #006fe9 0%, #1590ff 62%, #37adff 100%);
  clip-path: polygon(0 0, 79% 0, 100% 100%, 0% 100%);
}

.hero-copy {
  width: min(650px, 78%);
}

.hero h1 {
  color: var(--paper);
  font-size: clamp(3.25rem, 7.3vw, 7rem);
  text-transform: uppercase;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  width: 1px;
  height: 42px;
  background: currentColor;
  content: "";
}

/* Sections */
.section {
  padding: clamp(78px, 10vw, 140px) 0;
}

.section--mist {
  background: var(--mist);
}

.section--ink {
  color: var(--paper);
  background: var(--ink);
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.62fr);
  align-items: end;
  gap: 60px;
  margin-bottom: clamp(44px, 7vw, 78px);
}

.section-intro h2,
.section-intro p {
  margin-bottom: 0;
}

.section-intro p {
  color: #5b7286;
}

.section--ink .section-intro p {
  color: #aabcc9;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.benefit {
  min-height: 300px;
  padding: 38px clamp(20px, 3.8vw, 54px) 16px 0;
  border-right: 1px solid var(--line);
}

.benefit + .benefit {
  padding-left: clamp(20px, 3.8vw, 54px);
}

.benefit:last-child {
  border-right: 0;
}

.benefit-number {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: 58px;
  color: var(--blue);
  background: var(--sky);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.benefit p {
  max-width: 31ch;
  color: #5e7284;
}

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

.story-card {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.story-card:nth-child(1),
.story-card:nth-child(4) {
  grid-column: span 7;
}

.story-card:nth-child(2),
.story-card:nth-child(3) {
  grid-column: span 5;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.story-card::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(3, 18, 33, 0.8));
  content: "";
}

.story-card:hover img {
  transform: scale(1.035);
}

.story-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
  color: var(--paper);
}

.story-copy p {
  max-width: 46ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.story-kicker {
  display: block;
  margin-bottom: 9px;
  color: #9dd2ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: #23415b;
  border: 1px solid #23415b;
  border-radius: var(--radius);
}

.process-step {
  min-height: 320px;
  padding: 38px;
  background: var(--ink);
}

.process-step span {
  display: block;
  margin-bottom: 74px;
  color: #79bdff;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.process-step p {
  color: #aabcc9;
}

.trust-strip {
  padding: 30px 0;
  background: #0d2945;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 46px;
  margin: 0;
  padding: 0;
  color: #c6d4df;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.trust-list li::before {
  width: 7px;
  height: 7px;
  background: var(--blue-bright);
  border-radius: 50%;
  content: "";
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 120px) 0;
  color: var(--paper);
  background: linear-gradient(135deg, #0879f9, #1c98ff);
}

.cta-band::after {
  position: absolute;
  top: -70%;
  right: -8%;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.045), 0 0 0 160px rgba(255, 255, 255, 0.03);
  content: "";
}

.cta-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
}

.cta-layout h2 {
  max-width: 750px;
  margin-bottom: 0;
}

/* Internal pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 12vw, 168px) 0 clamp(70px, 9vw, 120px);
  color: var(--paper);
  background: var(--ink);
}

.page-hero::after {
  position: absolute;
  top: -140px;
  right: -80px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(76, 175, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(46, 162, 255, 0.045), 0 0 0 180px rgba(46, 162, 255, 0.025);
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 12ch;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: #b7c8d5;
  font-size: clamp(1.08rem, 1.9vw, 1.32rem);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.split-layout--reverse .split-media {
  order: -1;
}

.split-media {
  min-height: 530px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

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

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #3d586d;
}

.check-list li::before {
  position: absolute;
  top: 0.38em;
  left: 0;
  width: 18px;
  height: 18px;
  color: var(--paper);
  background: var(--blue);
  border-radius: 50%;
  content: "✓";
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.service-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card,
.value-card {
  padding: clamp(28px, 4vw, 46px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.service-card .card-number,
.value-card .card-number {
  display: block;
  margin-bottom: 46px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.service-card p,
.value-card p {
  color: #5e7284;
}

.price-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.price-card:last-child {
  border-bottom: 1px solid var(--line);
}

.price-card p {
  max-width: 620px;
  margin: 0;
  color: #5e7284;
}

.price-label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.quote {
  max-width: 960px;
  margin: auto;
  text-align: center;
}

.quote blockquote {
  margin: 0 0 28px;
  font-size: clamp(1.85rem, 4vw, 3.7rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.quote cite {
  color: #aabcc9;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 760;
  text-align: left;
}

.faq-item button::after {
  flex: 0 0 auto;
  color: var(--blue);
  content: "+";
  font-size: 1.7rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 760px;
  padding: 0 0 28px;
  margin: 0;
  color: #5e7284;
}

.faq-item button[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

/* Form */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.52fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 110px);
}

.contact-details {
  display: grid;
  gap: 28px;
  align-content: start;
}

.contact-detail {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-detail span {
  display: block;
  margin-bottom: 7px;
  color: #718596;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail strong {
  font-size: 1.12rem;
  font-weight: 700;
}

.contact-detail a:hover {
  color: var(--blue);
}

.form-card {
  padding: clamp(28px, 5vw, 58px);
  background: var(--mist);
  border-radius: var(--radius);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.choice-title {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.045em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #cbd8e2;
  border-radius: 12px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(8, 121, 249, 0.12);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice label {
  display: block;
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid #cbd8e2;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
}

.choice input:checked + label {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.choice input:focus-visible + label {
  outline: 3px solid var(--blue-bright);
  outline-offset: 3px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.form-note {
  margin: 0;
  color: #718596;
  font-size: 0.78rem;
}

.form-status {
  min-height: 24px;
  margin: 18px 0 0;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Legal / utility */
.prose {
  max-width: 820px;
}

.prose h2 {
  margin-top: 54px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.prose h3 {
  margin-top: 34px;
}

.prose p,
.prose li {
  color: #4c667a;
}

.success-card {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(38px, 7vw, 76px);
  text-align: center;
  background: var(--mist);
  border-radius: var(--radius-lg);
}

.success-icon {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  color: var(--paper);
  background: var(--success);
  border-radius: 50%;
  font-size: 1.8rem;
}

/* Footer */
.site-footer {
  padding: 70px 0 28px;
  color: #c3d0da;
  background: #051629;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.55fr);
  gap: 44px;
  padding-bottom: 58px;
}

.footer-brand .brand-word {
  color: var(--paper);
}

.footer-brand p {
  max-width: 340px;
  margin-top: 24px;
  color: #91a6b7;
}

.footer-col h2 {
  margin: 5px 0 20px;
  color: #7790a4;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  width: fit-content;
  margin-bottom: 12px;
  color: #c3d0da;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--paper);
}

.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  color: #758b9d;
  border-top: 1px solid #1b3246;
  font-size: 0.75rem;
}

.footer-base p {
  margin: 0;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 24px 22px 38px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

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

  .hero {
    min-height: auto;
    background: var(--blue);
  }

  .hero-media {
    position: relative;
    inset: auto;
    height: 48vh;
    min-height: 360px;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(7, 29, 53, 0.2), transparent 50%);
  }

  .hero-panel {
    width: 100%;
    min-height: auto;
    margin-top: -2px;
    padding: 66px 22px 78px;
    clip-path: none;
  }

  .hero-copy {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 11vw, 6.2rem);
  }

  .hero-scroll {
    display: none;
  }

  .section-intro,
  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .split-layout--reverse .split-media {
    order: initial;
  }

  .benefit-grid,
  .service-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    min-height: auto;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit + .benefit {
    padding-left: 0;
  }

  .benefit-number {
    margin-bottom: 28px;
  }

  .story-card,
  .story-card:nth-child(n) {
    grid-column: span 6;
    min-height: 420px;
  }

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

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

  .process-step span {
    margin-bottom: 32px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .brand-word {
    font-size: 1rem;
  }

  .hero-media {
    height: 38vh;
    min-height: 290px;
  }

  .hero-panel {
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.7rem);
  }

  .hero-actions,
  .cta-layout,
  .form-actions,
  .footer-base {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .cta-layout .button,
  .form-actions .button {
    width: 100%;
  }

  .story-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .story-card,
  .story-card:nth-child(n) {
    grid-column: 1;
    min-height: 390px;
  }

  .story-copy {
    padding: 26px;
  }

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

  .service-grid,
  .value-grid {
    gap: 14px;
  }

  .price-card {
    grid-template-columns: 1fr;
  }

  .price-label {
    text-align: left;
  }

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

  .field--full {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-brand {
    padding-bottom: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

/* Reference-matched LASERIQ homepage */
.reference-home {
  background: #fff;
  color: #020d24;
}

.reference-header {
  position: relative;
  z-index: 100;
  height: 130px;
  background: #fff;
}

.reference-header-inner {
  display: flex;
  width: min(calc(100% - 64px), 1480px);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.reference-logo {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  color: #05080e;
  line-height: 1;
}

.reference-logo-word {
  display: inline-flex;
  align-items: baseline;
  font-family: "Arial Narrow", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(2.45rem, 4.05vw, 4.05rem);
  font-weight: 650;
  letter-spacing: 0.135em;
  transform: scaleX(1.07);
  transform-origin: left center;
}

.reference-logo-word > span:nth-child(2),
.reference-logo-word > span:nth-child(3) {
  color: #071b43;
}

.reference-logo-i {
  position: relative;
}

.reference-logo-i i {
  position: absolute;
  top: -0.42em;
  left: 50%;
  color: #00a6ff;
  font-family: Georgia, serif;
  font-size: 0.43em;
  font-style: normal;
  font-weight: 400;
  transform: translateX(-50%);
}

.reference-logo-tagline {
  margin-top: 10px;
  color: #001e54;
  font-size: clamp(0.59rem, 0.85vw, 0.79rem);
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.reference-nav {
  display: flex;
  align-items: center;
  gap: clamp(32px, 4.8vw, 72px);
}

.reference-nav > a:not(.reference-nav-cta) {
  position: relative;
  padding: 32px 0 24px;
  color: #060b14;
  font-size: 0.83rem;
  font-weight: 760;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.reference-nav > a:not(.reference-nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 2px;
  background: #073ea2;
  content: "";
  transform: scaleX(0);
  transition: transform 170ms ease;
}

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

.reference-nav-cta,
.reference-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 14px 27px;
  color: #fff;
  background: #063e9e;
  border-radius: 2px;
  box-shadow: 0 7px 16px rgba(4, 50, 129, 0.16);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease;
}

.reference-nav-cta:hover,
.reference-button:hover {
  background: #0752cd;
  transform: translateY(-2px);
}

.reference-menu-toggle {
  display: none;
}

.reference-hero {
  position: relative;
  height: 390px;
  overflow: hidden;
  background: #020d24;
}

.reference-hero-picture,
.reference-hero-picture img {
  width: 100%;
  height: 100%;
}

.reference-hero-picture {
  display: block;
}

.reference-hero-picture img {
  object-fit: cover;
  object-position: center;
}

.reference-hero-panel {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  width: min(46%, 700px);
  flex-direction: column;
  justify-content: center;
  padding: 35px 94px 30px 42px;
  color: #fff;
  background: linear-gradient(112deg, #020b20 0%, #020d24 74%, #04142f 100%);
  clip-path: polygon(0 0, 86% 0, 100% 100%, 0 100%);
}

.laser-rule {
  position: relative;
  width: 82%;
  height: 1px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, #087df5, #38bcff);
}

.laser-rule span {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 4px 2px #fff, 0 0 10px 5px #009dff, 0 0 20px 8px rgba(0, 127, 255, 0.5);
  transform: translate(50%, -50%);
}

.reference-hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(1.75rem, 2.55vw, 2.5rem);
  font-weight: 780;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-transform: uppercase;
}

.reference-hero h1 span,
.reference-hero h1 strong {
  display: block;
}

.reference-hero h1 strong {
  color: #078cff;
  font-weight: 780;
  white-space: nowrap;
}

.short-rule {
  width: 67%;
  height: 1px;
  margin: 18px 0 17px;
  background: linear-gradient(90deg, #fff 0 45%, rgba(255,255,255,0.06) 100%);
}

.reference-hero-panel > p {
  max-width: 460px;
  margin-bottom: 23px;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.55;
}

.reference-button {
  width: fit-content;
  min-width: 256px;
}

.reference-button span {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 0;
}

.reference-benefits {
  min-height: 148px;
  display: grid;
  align-items: center;
  background: #fff;
}

.reference-benefits-inner {
  display: grid;
  width: min(calc(100% - 190px), 1230px);
  margin-inline: auto;
  grid-template-columns: repeat(3, 1fr);
}

.reference-benefit {
  display: grid;
  min-height: 90px;
  grid-template-columns: 64px 1fr;
  align-items: start;
  gap: 18px;
  padding: 10px 32px;
  border-right: 1px solid #9eabba;
}

.reference-benefit:first-child {
  padding-left: 0;
}

.reference-benefit:last-child {
  padding-right: 0;
  border-right: 0;
}

.reference-benefit h2 {
  margin: 0 0 3px;
  color: #071021;
  font-size: 1rem;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.reference-benefit p {
  margin: 0;
  color: #131b28;
  font-size: 0.79rem;
  line-height: 1.75;
}

.feature-symbol {
  position: relative;
  width: 52px;
  height: 54px;
  color: #073e9e;
}

.feature-symbol--shield {
  width: 46px;
  height: 54px;
  margin-left: 4px;
  border: 2px solid currentColor;
  border-radius: 3px 3px 20px 20px;
  clip-path: polygon(50% 0, 100% 12%, 100% 61%, 85% 82%, 50% 100%, 15% 82%, 0 61%, 0 12%);
}

.feature-symbol--target {
  width: 44px;
  height: 44px;
  margin: 4px 0 0 5px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.feature-symbol--target::before,
.feature-symbol--target::after {
  position: absolute;
  background: currentColor;
  content: "";
}

.feature-symbol--target::before { top: 19px; left: -10px; width: 60px; height: 2px; }
.feature-symbol--target::after { top: -10px; left: 19px; width: 2px; height: 60px; }
.feature-symbol--target i { position:absolute; inset:11px; background:currentColor; border-radius:50%; }

.feature-symbol--document {
  width: 40px;
  height: 52px;
  margin-left: 5px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.feature-symbol--document::before {
  position: absolute;
  top: 13px;
  left: 7px;
  width: 24px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 9px 0 currentColor, 0 18px 0 currentColor;
  content: "";
}

.feature-symbol--document::after {
  position: absolute;
  right: -8px;
  bottom: 3px;
  width: 5px;
  height: 27px;
  background: #fff;
  border: 2px solid currentColor;
  content: "";
  transform: rotate(42deg);
}

.reference-showcase {
  display: grid;
  padding: 0 16px 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: #fff;
}

.reference-tile {
  display: grid;
  grid-template-rows: minmax(0, 215px) 46px;
  overflow: hidden;
  background: #020d24;
}

.reference-tile picture,
.reference-tile img {
  width: 100%;
  height: 100%;
}

.reference-tile img {
  object-fit: cover;
  transition: transform 420ms ease;
}

.reference-tile:hover img {
  transform: scale(1.035);
}

.reference-tile-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #fff;
  background: #021334;
  font-size: 0.92rem;
  font-weight: 780;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.tile-symbol {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  color: #fff;
}

.tile-symbol--bath::before { position:absolute; left:2px; bottom:4px; width:20px; height:9px; border:1.5px solid currentColor; border-top:0; border-radius:0 0 7px 7px; content:""; }
.tile-symbol--bath::after { position:absolute; top:4px; right:2px; width:6px; height:6px; border:1.5px solid currentColor; border-radius:50%; box-shadow:-15px 13px 0 -2px currentColor; content:""; }
.tile-symbol--kitchen { border:1.5px solid currentColor; border-radius:2px; }
.tile-symbol--kitchen::before { position:absolute; inset:4px 4px auto; height:6px; border:1.5px solid currentColor; content:""; }
.tile-symbol--kitchen::after { position:absolute; left:4px; right:4px; bottom:4px; height:6px; border:1.5px solid currentColor; content:""; }
.tile-symbol--pack { border:1.5px solid currentColor; border-radius:2px; }
.tile-symbol--pack::before { position:absolute; top:5px; left:5px; width:12px; height:1px; background:currentColor; box-shadow:0 5px 0 currentColor,0 10px 0 currentColor; content:""; }
.tile-symbol--people::before,.tile-symbol--people::after { position:absolute; top:1px; width:8px; height:8px; border:1.5px solid currentColor; border-radius:50%; content:""; }
.tile-symbol--people::before { left:2px; }.tile-symbol--people::after { right:2px; }
.tile-symbol--people { border-bottom:1.5px solid currentColor; border-radius:0 0 12px 12px; }

.reference-trust {
  display: grid;
  min-height: 94px;
  align-items: center;
  background: #f8f9fb;
}

.reference-trust-inner {
  display: flex;
  width: fit-content;
  margin-inline: auto;
  align-items: center;
  gap: 30px;
}

.reference-trust-inner > div:last-child {
  display: flex;
  min-height: 51px;
  flex-direction: column;
  justify-content: center;
  padding-left: 30px;
  border-left: 1px solid #8c9bab;
}

.reference-trust strong,
.reference-trust span {
  display: block;
}

.reference-trust strong {
  color: #071021;
  font-size: 1.02rem;
  font-weight: 830;
  line-height: 1.35;
  text-transform: uppercase;
}

.reference-trust span {
  color: #111a28;
  font-size: 0.88rem;
}

.trust-target {
  position: relative;
  width: 40px;
  height: 40px;
  color: #073e9e;
  border: 1.7px solid currentColor;
  border-radius: 50%;
}

.trust-target::before,.trust-target::after { position:absolute; background:currentColor; content:""; }
.trust-target::before { top:18px; left:-8px; width:54px; height:2px; }
.trust-target::after { top:-8px; left:18px; width:2px; height:54px; }
.trust-target i { position:absolute; inset:10px; background:currentColor; border-radius:50%; }

.reference-footer {
  padding-top: 70px;
}

@media (max-width: 1180px) {
  .reference-header-inner { width: min(calc(100% - 40px), 1480px); }
  .reference-logo-word { font-size: 2.9rem; }
  .reference-logo-tagline { font-size: 0.58rem; }
  .reference-nav { gap: 24px; }
  .reference-hero-panel { width: 55%; padding-right: 100px; }
  .reference-hero h1 { font-size: 1.85rem; }
  .reference-benefits-inner { width: calc(100% - 60px); }
  .reference-benefit { padding-inline: 22px; grid-template-columns: 54px 1fr; }
}

@media (max-width: 900px) {
  .reference-header { height: 86px; }
  .reference-header-inner { width: calc(100% - 32px); }
  .reference-logo-word { font-size: 2.2rem; }
  .reference-logo-tagline { margin-top:7px; font-size:0.48rem; letter-spacing:0.18em; }
  .reference-menu-toggle { display:inline-flex; }
  .reference-nav { position:fixed; inset:86px 0 auto; display:grid; gap:0; padding:18px 22px 28px; background:#fff; border-top:1px solid #e3e9ef; box-shadow:0 20px 40px rgba(2,13,36,.14); opacity:0; pointer-events:none; transform:translateY(-12px); transition:opacity .18s ease,transform .18s ease; }
  .reference-nav.is-open { opacity:1; pointer-events:auto; transform:none; }
  .reference-nav > a:not(.reference-nav-cta) { padding:13px 4px; border-bottom:1px solid #e3e9ef; }
  .reference-nav > a:not(.reference-nav-cta)::after { display:none; }
  .reference-nav-cta { margin-top:16px; }
  .reference-hero { height:auto; display:flex; flex-direction:column; }
  .reference-hero-picture { height:330px; order:1; }
  .reference-hero-panel { position:relative; inset:auto; width:100%; padding:50px 28px 58px; clip-path:none; order:2; }
  .reference-hero h1 { font-size:clamp(1.8rem,5.2vw,2.7rem); }
  .reference-hero-panel > p { max-width:620px; }
  .reference-benefits-inner { width:calc(100% - 40px); grid-template-columns:1fr; }
  .reference-benefit,.reference-benefit:first-child,.reference-benefit:last-child { min-height:118px; padding:24px 8px; border-right:0; border-bottom:1px solid #ccd5de; }
  .reference-benefit:last-child { border-bottom:0; }
  .reference-showcase { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 560px) {
  .reference-logo-word { font-size:1.8rem; }
  .reference-logo-tagline { max-width:250px; font-size:.42rem; }
  .reference-hero-picture { height:245px; }
  .reference-hero-panel { padding:42px 20px 50px; }
  .reference-hero h1 { font-size:1.65rem; }
  .reference-hero h1 strong { white-space:normal; }
  .reference-button { width:100%; min-width:0; }
  .reference-showcase { grid-template-columns:1fr; padding:0 12px; gap:12px; }
  .reference-tile { grid-template-rows:minmax(0,230px) 48px; }
  .reference-trust { padding:28px 20px; }
  .reference-trust-inner { width:100%; align-items:flex-start; gap:17px; }
  .reference-trust-inner > div:last-child { padding-left:17px; }
  .reference-trust strong { font-size:.9rem; }
  .reference-trust span { font-size:.78rem; }
}
