@import url("https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,500;6..72,650&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --blue: #1e88ff;
  --blue-2: #4aa3ff;
  --navy: #071018;
  --ink: #101820;
  --paper: #efe8dc;
  --paper-2: #f7f2ea;
  --muted: #5c6570;
  --line: #d6cbb8;
  --white: #fff;
  --max: 1280px;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --serif: "Newsreader", "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper-2);
  color: var(--ink);
  line-height: 1.7;
  font-size: 18px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(16, 24, 32, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 32, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
main, .site-header, .site-footer { position: relative; z-index: 1; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
}
.skip:focus { left: 8px; top: 8px; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fffdf8;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
}

.logo {
  padding: 0;
  flex-shrink: 0;
}

.logo img { height: 44px; width: auto; }

.nav-cluster {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 18px;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-end { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-cta { display: inline-flex; }

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 10px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 13px 22px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #1574e0; color: #fff; }
.btn-ghost { background: #fff; color: var(--navy); }
.btn-ghost:hover { background: var(--paper); color: var(--navy); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.btn-navy { background: var(--navy); color: var(--paper); }
.btn-navy:hover { background: #12202c; color: #fff; }
.nav-links .btn { text-transform: uppercase; }

.menu-toggle {
  display: none;
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: 10px;
  width: 46px;
  height: 46px;
  font-size: 1.15rem;
  cursor: pointer;
}

.hero {
  position: relative;
  background:
    radial-gradient(1200px 480px at 85% -10%, rgba(30, 136, 255, 0.45), transparent 55%),
    linear-gradient(165deg, #0b1c2c 0%, #071018 48%, #12324f 100%);
  background-size: 100% 100%, 200% 200%;
  animation: heroShift 18s ease-in-out infinite;
  color: #fff;
  padding: 80px 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: end;
  padding-bottom: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: 18px;
  border: 1px solid rgba(74, 163, 255, 0.4);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.45rem, 4.6vw + 0.6rem, 4.35rem);
  line-height: 1.06;
  margin: 0 0 18px;
  font-weight: 500;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}

.hero .lead {
  max-width: 38rem;
  margin: 0 0 30px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.78);
}

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

.hero-visual {
  position: relative;
  min-height: 340px;
  z-index: 1;
}

.hero-visual svg { width: 100%; height: auto; filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35)); animation: floaty 7s ease-in-out infinite; }

.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.ring, .sq, .dot {
  position: absolute;
  border: 1.5px solid rgba(74, 163, 255, 0.35);
}
.ring { width: 140px; height: 140px; border-radius: 50%; top: 12%; right: 8%; animation: spin 28s linear infinite; }
.ring.two { width: 70px; height: 70px; top: 62%; right: 28%; animation-duration: 16s; animation-direction: reverse; }
.sq { width: 28px; height: 28px; transform: rotate(45deg); top: 18%; left: 46%; animation: floaty 5s ease-in-out infinite; background: rgba(30, 136, 255, 0.18); }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); border: 0; bottom: 22%; left: 42%; animation: pulse 2.4s ease-in-out infinite; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 16, 24, 0.55);
  width: 100%;
}
.hero-meta div {
  padding: 22px 12px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  justify-items: center;
  gap: 8px;
}
.hero-meta div:last-child { border-right: 0; }
.hero-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 650;
}
.hero-meta span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.trust {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px;
}

.trust p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.trust strong {
  display: block;
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 650;
  margin-bottom: 6px;
  line-height: 1.2;
}

.section { padding: 96px 0; }
.section h2,
.page-hero h1,
.panel h2,
.cta-band h2,
.price-card h3,
.service-block h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.section h2 {
  font-size: clamp(2.15rem, 3.6vw, 3.1rem);
  margin: 0 0 12px;
  color: var(--navy);
}
.section .intro {
  max-width: 38rem;
  color: var(--muted);
  margin: 0 0 48px;
  font-size: 1.05rem;
}

.kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 10px;
}

.page-hero {
  background:
    radial-gradient(700px 280px at 90% 0%, rgba(30, 136, 255, 0.35), transparent 60%),
    var(--navy);
  color: #fff;
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  margin: 0 0 14px;
  color: #fff;
  line-height: 1.08;
}
.page-hero p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
  font-size: 1.1rem;
}

.service-stack { display: grid; gap: 20px; width: 100%; }
.service-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 36px 36px 32px;
  position: relative;
}
.service-row:nth-child(2) {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.service-row:nth-child(2) h3,
.service-row:nth-child(4) h3 { color: inherit; }
.service-row:nth-child(2) p { color: rgba(255, 255, 255, 0.72); }
.service-row:nth-child(2) .caps li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.service-row:nth-child(2) .btn-navy {
  background: var(--blue);
  color: #fff;
}
.service-row:nth-child(4) {
  background: var(--paper);
}
.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--blue);
}
.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px 6px 18px 6px;
  background: var(--paper);
  display: grid;
  place-items: center;
}
.service-row:nth-child(2) .ico { color: var(--blue-2); }
.service-row h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.45rem; font-family: var(--serif); font-weight: 650; }
.service-row p { margin: 0 0 12px; color: var(--muted); }
.caps { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.caps li {
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 5px 10px;
  color: var(--navy);
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}
.build-item {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px 20px;
  font-weight: 750;
  color: var(--navy);
  font-size: 0.95rem;
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.build-item:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(7, 16, 24, 0.08); }
.build-item:nth-child(1),
.build-item:nth-child(6) {
  background: var(--navy);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
}
.build-item:nth-child(1) .ico,
.build-item:nth-child(6) .ico { color: var(--blue-2); }

.process {
  background: var(--navy);
  color: #fff;
}
.process h2 { color: #fff; }
.process .intro { color: rgba(255, 255, 255, 0.7); }
.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 0;
  width: 100%;
}
.process-list li {
  padding: 32px 28px;
  border-right: 0;
  min-height: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.process-list li:last-child { border-right: 0; }
.process-list .num {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--blue-2);
  font-size: 1.8rem;
  display: block;
  margin: 12px 0 10px;
}
.process-list h3 { margin: 0 0 10px; font-size: 1.35rem; }
.process-list p { margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 1rem; }

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  width: 100%;
}
.who-card {
  background: var(--paper-2);
  padding: 28px 24px;
  min-height: 200px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.who-card:hover { background: #fff; transform: translateY(-3px); }
.who-card .ico { margin-bottom: 12px; display: block; }
.who-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-family: var(--serif);
  font-weight: 650;
}
.who-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}
.panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px;
}
.panel:first-child {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.panel:first-child h2 { color: #fff; }
.panel:first-child p,
.panel:first-child li { color: rgba(255, 255, 255, 0.72); }
.panel:first-child a { color: var(--blue-2); }
.panel h3 { margin-top: 0; }
.panel ul { margin: 0 0 16px; padding-left: 1.1rem; color: var(--muted); }

.cta-band {
  background:
    linear-gradient(90deg, var(--blue) 0 12px, transparent 12px),
    var(--paper);
  color: var(--navy);
  padding: 72px 0;
  border-top: 1px solid var(--line);
}
.cta-band h2 { margin: 0 0 10px; color: var(--navy); font-size: clamp(2rem, 3vw, 2.8rem); }
.cta-band p { margin: 0 0 22px; max-width: 36rem; color: var(--muted); }

.site-footer {
  background: var(--navy);
  color: #c5d0d8;
  padding: 0 0 22px;
  overflow: hidden;
  position: relative;
}
.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.footer-cta {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 24px;
  align-items: center;
  padding: 40px 0 28px;
  border-bottom: 1px solid #1e2e3a;
  margin-bottom: 0;
}
.footer-cta p { margin: 0 0 8px; }
.footer-tag {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: #fff;
  font-weight: 500;
  line-height: 1.25;
}
.footer-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 48px 0 36px;
  margin-bottom: 0;
}
.footer-nap { font-size: 0.92rem; line-height: 1.65; }
.footer-nap a { display: inline; }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  color: #fff;
}
.footer-contact:hover { border-color: rgba(74,163,255,0.5); background: rgba(30,136,255,0.12); }
.footer-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.footer-ico .ico { width: 20px; height: 20px; color: var(--blue); fill: none; }
.footer-contact[href*="wa.me"] .ico { fill: #25d366; stroke: none; color: #25d366; }
.footer-contact small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 750;
}
.footer-contact span { font-weight: 650; font-size: 0.92rem; }
.footer-tech {
  border-top: 1px solid #1e2e3a;
  padding: 22px 0;
}
.footer-tech p {
  margin: 0 0 12px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 750;
  color: rgba(255,255,255,0.45);
}
.footer-tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.legal-bar {
  border-top: 1px solid #1e2e3a;
  padding-top: 16px;
  font-size: 0.86rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
}
.legal-bar nav { display: flex; flex-wrap: wrap; gap: 14px; }

.tech-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
}
.tech-tile img { width: 36px; height: 36px; }
.footer-tech .tech-tile {
  width: 52px;
  height: 52px;
  background: #fff;
  border-color: rgba(255,255,255,0.12);
}
.footer-tech .tech-tile img { width: 28px; height: 28px; }
.marquee .tech-tile { margin-right: 4px; }
.site-footer a { color: #e8eef2; text-decoration: none; }
.site-footer a:hover { color: var(--blue-2); }
.site-footer h4 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer .logo {
  display: inline-block;
  background: #fff;
  padding: 8px 10px;
  margin-bottom: 14px;
}
.site-footer .logo img { height: 32px; }

.prose { max-width: none; }
.prose h2 { margin-top: 2rem; font-family: var(--serif); color: var(--navy); }
.prose p, .prose li { color: var(--muted); }

.service-block {
  background: #fff;
  border: 1px solid var(--line);
  padding: 44px;
  margin: 28px 0;
  box-shadow: 10px 10px 0 var(--navy);
}
.service-block:nth-of-type(even) {
  background: var(--navy);
  color: #fff;
  box-shadow: 10px 10px 0 var(--blue);
}
.service-block:nth-of-type(even) h2,
.service-block:nth-of-type(even) h3 { color: #fff; }
.service-block:nth-of-type(even) p,
.service-block:nth-of-type(even) li { color: rgba(255, 255, 255, 0.72); }
.service-block h2 { margin-top: 0; }
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.price-card.featured {
  background: var(--navy);
  color: #fff;
  transform: translateY(-12px);
}
.price-card.featured .ico { color: var(--blue-2); }
.cta-band .block-head h2 { margin: 0; }
.cta-band .block-head { margin-bottom: 12px; }
.price-card.featured h3 { color: #fff; }
.price-card.featured p { color: rgba(255, 255, 255, 0.7); }
.price-card .ico { margin-bottom: 14px; }
.price-card p { color: var(--muted); flex: 1; }

.faq-list { max-width: none; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: 14px;
  padding: 6px 8px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 750;
  padding: 22px 20px;
  list-style: none;
  color: var(--navy);
  font-size: 1.12rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0; padding: 4px 20px 24px 56px; color: var(--muted); }

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 32px;
  width: 100%;
  min-width: 0;
  box-shadow: none;
}
.form label {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  min-width: 0;
  margin: 0;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.form .field-label { display: block; }
.form input,
.form select,
.form textarea {
  display: block;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  border-color: var(--blue);
}
.form textarea { min-height: 140px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  width: 100%;
}
.form .btn { width: 100%; border-radius: 8px; }
.form-note {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}
.quote {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.quote.featured {
  grid-column: 1 / -1;
  padding: 44px 40px;
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.quote.featured p { color: #fff; font-size: 1.35rem; font-family: var(--serif); line-height: 1.45; }
.quote.featured cite { color: rgba(255,255,255,.65); }
.quote.featured::after { color: rgba(255,255,255,0.12); }
.quote::after {
  content: "“";
  position: absolute;
  right: 20px;
  top: 8px;
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 1;
  color: rgba(30, 136, 255, 0.18);
  pointer-events: none;
}
.quote.featured::after { color: rgba(255,255,255,0.12); }
.avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  animation: floaty 5.5s ease-in-out infinite;
  box-shadow: 0 8px 20px rgba(7,16,24,.12);
}
.avatar svg { width: 100%; height: 100%; }
.quote p { margin: 0 0 14px; color: var(--ink); font-size: 1.05rem; }
.quote cite {
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 750;
  color: var(--muted);
}

.seo-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 40px 36px;
  margin-top: 8px;
  width: 100%;
}
.seo-band ul { margin: 12px 0 0; color: var(--muted); }

.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.7rem); }
.page-hero { padding: 88px 0 72px; }

.contact-aside { animation: rise 0.7s ease 0.15s both; }

@media (max-width: 1020px) {
  .quotes, .seo-band { grid-template-columns: 1fr; }
}

.contact-aside {
  background: var(--navy);
  color: #d5dee4;
  padding: 36px 32px;
}
.contact-aside h2 { color: #fff; margin-top: 0; font-family: var(--serif); }
.contact-aside a { color: var(--blue-2); }

.breadcrumbs {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.breadcrumbs a { color: inherit; text-decoration: none; }
.page-hero .breadcrumbs a:hover { color: #fff; }
.section .breadcrumbs,
.prose .breadcrumbs {
  color: var(--muted);
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  .hero-grid, .trust-grid, .split, .footer-grid, .price-grid, .who-grid, .process-list, .build-grid, .cols-2, .form-row {
    grid-template-columns: 1fr 1fr;
  }
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-list li { min-height: 0; padding: 28px; }
  .service-row { grid-template-columns: 1fr; }
  .build-item:nth-child(1),
  .build-item:nth-child(6) { grid-column: auto; }
  .price-card.featured { transform: none; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1080px) {
  .header-cta { padding: 10px 14px; font-size: 0.72rem; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 88px;
    background: #fffdf8;
    flex-direction: column;
    align-items: stretch;
    padding: 20px clamp(20px, 5vw, 56px) 28px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(16, 24, 32, 0.08);
    gap: 6px;
  }
  .nav-links.open { display: flex; }
  .hero-grid, .trust-grid, .split, .footer-grid, .price-grid, .who-grid, .process-list, .build-grid, .cols-2, .form-row, .hero-meta {
    grid-template-columns: 1fr;
  }
  .build-item:nth-child(1),
  .build-item:nth-child(6) { grid-column: auto; }
  .hero { padding-top: 48px; }
  .section { padding: 64px 0; }
  .service-block { box-shadow: 6px 6px 0 var(--navy); padding: 24px; }
  .quote.featured { grid-column: 1 / -1; }
}

.ico {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
  color: var(--blue);
}
.ico-lg { width: 34px; height: 34px; }
.ico-on-dark { color: var(--blue-2); }
.hero-meta .ico { color: var(--blue-2); }
.service-icon .ico { width: 32px; height: 32px; }
.service-row:hover .service-icon { transform: rotate(-6deg) scale(1.07); }
.service-icon { transition: transform 0.25s ease; }

.block-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.block-head h2, .block-head h3 { margin: 0; }

.trust-item .ico { margin-bottom: 10px; }

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 18px;
}

.reveal { opacity: 0; transform: translateY(18px); animation: rise 0.7s ease forwards; }
.reveal:nth-child(2) { animation-delay: 0.06s; }
.reveal:nth-child(3) { animation-delay: 0.12s; }
.reveal:nth-child(4) { animation-delay: 0.18s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}
@keyframes heroShift {
  0%, 100% { background-position: 0 0, 0% 50%; }
  50% { background-position: 0 0, 100% 50%; }
}

.will-in {
  opacity: 0;
  transform: translateY(28px);
}
.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #fff;
  padding: 18px 0;
}
.marquee.dark {
  background: var(--navy);
  border-color: #1e2e3a;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: marquee 38s linear infinite;
}
.marquee.dark .marquee-track { animation-duration: 46s; }
.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  font-weight: 750;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}
.marquee.dark .tech-chip {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.service-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}
.mosaic-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px 26px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mosaic-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(7,16,24,0.08); }
.mosaic-card:nth-child(3n) {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.mosaic-card:nth-child(3n) p,
.mosaic-card:nth-child(3n) a { color: rgba(255,255,255,0.72); }
.mosaic-card:nth-child(3n) h3 { color: #fff; }
.mosaic-card:nth-child(3n) .ico { color: var(--blue-2); }
.mosaic-card h3 { margin: 0; font-size: 1.28rem; }
.mosaic-card p { margin: 0; color: var(--muted); flex: 1; }
.mosaic-card a { font-weight: 750; font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.06em; }

.carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
}
.carousel-track .quote {
  min-width: calc(50% - 10px);
  flex: 0 0 calc(50% - 10px);
}
.carousel-nav {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.carousel-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-size: 1.2rem;
  cursor: pointer;
}
.carousel-nav button:hover { background: var(--navy); color: #fff; }
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

@media (max-width: 1080px) {
  .service-mosaic, .hero-meta { grid-template-columns: 1fr 1fr; }
  .carousel-track .quote { min-width: 100%; flex-basis: 100%; }
  .footer-cta, .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover, .build-item:hover, .who-card:hover, .mosaic-card:hover { transform: none; }
  .form > *, .quote, .contact-aside, .hero, .avatar, .hero-visual svg, .ring, .sq, .dot, .reveal { animation: none; }
  .reveal, .will-in, .is-in { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
