:root {
  --black: #edf4fb;
  --carbon: #d9e9f7;
  --panel: #f4f9ff;
  --paper: #ffffff;
  --paper-2: #f2f7fd;
  --ink: #123750;
  --dark-ink: #0f2f49;
  --muted: #4d6a81;
  --line: rgba(0, 119, 189, 0.2);
  --blue: #0077bd;
  --blue-hot: #00a4ff;
  --cyan: #40b5ff;
  --green: #8f9fb2;
  --amber: #4a95d3;
  --rose: #5d7ea2;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(0, 119, 189, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 119, 189, 0.055) 1px, transparent 1px),
    var(--black);
  background-size: 72px 72px, 72px 72px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

section[id] {
  scroll-margin-top: 104px;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), 1220px);
  min-height: 118px;
  margin: 16px auto 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 119, 189, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.22);
  transition: background 180ms ease, border-color 180ms ease, min-height 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  min-height: 76px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 119, 189, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-plate {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 96px;
  flex: 0 0 190px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  transition: width 180ms ease, height 180ms ease, flex-basis 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled .brand-plate {
  width: 122px;
  height: 52px;
  flex-basis: 122px;
  padding: 5px 9px;
}

.brand-plate img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  color: rgba(15, 47, 73, 0.78);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--blue);
  background: rgba(0, 119, 189, 0.1);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(0, 119, 189, 0.3);
  border-radius: 6px;
  background: rgba(0, 119, 189, 0.08);
  cursor: pointer;
}

.menu-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue);
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(140deg, #0b63a2 0%, #0077bd 52%, #21a7ea 100%);
}

.hero picture,
.hero-image,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.52;
  filter: saturate(1.1) contrast(1.03);
  transform: scale(1.06);
  transform-origin: center;
}

.hero-grid {
  background:
    linear-gradient(90deg, rgba(8, 74, 123, 0.82) 0%, rgba(0, 119, 189, 0.64) 45%, rgba(33, 167, 234, 0.24) 100%),
    linear-gradient(0deg, rgba(10, 95, 156, 0.62) 0%, rgba(10, 95, 156, 0.07) 48%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 80px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max));
  min-height: 84svh;
  margin: 0 auto;
  padding: 178px 0 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.about h2,
.section-heading h2,
.method h2,
.trust h2,
.faq h2,
.contact h2 {
  margin: 0;
  line-height: 1.02;
  font-weight: 900;
}

.hero h1 {
  max-width: 820px;
  font-size: 4.8rem;
}

.hero-copy {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(245, 252, 255, 0.95);
  font-size: 1.16rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #ffffff;
  background: var(--blue);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #0b87d5;
}

.button-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.15);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.24);
}

.hero-trust {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(240, 248, 255, 0.86);
  font-size: 0.96rem;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  max-width: 900px;
  margin-top: 42px;
}

.signal-strip span {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 900;
}

.intro {
  padding: 78px 0;
  background: var(--paper);
  color: var(--dark-ink);
}

.intro-grid,
.about-grid,
.contact-grid,
.method-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 68px;
  align-items: center;
}

.intro h2,
.about h2,
.section-heading h2,
.method h2,
.trust h2,
.faq h2,
.contact h2 {
  font-size: 3rem;
}

.intro .section-kicker,
.about .section-kicker,
.services .section-kicker,
.work .section-kicker,
.trust .section-kicker,
.faq .section-kicker,
.contact .section-kicker {
  color: var(--blue);
}

.intro p:last-child,
.about-copy p:last-child,
.contact p {
  margin: 0;
  color: #3d4750;
  font-size: 1.06rem;
}

.about {
  padding: 78px 0;
  background:
    linear-gradient(90deg, rgba(0, 119, 189, 0.16), rgba(60, 228, 208, 0.05)),
    var(--paper-2);
  color: var(--dark-ink);
  border-top: 1px solid #d7dde1;
}

.about-grid {
  align-items: stretch;
}

.about-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 340px;
  padding: 34px;
  color: #ffffff;
  background: linear-gradient(140deg, rgba(0, 119, 189, 0.96), rgba(48, 146, 215, 0.9));
  border: 1px solid rgba(0, 119, 189, 0.36);
  border-radius: 8px;
}

.about-stat span {
  display: block;
  color: #dff4ff;
  font-size: 9rem;
  line-height: 0.82;
  font-weight: 900;
}

.about-stat p {
  max-width: 360px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.32rem;
  font-weight: 800;
}

.about-copy {
  align-self: center;
}

.about-copy p:last-child,
.contact p {
  margin-top: 22px;
}

.services,
.work,
.trust {
  padding: 104px 0;
}

.services {
  background: var(--paper-2);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.6fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.service-grid,
.work-grid,
.trust-grid {
  display: grid;
  gap: 16px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.method-step,
.work-card,
.trust-item,
.contact-form,
.contact-panel,
.faq details {
  border: 1px solid rgba(0, 119, 189, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 119, 189, 0.08), rgba(0, 164, 255, 0.03)),
    #ffffff;
}

.service-card {
  min-height: 350px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card::before,
.work-card::before,
.trust-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue-hot), var(--green));
}

.service-card:hover,
.work-card:hover,
.trust-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 119, 189, 0.4);
  background:
    linear-gradient(135deg, rgba(0, 119, 189, 0.12), rgba(0, 164, 255, 0.06)),
    #ffffff;
}

.service-card-wide {
  grid-column: span 3;
  min-height: 250px;
}

.service-index {
  width: max-content;
  margin-bottom: 54px;
  padding: 5px 8px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card h3,
.method-step h3,
.work-card h3,
.trust-item h3 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.15;
}

.service-card p,
.method-step p,
.work-card p,
.trust-item p,
.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  color: #2d5372;
  list-style: none;
  font-size: 0.94rem;
}

.service-card li::before {
  content: "+";
  margin-right: 8px;
  color: var(--cyan);
  font-weight: 900;
}

.work {
  color: var(--dark-ink);
  background: #f7fbff;
}

.work-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.work-card,
.trust-item {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.work-card {
  min-height: 390px;
  padding: 16px;
  color: var(--dark-ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 255, 0.98));
}

.work-visual {
  position: relative;
  min-height: 142px;
  margin-bottom: 22px;
  overflow: hidden;
  background: #edf5fe;
  border: 1px solid rgba(0, 119, 189, 0.2);
  border-radius: 8px;
}

.work-visual::before,
.work-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.work-visual-web::before {
  inset: 22px 24px auto;
  height: 18px;
  background: var(--cyan);
}

.work-visual-web::after {
  left: 24px;
  right: 62px;
  bottom: 28px;
  height: 48px;
  border: 1px solid rgba(60, 228, 208, 0.55);
}

.work-visual-hosting {
  background:
    linear-gradient(90deg, rgba(0, 119, 189, 0.14) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 119, 189, 0.08) 1px, transparent 1px),
    #edf5fe;
  background-size: 22px 22px;
}

.work-visual-hosting::before {
  width: 78px;
  height: 78px;
  left: 28px;
  top: 32px;
  border: 18px solid var(--blue-hot);
}

.work-visual-hosting::after {
  width: 60px;
  height: 60px;
  right: 30px;
  bottom: 32px;
  border: 14px solid var(--green);
}

.work-visual-automation::before {
  width: 82px;
  height: 82px;
  left: 24px;
  top: 28px;
  background: rgba(60, 228, 208, 0.14);
  border: 1px solid rgba(60, 228, 208, 0.6);
}

.work-visual-automation::after {
  width: 120px;
  height: 2px;
  right: 24px;
  top: 70px;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
}

.work-visual-ticketing::before {
  width: 150px;
  height: 88px;
  left: 28px;
  top: 26px;
  background: linear-gradient(135deg, rgba(60, 228, 208, 0.24), rgba(255, 180, 84, 0.22));
  border: 1px solid rgba(0, 119, 189, 0.25);
}

.work-visual-ticketing::after {
  width: 14px;
  height: 14px;
  right: 44px;
  bottom: 42px;
  background: var(--amber);
  box-shadow: -24px 0 0 var(--cyan), -48px 0 0 var(--blue-hot);
}

.work-card span,
.trust-item span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.method {
  padding: 104px 0;
  background:
    linear-gradient(90deg, rgba(0, 119, 189, 0.12), rgba(255, 255, 255, 0) 45%),
    #f4f9ff;
}

.method-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.method-steps {
  display: grid;
  gap: 14px;
}

.method-step {
  min-height: 148px;
  padding: 24px;
}

.method-step span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 900;
}

.trust {
  background: #edf4fc;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  min-height: 260px;
  padding: 24px;
}

.trust-item span {
  color: var(--green);
}

.faq {
  padding: 104px 0;
  color: var(--dark-ink);
  background: var(--paper-2);
}

.faq-grid {
  align-items: start;
}

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

.faq details {
  background: #ffffff;
  border-color: rgba(0, 119, 189, 0.2);
}

.faq summary {
  padding: 20px 22px;
  color: var(--dark-ink);
  cursor: pointer;
  font-weight: 900;
}

.faq details[open] summary {
  border-bottom: 1px solid #d7dde1;
}

.faq p {
  padding: 0 22px 20px;
  color: #47525d;
}

.contact {
  padding: 104px 0;
  background: var(--paper);
  color: var(--dark-ink);
}

.contact-grid {
  align-items: start;
}

.contact h2 {
  max-width: 780px;
}

.contact-panel {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 26px;
  background: #ffffff;
  border-color: rgba(0, 119, 189, 0.2);
}

.contact-panel a {
  display: block;
  padding: 16px 0;
  color: var(--dark-ink);
  border-bottom: 1px solid rgba(0, 119, 189, 0.18);
  font-size: 1.12rem;
  font-weight: 900;
}

.contact-panel a:last-child {
  border-bottom: 0;
}

.contact-panel a:hover,
.contact-panel a:focus-visible {
  color: var(--blue);
  outline: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #ffffff;
  border-color: rgba(0, 119, 189, 0.2);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: #2f3a44;
  font-size: 0.9rem;
  font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--dark-ink);
  background: #f7fbff;
  border: 1px solid #c1d6e7;
  border-radius: 6px;
  outline: none;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 119, 189, 0.12);
}

.captcha-control {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(90px, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.captcha-question {
  display: grid;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--dark-ink);
  background: #eef6fd;
  border: 1px solid #c1d6e7;
  border-radius: 6px;
  font-weight: 900;
}

.captcha-refresh {
  min-height: 46px;
  padding: 10px 12px;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid #c1d6e7;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
}

.captcha-refresh:hover,
.captcha-refresh:focus-visible {
  border-color: var(--blue);
  outline: none;
}

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

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-note {
  margin: 0;
  color: #5d6872;
  font-size: 0.92rem;
}

.form-note:empty {
  display: none;
}

.form-note[data-status="success"] {
  color: #116149;
}

.form-note[data-status="error"] {
  color: #a42332;
}

.site-footer {
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(90deg, #0077bd, #0068a7);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  font-size: 0.92rem;
}

.footer-inner a {
  color: #ffffff;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@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;
  }

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

@media (max-width: 1100px) {
  .site-nav a {
    padding-inline: 9px;
    font-size: 0.84rem;
  }

  .work-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero h1,
  .intro h2,
  .about h2,
  .section-heading h2,
  .method h2,
  .trust h2,
  .faq h2,
  .contact h2 {
    font-size: 3.35rem;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 160px 0 48px;
  }

  .intro-grid,
  .about-grid,
  .contact-grid,
  .method-grid,
  .faq-grid,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stat {
    min-height: 300px;
  }

  .about-stat span {
    font-size: 7rem;
  }

  .about-stat p {
    font-size: 1.18rem;
  }

  .service-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .container,
  .hero-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    width: min(calc(100% - 24px), 1220px);
    min-height: 94px;
    margin-top: 12px;
    padding: 10px 12px;
  }

  .site-header.is-scrolled {
    min-height: 66px;
    padding: 10px;
  }

  .brand-plate {
    width: 132px;
    height: 66px;
    flex-basis: 132px;
    padding: 6px 10px;
  }

  .site-header.is-scrolled .brand-plate {
    width: 92px;
    height: 42px;
    flex-basis: 92px;
    padding: 4px 7px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    gap: 2px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 119, 189, 0.2);
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 12px;
    font-size: 0.95rem;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-grid {
    background:
      linear-gradient(90deg, rgba(8, 74, 123, 0.9) 0%, rgba(0, 119, 189, 0.76) 62%, rgba(33, 167, 234, 0.48) 100%),
      linear-gradient(0deg, rgba(8, 95, 156, 0.88) 0%, rgba(8, 95, 156, 0.12) 52%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 68px),
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 68px);
  }

  .hero-inner {
    padding: 128px 0 40px;
  }

  .hero h1,
  .intro h2,
  .about h2,
  .section-heading h2,
  .method h2,
  .trust h2,
  .faq h2,
  .contact h2 {
    font-size: 2.38rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .signal-strip,
  .service-grid,
  .work-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    margin-top: 30px;
  }

  .signal-strip span {
    min-height: 44px;
  }

  .service-card,
  .service-card-wide {
    min-height: auto;
    grid-column: auto;
  }

  .service-index {
    margin-bottom: 34px;
  }

  .about-stat {
    min-height: 280px;
    padding: 26px;
  }

  .about-stat span {
    font-size: 6.4rem;
  }

  .about-stat p {
    margin-top: 20px;
    font-size: 1.08rem;
  }

  .intro,
  .about,
  .services,
  .work,
  .method,
  .trust,
  .faq,
  .contact {
    padding: 72px 0;
  }

  .contact-form,
  .contact-panel {
    padding: 22px;
  }

  .captcha-control {
    grid-template-columns: 1fr;
  }

  .contact-panel a {
    font-size: 1rem;
  }

  .footer-inner {
    display: grid;
  }
}

@media (max-width: 410px) {
  .brand-plate {
    width: 116px;
    height: 58px;
    flex-basis: 116px;
  }

  .site-header.is-scrolled .brand-plate {
    width: 84px;
    height: 40px;
    flex-basis: 84px;
  }

  .hero h1,
  .intro h2,
  .about h2,
  .section-heading h2,
  .method h2,
  .trust h2,
  .faq h2,
  .contact h2 {
    font-size: 2.04rem;
  }
}
