/* =========================================================
   Darkstorm Digital — Version 1
   Self-contained design system, no external font dependency
   ========================================================= */

:root {
  --navy-950: #07101d;
  --navy-900: #0a1424;
  --navy-850: #0d192b;
  --navy-800: #111f34;
  --blue-700: #147ac2;
  --blue-600: #198fdf;
  --blue-500: #31a8f7;
  --blue-400: #73c9ff;
  --blue-100: #dff3ff;
  --ink-900: #101c2d;
  --ink-700: #35445a;
  --ink-600: #556276;
  --ink-500: #6d7888;
  --line: #dce4ec;
  --line-dark: rgba(255, 255, 255, 0.11);
  --surface: #ffffff;
  --surface-soft: #f4f7fa;
  --surface-blue: #eef7fd;
  --success: #12805c;
  --shadow-sm: 0 10px 30px rgba(16, 37, 61, 0.07);
  --shadow-md: 0 22px 60px rgba(11, 31, 55, 0.12);
  --shadow-lg: 0 35px 90px rgba(0, 11, 29, 0.28);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 78px;
  --font: Inter, Avenir, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--surface);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

::selection {
  color: #fff;
  background: var(--blue-600);
}

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

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

.section {
  padding: 116px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  color: var(--navy-950);
  background: #fff;
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: height 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  height: 70px;
  background: rgba(7, 16, 29, 0.94);
  border-color: var(--line-dark);
  box-shadow: 0 12px 35px rgba(0, 8, 22, 0.2);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, var(--blue-400), var(--blue-600));
  border-radius: 7px 11px 7px 11px;
  box-shadow: 0 0 26px rgba(49, 168, 247, 0.24);
  transform: skewX(-7deg);
}

.brand-mark::before {
  position: absolute;
  width: 12px;
  height: 16px;
  content: "";
  border: 3px solid var(--navy-950);
  border-left-width: 4px;
  border-radius: 1px 7px 7px 1px;
  transform: skewX(7deg);
}

.brand-mark span {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 10px;
  height: 3px;
  background: var(--navy-950);
  transform: skewX(-36deg);
}

.brand-name {
  color: #fff;
  font-size: 0.91rem;
  font-weight: 760;
  letter-spacing: 0.125em;
  line-height: 1;
  white-space: nowrap;
}

.brand-name strong {
  color: var(--blue-400);
  font-weight: inherit;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(19px, 2.1vw, 31px);
}

.site-nav > a:not(.button) {
  position: relative;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.88rem;
  font-weight: 620;
  transition: color 180ms ease;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-400);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible,
.site-nav > a.is-active {
  color: #fff;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a.is-active::after {
  transform: scaleX(1);
}

.language-switcher {
  display: inline-flex;
  padding-left: 17px;
  align-items: center;
  gap: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.language-switcher a {
  display: grid;
  min-width: 27px;
  height: 27px;
  color: rgba(255, 255, 255, 0.52);
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.05em;
  place-items: center;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  color: #fff;
}

.language-switcher a[aria-current="page"] {
  color: #fff;
  background: rgba(49, 168, 247, 0.14);
  border-color: rgba(115, 201, 255, 0.25);
}

.language-switcher > span {
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.65rem;
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 42px;
  padding: 9px;
  color: #fff;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 23px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), #1476c8);
  border-color: rgba(94, 195, 255, 0.28);
  box-shadow: 0 12px 28px rgba(17, 129, 204, 0.26), inset 0 1px rgba(255, 255, 255, 0.16);
}

.button-primary:hover {
  background: linear-gradient(135deg, #20a0ee, #1683d8);
  box-shadow: 0 16px 32px rgba(17, 129, 204, 0.34), inset 0 1px rgba(255, 255, 255, 0.16);
}

.button-secondary {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.29);
}

.button-light {
  color: var(--navy-950);
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 11, 29, 0.2);
}

.button-light:hover {
  background: var(--blue-100);
  box-shadow: 0 19px 38px rgba(0, 11, 29, 0.25);
}

.button-small {
  min-height: 41px;
  padding: 10px 17px;
  border-radius: 8px;
  font-size: 0.84rem;
}

/* Hero */

.hero {
  position: relative;
  min-height: 850px;
  padding: calc(var(--header-height) + 112px) 0 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 28%, rgba(27, 134, 214, 0.16), transparent 29%),
    linear-gradient(123deg, #08111f 0%, #0b1728 58%, #091524 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 180px;
  right: -160px;
  width: 580px;
  height: 580px;
  opacity: 0.32;
  background: #107dca;
  border-radius: 50%;
  filter: blur(145px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(45px, 6vw, 87px);
  align-items: center;
}

.eyebrow {
  display: flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 9px;
  color: var(--blue-400);
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 27px;
  height: 2px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--blue-700);
}

.hero h1 {
  max-width: 670px;
  margin: 0;
  color: #f8fbff;
  font-size: clamp(3.05rem, 5.4vw, 5.25rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1.025;
}

.hero h1 span,
.section-heading h2 span,
.offer-card h2 span,
.about-copy h2 span,
.final-cta h2 span,
.contact-copy h2 span {
  color: var(--blue-500);
}

.hero-lead {
  max-width: 570px;
  margin: 27px 0 31px;
  color: rgba(222, 232, 243, 0.76);
  font-size: 1.08rem;
  line-height: 1.72;
}

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

.hero-location {
  display: flex;
  margin: 24px 0 0;
  align-items: center;
  gap: 9px;
  color: rgba(222, 232, 243, 0.58);
  font-size: 0.79rem;
}

.hero-location svg {
  width: 16px;
  fill: none;
  stroke: var(--blue-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

/* CSS-built browser artwork */

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 600px;
  min-height: 455px;
  justify-self: end;
}

.hero-visual::before {
  position: absolute;
  inset: 35px -30px 25px 35px;
  content: "";
  opacity: 0.42;
  background: radial-gradient(circle, rgba(49, 168, 247, 0.3), transparent 66%);
  filter: blur(35px);
}

.browser-card {
  position: absolute;
  top: 13px;
  right: 0;
  left: 9px;
  overflow: hidden;
  background: #f5f8fb;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  box-shadow: var(--shadow-lg), 0 0 0 7px rgba(255, 255, 255, 0.025);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.browser-bar {
  display: grid;
  height: 43px;
  padding: 0 16px;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  color: var(--ink-600);
  background: #edf1f5;
  border-bottom: 1px solid #dae2ea;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i,
.mock-bar i {
  width: 7px;
  height: 7px;
  background: #c1cad4;
  border-radius: 50%;
}

.browser-dots i:first-child,
.mock-bar i:first-child { background: #ff8b83; }
.browser-dots i:nth-child(2),
.mock-bar i:nth-child(2) { background: #f3c55e; }
.browser-dots i:nth-child(3),
.mock-bar i:nth-child(3) { background: #66c890; }

.browser-address {
  padding: 4px 12px;
  background: #fff;
  border-radius: 5px;
  font-size: 0.61rem;
  text-align: center;
}

.browser-lock {
  justify-self: end;
}

.browser-lock svg {
  width: 13px;
  fill: none;
  stroke: #7990a5;
  stroke-width: 2;
}

.browser-content {
  min-height: 370px;
  padding: 19px 23px 22px;
  background: linear-gradient(145deg, #fff 0%, #f2f7fb 100%);
}

.preview-nav {
  display: flex;
  height: 19px;
  align-items: center;
  gap: 12px;
}

.preview-nav > span:not(.preview-logo) {
  width: 29px;
  height: 3px;
  background: #d5dde4;
  border-radius: 2px;
}

.preview-nav .preview-logo {
  width: 66px;
  height: 9px;
  margin-right: auto;
  background: var(--navy-800);
  border-radius: 2px;
}

.preview-nav b {
  width: 55px;
  height: 18px;
  margin-left: 5px;
  background: var(--blue-600);
  border-radius: 4px;
}

.preview-hero {
  display: grid;
  min-height: 241px;
  margin-top: 20px;
  padding: 27px 24px;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 23px;
  align-items: center;
  overflow: hidden;
  background: #0e1c2f;
  border-radius: 8px;
}

.preview-copy > span {
  display: block;
}

.preview-kicker {
  width: 51px;
  height: 4px;
  margin-bottom: 12px;
  background: var(--blue-500);
  border-radius: 3px;
}

.preview-line {
  height: 12px;
  margin-top: 6px;
  background: #f6f9fc;
  border-radius: 2px;
}

.preview-line-long { width: 98%; }
.preview-line-mid { width: 77%; }

.preview-text {
  width: 88%;
  height: 4px;
  margin-top: 18px;
  background: #65748a;
  border-radius: 2px;
}

.preview-text-short {
  width: 64%;
  margin-top: 6px;
}

.preview-button {
  width: 68px;
  height: 22px;
  margin-top: 19px;
  background: var(--blue-600);
  border-radius: 4px;
}

.preview-image {
  position: relative;
  height: 174px;
  overflow: hidden;
  background: linear-gradient(145deg, #17334c, #16263a);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 7px;
}

.preview-shape {
  position: absolute;
  top: -27px;
  right: -27px;
  width: 105px;
  height: 105px;
  background: var(--blue-600);
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.22;
}

.preview-image svg {
  position: absolute;
  right: 13px;
  bottom: 11px;
  left: 13px;
  fill: rgba(49, 168, 247, 0.07);
  stroke: #4f9bd0;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.preview-cards {
  display: grid;
  margin-top: 13px;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.preview-cards span {
  height: 52px;
  background: #fff;
  border: 1px solid #e1e8ee;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(17, 42, 65, 0.04);
}

.floating-badge {
  position: absolute;
  display: flex;
  padding: 11px 15px 11px 11px;
  align-items: center;
  gap: 10px;
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  box-shadow: 0 16px 35px rgba(0, 11, 29, 0.26);
  animation: gentle-float 5s ease-in-out infinite;
}

.floating-badge-speed {
  top: -23px;
  right: -13px;
}

.floating-badge-mobile {
  right: 34px;
  bottom: 0;
  animation-delay: -2.4s;
}

.badge-icon {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--blue-600);
  background: var(--surface-blue);
  border-radius: 8px;
  place-items: center;
}

.badge-icon svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.floating-badge span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.floating-badge small {
  color: var(--ink-500);
  font-size: 0.61rem;
}

.floating-badge strong {
  font-size: 0.7rem;
}

@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* Trust strip */

.trust-strip {
  position: relative;
  z-index: 4;
  display: grid;
  min-height: 122px;
  margin-top: 90px;
  padding: 24px 31px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  color: var(--ink-900);
  background: #fff;
  border: 1px solid rgba(214, 226, 236, 0.82);
  border-radius: 15px;
  box-shadow: 0 24px 65px rgba(0, 10, 25, 0.23);
  transform: translateY(50%);
}

.trust-item {
  display: flex;
  min-width: 0;
  padding: 4px 24px;
  align-items: center;
  gap: 13px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child { padding-left: 4px; }
.trust-item:last-child { padding-right: 4px; border-right: 0; }

.trust-icon {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  color: var(--blue-600);
  background: var(--surface-blue);
  border-radius: 9px;
  place-items: center;
}

.trust-icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.trust-item > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.35;
}

.trust-item strong {
  font-size: 0.83rem;
}

.trust-item small {
  margin-top: 2px;
  color: var(--ink-500);
  font-size: 0.69rem;
}

/* Shared section headings */

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

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.offer-card h2,
.about-copy h2,
.final-cta h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink-900);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 750;
  letter-spacing: -0.046em;
  line-height: 1.08;
}

.section-heading > p:last-child {
  max-width: 660px;
  margin: 20px auto 0;
  color: var(--ink-600);
  font-size: 1rem;
}

/* Services */

.services {
  padding-top: 174px;
  background: var(--surface-soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 410px;
  padding: 32px 27px 29px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0e7ee;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(14, 38, 64, 0.035);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-card:hover {
  border-color: #c8dce9;
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-number {
  position: absolute;
  top: 26px;
  right: 26px;
  color: #dbe3ea;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-icon {
  display: grid;
  width: 51px;
  height: 51px;
  margin-bottom: 25px;
  color: var(--blue-600);
  background: var(--surface-blue);
  border-radius: 12px;
  place-items: center;
}

.service-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.service-card > p {
  margin: 0 0 22px;
  color: var(--ink-600);
  font-size: 0.85rem;
  line-height: 1.67;
}

.check-list,
.offer-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-top: 9px;
  padding-left: 20px;
  color: var(--ink-700);
  font-size: 0.78rem;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue-600);
  content: "✓";
  font-weight: 800;
}

/* Offer */

.starter-offer {
  padding-top: 0;
  background: var(--surface-soft);
}

.offer-card {
  position: relative;
  display: grid;
  min-height: 450px;
  padding: 61px 65px;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 84px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 5% 15%, rgba(49, 168, 247, 0.2), transparent 31%),
    linear-gradient(135deg, #081321, #0d1d32);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.offer-card::before {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 480px;
  height: 480px;
  content: "";
  opacity: 0.16;
  background: var(--blue-500);
  border-radius: 50%;
  filter: blur(80px);
}

.offer-card::after {
  position: absolute;
  top: 50%;
  left: 47%;
  width: 1px;
  height: 62%;
  content: "";
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateY(-50%);
}

.offer-copy,
.offer-details {
  position: relative;
  z-index: 1;
}

.offer-label {
  display: inline-flex;
  padding: 7px 11px;
  margin: 0 0 17px;
  color: var(--blue-400);
  background: rgba(49, 168, 247, 0.1);
  border: 1px solid rgba(83, 183, 246, 0.2);
  border-radius: 20px;
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.offer-card h2 {
  color: #fff;
  font-size: clamp(2.55rem, 4vw, 3.65rem);
}

.offer-intro {
  max-width: 420px;
  margin: 16px 0 21px;
  color: rgba(224, 233, 242, 0.7);
  font-size: 0.9rem;
}

.offer-price {
  display: flex;
  margin-top: 12px;
  align-items: baseline;
  gap: 9px;
}

.offer-price span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
}

.offer-price strong {
  font-size: clamp(2.75rem, 5vw, 4.4rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.offer-price small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.offer-note {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.69rem;
}

.offer-details-title {
  margin: 0 0 18px;
  font-size: 0.87rem;
  font-weight: 720;
}

.offer-list {
  display: grid;
  margin-bottom: 25px;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(235, 242, 249, 0.8);
  font-size: 0.76rem;
}

.offer-list li span {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  color: var(--blue-400);
  background: rgba(49, 168, 247, 0.13);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
  place-items: center;
}

.offer-details .button {
  width: 100%;
}

.price-disclaimer {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.64rem;
  line-height: 1.5;
  text-align: center;
}

/* Projects */

.projects {
  background: #fff;
}

.section-heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.section-heading-row > p:last-child {
  max-width: 390px;
  margin: 0 0 4px;
}

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

.project-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe6ed;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.project-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.project-visual {
  position: relative;
  height: 282px;
  padding: 48px 24px 0;
  overflow: hidden;
}

.project-auto { background: linear-gradient(145deg, #24303c, #131a22); }
.project-craft { background: linear-gradient(145deg, #d8d0c5, #b9aa98); }
.project-transport { background: linear-gradient(145deg, #bce2f1, #87c5dd); }

.concept-label {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 17px;
  padding: 5px 9px;
  color: #fff;
  background: rgba(7, 16, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.mock-window {
  height: 250px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 18px 40px rgba(0, 9, 20, 0.25);
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
}

.project-card:hover .mock-window {
  transform: translateY(-7px);
}

.mock-bar {
  display: flex;
  height: 17px;
  padding: 0 7px;
  align-items: center;
  gap: 3px;
  background: #eef1f3;
}

.mock-bar i {
  width: 4px;
  height: 4px;
}

.mock-auto-nav,
.mock-craft-nav,
.mock-transport-nav {
  display: flex;
  height: 30px;
  padding: 0 12px;
  align-items: center;
  gap: 8px;
  background: #fff;
}

.mock-auto-nav b,
.mock-craft-nav b,
.mock-transport-nav b {
  margin-right: auto;
  color: #172231;
  font-size: 0.44rem;
  letter-spacing: 0.08em;
}

.mock-auto-nav b span { color: #dc4d38; }
.mock-craft-nav b span { color: #a3753e; }
.mock-transport-nav b span { color: #1983b4; }

.mock-auto-nav i,
.mock-craft-nav i,
.mock-transport-nav i {
  width: 20px;
  height: 2px;
  background: #d6dce1;
}

.mock-auto-hero,
.mock-transport-hero {
  position: relative;
  display: grid;
  height: 164px;
  padding: 25px 17px;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  overflow: hidden;
}

.mock-auto-hero {
  color: #fff;
  background: linear-gradient(135deg, #1b222a, #303944);
}

.mock-auto-hero small,
.mock-craft-hero small,
.mock-transport-hero small {
  display: block;
  margin-bottom: 7px;
  color: #e15a47;
  font-size: 0.36rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mock-auto-hero strong,
.mock-craft-hero strong,
.mock-transport-hero strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: -0.03em;
  line-height: 1.17;
}

.mock-auto-hero div > span,
.mock-craft-hero .craft-copy > span,
.mock-transport-hero div > span {
  display: block;
  width: 47px;
  height: 12px;
  margin-top: 12px;
  background: #dc4d38;
  border-radius: 2px;
}

.mock-auto-hero svg {
  width: 100%;
  fill: #46515d;
  stroke: #bec7cf;
  stroke-width: 3;
}

.mock-craft-hero {
  display: grid;
  height: 164px;
  grid-template-columns: 0.85fr 1.15fr;
  background: #f5f0e9;
}

.craft-copy {
  padding: 24px 0 20px 17px;
}

.mock-craft-hero small { color: #9e7444; }

.mock-craft-hero .craft-copy > span {
  background: #9e7444;
}

.craft-tiles {
  display: grid;
  padding: 14px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

.craft-tiles i {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent),
    repeating-linear-gradient(92deg, #79624b 0 9px, #987b5f 9px 10px);
  border-radius: 2px;
}

.craft-tiles i:nth-child(2) { background: linear-gradient(140deg, #5b6670 50%, #89949d 50%); }
.craft-tiles i:nth-child(3) { background: linear-gradient(25deg, #a08d76 50%, #725f4c 50%); }
.craft-tiles i:nth-child(4) { background: repeating-linear-gradient(45deg, #8b959b 0 6px, #737d83 6px 12px); }

.mock-transport-hero {
  color: #fff;
  background: linear-gradient(135deg, #153d58, #1d6388);
}

.mock-transport-hero small { color: #8ed9f5; }

.mock-transport-hero div > span { background: #f1b953; }

.mock-transport-hero svg {
  width: 100%;
  fill: #eef7fa;
  stroke: #bedce8;
  stroke-width: 3;
}

.project-copy {
  padding: 26px 27px 28px;
}

.project-type {
  margin: 0 0 7px;
  color: var(--blue-700);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-copy h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.project-copy > p:not(.project-type) {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.82rem;
  line-height: 1.65;
}

.project-tags {
  display: flex;
  margin-top: 19px;
  flex-wrap: wrap;
  gap: 6px;
}

.project-tags span {
  padding: 4px 8px;
  color: var(--ink-600);
  background: var(--surface-soft);
  border: 1px solid #e5ebf0;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 670;
}

/* Process */

.process {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 120%, rgba(22, 140, 218, 0.2), transparent 40%),
    var(--navy-900);
}

.process::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
}

.process .container {
  position: relative;
  z-index: 1;
}

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

.section-heading-light > p:last-child {
  color: rgba(222, 232, 243, 0.64);
}

.process-grid {
  position: relative;
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  list-style: none;
}

.process-grid::before {
  position: absolute;
  z-index: -1;
  top: 39px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(92, 188, 247, 0.42) 12%, rgba(92, 188, 247, 0.42) 88%, transparent);
}

.process-step {
  position: relative;
  text-align: center;
}

.step-number {
  position: absolute;
  top: 7px;
  right: calc(50% - 50px);
  color: rgba(255, 255, 255, 0.24);
  font-size: 0.6rem;
  font-weight: 800;
}

.step-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  color: var(--blue-400);
  background: var(--navy-800);
  border: 1px solid rgba(84, 183, 247, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--navy-900), 0 0 35px rgba(49, 168, 247, 0.1);
  place-items: center;
}

.step-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.process-step h3 {
  margin: 0 0 10px;
  color: #f5f9fd;
  font-size: 1.02rem;
}

.process-step p {
  max-width: 245px;
  margin: 0 auto;
  color: rgba(221, 231, 241, 0.59);
  font-size: 0.78rem;
  line-height: 1.68;
}

/* About */

.about {
  background: var(--surface-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 9vw, 125px);
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 520px;
}

.brand-visual {
  position: absolute;
  inset: 0 32px 28px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 34%, rgba(49, 168, 247, 0.2), transparent 30%),
    linear-gradient(145deg, #101f33, #091423 72%);
  border: 1px solid rgba(16, 35, 58, 0.1);
  border-radius: var(--radius-lg);
}

.brand-visual::before {
  position: absolute;
  top: -115px;
  right: -100px;
  width: 350px;
  height: 350px;
  content: "";
  opacity: 0.22;
  background: var(--blue-600);
  border-radius: 50%;
  filter: blur(78px);
}

.brand-visual::after {
  position: absolute;
  right: -58px;
  bottom: 48px;
  width: 235px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(115, 201, 255, 0.48), transparent);
  transform: rotate(-38deg);
}

.brand-visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(145deg, rgba(0, 0, 0, 0.85), transparent 82%);
}

.brand-visual-frame {
  position: absolute;
  inset: 42px 43px 55px 42px;
  border: 1px solid rgba(115, 201, 255, 0.14);
  border-radius: 20px;
  transform: rotate(-4deg);
}

.brand-visual-frame::before,
.brand-visual-frame::after {
  position: absolute;
  width: 52px;
  height: 52px;
  content: "";
  border-color: rgba(115, 201, 255, 0.52);
  border-style: solid;
}

.brand-visual-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
  border-radius: 20px 0 0;
}

.brand-visual-frame::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 20px;
}

.brand-visual-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 210px;
  height: 210px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(25, 48, 76, 0.93), rgba(9, 22, 39, 0.94));
  border: 1px solid rgba(115, 201, 255, 0.2);
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(0, 7, 19, 0.4), inset 0 1px rgba(255, 255, 255, 0.07), 0 0 55px rgba(49, 168, 247, 0.1);
  transform: translate(-50%, -54%) rotate(-4deg);
}

.brand-mark-large {
  width: 76px;
  height: 76px;
  margin-bottom: 20px;
  border-radius: 17px 26px 17px 26px;
  box-shadow: 0 17px 38px rgba(23, 143, 220, 0.27);
}

.brand-mark-large::before {
  width: 31px;
  height: 42px;
  border-width: 7px;
  border-left-width: 9px;
  border-radius: 2px 16px 16px 2px;
}

.brand-mark-large span {
  right: 14px;
  bottom: 14px;
  width: 26px;
  height: 7px;
}

.brand-visual-emblem p {
  display: flex;
  margin: 0;
  align-items: center;
  flex-direction: column;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 790;
  letter-spacing: 0.16em;
  line-height: 1.45;
  transform: rotate(4deg);
}

.brand-visual-emblem p span {
  color: var(--blue-400);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
}

.brand-visual-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(115, 201, 255, 0.48), transparent);
  transform-origin: left;
}

.brand-visual-line-one {
  top: 25%;
  left: 0;
  width: 45%;
  transform: rotate(27deg);
}

.brand-visual-line-two {
  right: -8%;
  bottom: 25%;
  width: 52%;
  transform: rotate(27deg);
}

.brand-visual-node {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--blue-400);
  border: 3px solid #17314c;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(49, 168, 247, 0.08), 0 0 22px rgba(49, 168, 247, 0.36);
}

.brand-visual-node-one {
  top: 17%;
  left: 19%;
}

.brand-visual-node-two {
  top: 30%;
  right: 15%;
}

.brand-visual-node-three {
  bottom: 20%;
  left: 16%;
}

.about-card {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  min-width: 250px;
  padding: 18px 20px;
  align-items: center;
  gap: 14px;
  color: #fff;
  background: var(--blue-700);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  box-shadow: 0 18px 45px rgba(12, 67, 107, 0.28);
}

.brand-mark-small {
  width: 33px;
  height: 33px;
  flex: 0 0 33px;
  background: #fff;
  box-shadow: none;
}

.brand-mark-small::before { border-color: var(--blue-700); }
.brand-mark-small span { background: var(--blue-700); }

.about-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  line-height: 1.5;
}

.about-card strong { color: #fff; }

.about-copy h2 {
  margin-bottom: 24px;
}

.about-lead {
  margin: 0 0 15px;
  color: var(--ink-700);
  font-size: 1.02rem;
  font-weight: 570;
  line-height: 1.72;
}

.about-copy > p:not(.eyebrow):not(.about-lead) {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.9rem;
}

.about-values {
  margin-top: 31px;
  border-top: 1px solid var(--line);
}

.about-values > div {
  display: grid;
  padding: 17px 0;
  grid-template-columns: 42px 1fr;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.about-values > div > span {
  color: var(--blue-700);
  font-size: 0.67rem;
  font-weight: 800;
}

.about-values p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.78rem;
}

.about-values strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink-900);
  font-size: 0.87rem;
}

/* Final CTA */

.final-cta {
  padding: 84px 0;
  color: #fff;
  background: linear-gradient(120deg, #1478bf, #188fd8);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.final-cta .eyebrow {
  color: #d4efff;
}

.final-cta h2 {
  color: #fff;
}

.final-cta h2 span {
  color: #c8ebff;
}

.cta-inner > div:last-child > p {
  max-width: 475px;
  margin: 0 0 23px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

/* Contact */

.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 8vw, 105px);
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 23px;
}

.contact-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.9rem;
}

.contact-details {
  display: grid;
  margin: 35px 0 28px;
  gap: 12px;
}

.contact-details > a,
.contact-details > div {
  display: flex;
  padding: 13px 0;
  align-items: center;
  gap: 13px;
}

.contact-details > a > span:first-child,
.contact-details > div > span:first-child {
  display: grid;
  width: 41px;
  height: 41px;
  flex: 0 0 41px;
  color: var(--blue-600);
  background: var(--surface-blue);
  border-radius: 9px;
  place-items: center;
}

.contact-details svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-details > a > span:last-child,
.contact-details > div > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-details small {
  color: var(--ink-500);
  font-size: 0.67rem;
}

.contact-details strong {
  overflow-wrap: anywhere;
  font-size: 0.8rem;
}

.contact-details a strong {
  transition: color 180ms ease;
}

.contact-details a:hover strong {
  color: var(--blue-700);
}

.response-note {
  display: flex;
  padding: 15px 16px;
  align-items: center;
  gap: 12px;
  background: #f2fbf7;
  border: 1px solid #d7efe5;
  border-radius: 10px;
}

.response-note > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: #fff;
  background: var(--success);
  border-radius: 50%;
  font-size: 0.7rem;
  place-items: center;
}

.response-note p {
  display: flex;
  margin: 0;
  flex-direction: column;
  color: #547064;
  font-size: 0.68rem;
  line-height: 1.45;
}

.response-note strong {
  color: #1d4c3c;
  font-size: 0.76rem;
}

.contact-form {
  position: relative;
  padding: 37px;
  background: var(--surface-soft);
  border: 1px solid #dde5ec;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-700);
  font-size: 0.74rem;
  font-weight: 720;
}

.form-field label > span {
  color: var(--blue-700);
}

.form-field label small {
  color: var(--ink-500);
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  display: block;
  width: 100%;
  color: var(--ink-900);
  background: #fff;
  border: 1px solid #d3dde6;
  border-radius: 8px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input {
  height: 48px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 137px;
  padding: 12px 14px;
  line-height: 1.55;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #96a2af;
  opacity: 1;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: #b8c8d5;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(25, 143, 223, 0.12);
}

.checkbox-field {
  display: flex;
  margin: 0 0 20px;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-600);
  font-size: 0.66rem;
  line-height: 1.55;
  cursor: pointer;
}

.checkbox-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.custom-checkbox {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  color: transparent;
  background: #fff;
  border: 1px solid #becbd6;
  border-radius: 4px;
  font-size: 0.69rem;
  font-weight: 900;
  place-items: center;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.checkbox-field input:checked + .custom-checkbox {
  color: #fff;
  background: var(--blue-600);
  border-color: var(--blue-600);
}

.checkbox-field input:focus-visible + .custom-checkbox {
  box-shadow: 0 0 0 3px rgba(25, 143, 223, 0.2);
}

.checkbox-field a {
  color: var(--blue-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  padding: 12px 14px;
  margin: 13px 0 0;
  color: #244c3d;
  background: #edf8f3;
  border: 1px solid #cae8dc;
  border-radius: 8px;
  font-size: 0.72rem;
  line-height: 1.55;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: #71342f;
  background: #fff1ef;
  border-color: #efcfca;
}

.required-note {
  margin: 9px 0 0;
  color: var(--ink-500);
  font-size: 0.61rem;
  text-align: right;
}

/* Footer */

.site-footer {
  color: rgba(229, 237, 245, 0.68);
  background: #060e19;
}

.footer-main {
  display: grid;
  padding-top: 69px;
  padding-bottom: 55px;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
}

.footer-brand > p {
  max-width: 330px;
  margin: 18px 0 0;
  font-size: 0.76rem;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 0.8fr;
  gap: 35px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-links h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: rgba(229, 237, 245, 0.59);
  font-size: 0.72rem;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--blue-400);
}

.footer-bottom {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(229, 237, 245, 0.4);
  font-size: 0.66rem;
}

/* Legal pages */

.legal-page {
  background: var(--surface-soft);
}

.legal-page .site-header {
  background: var(--navy-950);
  border-bottom-color: var(--line-dark);
}

.legal-hero {
  padding: 160px 0 70px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(49, 168, 247, 0.15), transparent 25%),
    var(--navy-900);
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.legal-hero p:last-child {
  margin: 20px 0 0;
  color: rgba(228, 237, 246, 0.65);
}

.legal-content {
  padding: 70px 0 110px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 235px minmax(0, 760px);
  gap: 70px;
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 105px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.legal-aside strong {
  display: block;
  margin-bottom: 9px;
  font-size: 0.77rem;
}

.legal-aside p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.7rem;
  line-height: 1.6;
}

.legal-aside a {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 700;
}

.legal-document {
  padding: 45px 50px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-document h2 {
  margin: 42px 0 13px;
  color: var(--ink-900);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document h3 {
  margin: 27px 0 10px;
  font-size: 1rem;
}

.legal-document p,
.legal-document li {
  color: var(--ink-600);
  font-size: 0.84rem;
  line-height: 1.78;
}

.legal-document ul {
  padding-left: 20px;
}

.legal-document a {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-placeholder {
  display: inline-block;
  padding: 2px 7px;
  color: #8b4608;
  background: #fff4df;
  border: 1px solid #f1d4a7;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: 800;
  letter-spacing: 0.015em;
}

.legal-notice {
  padding: 15px 17px;
  margin: 0 0 30px;
  color: #754710;
  background: #fff8e9;
  border: 1px solid #f0dab3;
  border-left: 4px solid #d39138;
  border-radius: 8px;
  font-size: 0.76rem;
  line-height: 1.6;
}

/* Reveal effects, only activated when JavaScript is available */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.75,.25,1);
}

.js [data-reveal-delay="1"] { transition-delay: 80ms; }
.js [data-reveal-delay="2"] { transition-delay: 160ms; }
.js [data-reveal-delay="3"] { transition-delay: 240ms; }

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

/* Responsive */

@media (max-width: 1080px) {
  :root { --container: 940px; }

  .site-nav {
    gap: 18px;
  }

  .site-nav > a:not(.button) {
    font-size: 0.81rem;
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(3rem, 5.8vw, 4.4rem);
  }

  .hero-visual {
    min-height: 420px;
  }

  .browser-content {
    min-height: 335px;
  }

  .preview-hero {
    min-height: 215px;
  }

  .trust-strip {
    padding-inline: 22px;
  }

  .trust-item {
    padding-inline: 14px;
  }

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

  .service-card {
    min-height: 350px;
  }

  .offer-card {
    gap: 58px;
  }

  .offer-card::after {
    left: 45.5%;
  }

  .project-visual {
    height: 245px;
    padding: 46px 17px 0;
  }

  .mock-window {
    height: 220px;
  }

  .contact-grid {
    gap: 55px;
  }
}

@media (max-width: 840px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 40px), 720px);
  }

  .section {
    padding: 92px 0;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 70px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    padding: 0 24px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    visibility: hidden;
    background: rgba(7, 16, 29, 0.985);
    border-bottom: 1px solid transparent;
    opacity: 0;
    transition: max-height 280ms ease, padding 280ms ease, opacity 180ms ease, visibility 280ms;
  }

  .site-nav.is-open {
    max-height: calc(100vh - 70px);
    padding-top: 16px;
    padding-bottom: 25px;
    visibility: visible;
    border-bottom-color: var(--line-dark);
    box-shadow: 0 25px 40px rgba(0, 8, 22, 0.25);
    opacity: 1;
    overflow-y: auto;
  }

  .site-nav > a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.95rem;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .language-switcher {
    padding: 13px 4px;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 0;
  }

  .nav-cta {
    margin-top: 17px;
  }

  .hero {
    min-height: auto;
    padding-top: 144px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 10vw, 5rem);
  }

  .hero-visual {
    width: min(100%, 610px);
    min-height: 445px;
    justify-self: center;
  }

  .trust-strip {
    margin-top: 55px;
    grid-template-columns: 1fr 1fr;
    transform: translateY(34%);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    padding-bottom: 17px;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(n+3) {
    padding-top: 17px;
  }

  .services {
    padding-top: 158px;
  }

  .offer-card {
    padding: 50px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offer-card::after {
    top: 45%;
    left: 50%;
    width: 70%;
    height: 1px;
    transform: translate(-50%, 0);
  }

  .section-heading-row {
    display: block;
  }

  .section-heading-row > p:last-child {
    max-width: 530px;
    margin-top: 20px;
  }

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

  .project-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 54px 35px;
  }

  .process-grid::before {
    display: none;
  }

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

  .about-visual {
    width: min(100%, 540px);
    min-height: 520px;
  }

  .cta-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-copy {
    max-width: 570px;
  }

  .contact-details {
    grid-template-columns: 1fr 1fr;
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-aside {
    position: static;
  }
}

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

  .section {
    padding: 76px 0;
  }

  .brand-name {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .brand-mark-large {
    width: 70px;
    height: 70px;
  }

  .hero {
    padding-top: 123px;
  }

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

  .hero-lead {
    margin-top: 21px;
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-location {
    align-items: flex-start;
    line-height: 1.55;
  }

  .hero-location svg {
    margin-top: 3px;
    flex: 0 0 16px;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-visual {
    min-height: 329px;
  }

  .browser-card {
    right: 0;
    left: 0;
  }

  .browser-bar {
    height: 35px;
    padding-inline: 11px;
  }

  .browser-content {
    min-height: 270px;
    padding: 14px;
  }

  .preview-nav {
    gap: 7px;
  }

  .preview-nav > span:not(.preview-logo) {
    width: 18px;
  }

  .preview-nav .preview-logo {
    width: 48px;
  }

  .preview-nav b {
    width: 37px;
  }

  .preview-hero {
    min-height: 174px;
    padding: 18px 15px;
    gap: 12px;
  }

  .preview-line {
    height: 8px;
  }

  .preview-image {
    height: 130px;
  }

  .preview-cards span {
    height: 38px;
  }

  .floating-badge {
    padding: 8px 10px 8px 8px;
  }

  .floating-badge-speed {
    top: -19px;
    right: -3px;
  }

  .floating-badge-mobile {
    right: 14px;
    bottom: -4px;
  }

  .badge-icon {
    width: 29px;
    height: 29px;
  }

  .floating-badge strong {
    font-size: 0.61rem;
  }

  .floating-badge small {
    font-size: 0.54rem;
  }

  .trust-strip {
    min-height: 0;
    margin-top: 47px;
    padding: 19px 16px;
    gap: 0;
    transform: translateY(25%);
  }

  .trust-item {
    padding-inline: 8px;
    gap: 8px;
  }

  .trust-icon {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }

  .trust-icon svg {
    width: 16px;
  }

  .trust-item strong { font-size: 0.67rem; }
  .trust-item small { font-size: 0.57rem; }

  .services {
    padding-top: 123px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .offer-card h2,
  .about-copy h2,
  .final-cta h2,
  .contact-copy h2 {
    font-size: clamp(2.05rem, 10vw, 2.75rem);
  }

  .section-heading > p:last-child {
    font-size: 0.91rem;
  }

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

  .service-card {
    min-height: auto;
  }

  .offer-card {
    padding: 38px 25px;
    border-radius: 20px;
  }

  .offer-card::after {
    top: 43%;
  }

  .offer-list {
    grid-template-columns: 1fr;
  }

  .project-card:last-child {
    width: 100%;
    grid-column: auto;
  }

  .project-visual {
    height: 275px;
    padding-inline: 22px;
  }

  .mock-window {
    height: 245px;
  }

  .process-grid {
    gap: 42px;
  }

  .process-step p {
    max-width: 310px;
  }

  .about-visual {
    min-height: 430px;
  }

  .brand-visual {
    inset: 0 16px 22px 0;
  }

  .about-card {
    min-width: 230px;
  }

  .final-cta {
    padding: 70px 0;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 26px 20px;
  }

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

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 33px 25px;
  }

  .footer-links > div:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-bottom {
    padding: 17px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .legal-hero {
    padding: 130px 0 55px;
  }

  .legal-content {
    padding: 45px 0 75px;
  }

  .legal-document {
    padding: 30px 22px;
  }
}

@media (max-width: 380px) {
  .brand-name {
    font-size: 0.7rem;
  }

  .browser-address {
    font-size: 0.5rem;
  }

  .floating-badge-speed {
    display: none;
  }

  .trust-strip {
    padding-inline: 10px;
  }

  .trust-item {
    gap: 6px;
  }

  .trust-icon {
    display: none;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
