:root {
  --ink: #07172b;
  --ink-soft: #112d49;
  --blue: #0969da;
  --blue-bright: #1b8bf3;
  --brand-orange: #ff6800;
  --brand-orange-soft: #ffd0ad;
  --status-teal: #2aae9b;
  --white: #ffffff;
  --mist: #eef6fa;
  --line: #d8e7ef;
  --text: #244158;
  --muted: #607b8f;
  --shell: min(1160px, calc(100vw - 40px));
  --radius: 22px;
  --shadow: 0 24px 70px rgba(7, 23, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

svg {
  display: block;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

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

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

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 80px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  transition: background 180ms ease, box-shadow 180ms ease, height 180ms ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(7, 23, 43, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  width: 48px;
  height: 48px;
  display: block;
  flex: 0 0 48px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: var(--white);
  font-size: 1.08rem;
  letter-spacing: 0.2em;
}

.brand-copy span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav .nav-cta {
  padding: 11px 18px;
  color: var(--ink);
  background: var(--brand-orange);
  border-radius: 999px;
}

.site-nav .nav-cta:hover {
  color: var(--ink);
  background: var(--brand-orange-soft);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 770px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 35%, rgba(13, 107, 218, 0.25), transparent 35%),
    linear-gradient(135deg, #061426 0%, #071b32 54%, #082440 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, #000 50%, #000);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 500px;
  height: 500px;
  top: -350px;
  right: 10%;
  background: rgba(9, 105, 218, 0.11);
  box-shadow: 0 0 150px rgba(27, 139, 243, 0.14);
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  bottom: -330px;
  left: 5%;
  background: rgba(27, 139, 243, 0.12);
  box-shadow: 0 0 130px rgba(27, 139, 243, 0.12);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, 0.94fr);
  gap: 80px;
  align-items: center;
  padding: 148px 0 94px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--brand-orange-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--brand-orange);
}

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

.eyebrow.light {
  color: var(--brand-orange-soft);
}

.hero h1,
.section h2,
.sectors h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3.3rem, 5.7vw, 5.6rem);
}

.hero h1 em {
  color: var(--brand-orange);
  font-style: italic;
}

.hero-intro {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.12rem;
  line-height: 1.72;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button svg,
.text-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--ink);
  background: var(--brand-orange);
}

.button-primary:hover {
  background: var(--brand-orange-soft);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.035);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-proof span {
  position: relative;
}

.hero-proof span + span::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: 50%;
  left: -14px;
  background: var(--brand-orange);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.visual-core {
  position: absolute;
  z-index: 4;
  width: 190px;
  height: 190px;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border: 1px solid rgba(255, 104, 0, 0.48);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, rgba(255, 104, 0, 0.16), rgba(6, 20, 38, 0.97) 68%);
  box-shadow:
    0 0 0 18px rgba(255, 104, 0, 0.035),
    0 0 90px rgba(255, 104, 0, 0.17);
  transform: translate(-50%, -50%);
}

.visual-core img {
  width: 124px;
  height: 124px;
  object-fit: contain;
}

.visual-core small {
  margin-top: -5px;
  color: var(--brand-orange-soft);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(103, 184, 255, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 330px;
  height: 330px;
}

.orbit-two {
  width: 455px;
  height: 455px;
  border-style: dashed;
  animation: orbit-spin 38s linear infinite;
}

.visual-card {
  position: absolute;
  z-index: 5;
  min-width: 188px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(8, 32, 57, 0.8);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.visual-card small,
.visual-card strong {
  display: block;
}

.visual-card small {
  margin-bottom: 2px;
  color: var(--blue-bright);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.visual-card strong {
  color: var(--white);
  font-size: 0.92rem;
}

.card-icon {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  display: grid;
  place-items: center;
  color: var(--blue-bright);
  background: rgba(27, 139, 243, 0.12);
  border-radius: 11px;
}

.card-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-top {
  top: 26px;
  right: 18px;
}

.card-middle {
  top: 208px;
  left: -6px;
}

.card-bottom {
  right: -4px;
  bottom: 28px;
}

.signal {
  position: absolute;
  z-index: 3;
  width: 8px;
  height: 8px;
  background: var(--status-teal);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(42, 174, 155, 0.09), 0 0 24px var(--status-teal);
}

.signal-one {
  top: 94px;
  left: 78px;
}

.signal-two {
  right: 71px;
  bottom: 98px;
}

.confidence-strip {
  position: relative;
  z-index: 5;
  color: var(--white);
  background: var(--blue);
}

.confidence-grid {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.confidence-grid p {
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.12rem;
  font-weight: 600;
}

.confidence-items {
  display: flex;
  align-items: center;
  gap: 24px;
}

.confidence-items span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.confidence-items i {
  width: 5px;
  height: 5px;
  background: var(--brand-orange);
  border-radius: 50%;
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 100px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2,
.why h2,
.sectors h2,
.contact h2 {
  color: var(--ink);
  font-size: clamp(2.5rem, 4.6vw, 4.2rem);
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.75;
}

.services {
  background: linear-gradient(180deg, #f7fbfd 0%, var(--white) 65%);
}

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

.service-card {
  position: relative;
  min-height: 330px;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card.featured {
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.service-number {
  position: absolute;
  top: 31px;
  right: 33px;
  color: #8aa0b0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.featured .service-number {
  color: rgba(255, 255, 255, 0.38);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  color: var(--blue);
  background: #eaf4ff;
  border-radius: 15px;
}

.featured .service-icon {
  color: var(--brand-orange);
  background: rgba(255, 104, 0, 0.12);
}

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

.service-card h3 {
  margin: 0 0 13px;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.3;
}

.service-card.featured h3 {
  color: var(--white);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.6);
}

.why {
  padding-bottom: 122px;
  background: var(--white);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 84px;
  align-items: stretch;
}

.why-panel {
  position: relative;
  overflow: hidden;
  padding: 58px;
  color: rgba(255, 255, 255, 0.67);
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 104, 0, 0.16), transparent 32%),
    var(--ink);
  border-radius: var(--radius);
}

.why-watermark {
  position: absolute;
  right: -18px;
  bottom: -154px;
  color: rgba(255, 104, 0, 0.045);
  font-family: Georgia, Times New Roman, serif;
  font-size: 29rem;
  line-height: 1;
}

.why-panel h2 {
  position: relative;
  max-width: 590px;
  color: var(--white);
  font-size: clamp(2.45rem, 4vw, 3.8rem);
}

.why-panel > p:not(.eyebrow) {
  position: relative;
  margin: 28px 0;
  line-height: 1.8;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-orange);
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link:hover {
  color: var(--brand-orange-soft);
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.why-point {
  padding: 34px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-point > span {
  display: block;
  margin-bottom: 43px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.why-point h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.17rem;
}

.why-point p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.72;
}

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

.approach-heading {
  margin-bottom: 70px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.step {
  padding-right: 28px;
}

.step + .step {
  padding-left: 28px;
}

.step-top {
  display: flex;
  align-items: center;
  height: 28px;
  margin-bottom: 30px;
}

.step-top span {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--brand-orange);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 850;
}

.step-top i {
  width: calc(100% + 28px);
  height: 1px;
  background: #bdd1dc;
}

.step h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.18rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.72;
}

.sectors {
  padding: 108px 0;
  color: rgba(255, 255, 255, 0.66);
  background:
    linear-gradient(120deg, rgba(9, 105, 218, 0.24), transparent 45%),
    #0b2239;
}

.sectors-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 100px;
  align-items: center;
}

.sectors h2 {
  max-width: 670px;
  color: var(--white);
  font-size: clamp(2.6rem, 4.8vw, 4.5rem);
}

.sector-list {
  display: grid;
}

.sector-list span {
  position: relative;
  padding: 18px 14px 18px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 650;
}

.sector-list span:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.sector-list span::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 50%;
  left: 4px;
  background: var(--brand-orange);
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact {
  padding: 80px 0;
  background: #f7fbfd;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  padding: 66px;
  color: rgba(255, 255, 255, 0.68);
  background:
    radial-gradient(circle at 92% -20%, rgba(255, 104, 0, 0.24), transparent 34%),
    linear-gradient(135deg, #0a5dbc 0%, #0870c5 55%, #0d8095 100%);
  border-radius: 26px;
  box-shadow: 0 32px 90px rgba(9, 105, 218, 0.2);
}

.contact h2 {
  max-width: 710px;
  color: var(--white);
  font-size: clamp(2.45rem, 4vw, 3.8rem);
}

.contact-action p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

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

.button-light:hover {
  background: var(--brand-orange-soft);
}

.site-footer {
  padding: 70px 0 28px;
  color: rgba(255, 255, 255, 0.58);
  background: #061426;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 55px;
}

.footer-main p,
.footer-main address {
  margin: 0;
  font-size: 0.86rem;
  font-style: normal;
}

.footer-main address {
  text-align: right;
}

.footer-logo-panel {
  width: min(100%, 270px);
  display: block;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 14px;
}

.footer-logo-panel img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.footer-bottom a {
  color: var(--brand-orange);
}

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

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

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 1040px) {
  .hero-layout {
    grid-template-columns: 1fr 410px;
    gap: 30px;
  }

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

  .hero-visual {
    transform: scale(0.9);
  }

  .service-card {
    padding: 30px;
  }

  .why-layout {
    gap: 40px;
  }

  .why-panel {
    padding: 44px;
  }

  .contact-card {
    gap: 48px;
    padding: 54px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 16px auto;
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(7, 23, 43, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    text-align: center;
    border: 0;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

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

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding: 138px 0 70px;
  }

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

  .hero-visual {
    width: min(100%, 500px);
    min-height: 460px;
    margin: -10px auto 0;
    transform: none;
  }

  .confidence-grid {
    min-height: 104px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 20px 0;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading,
  .sectors-layout,
  .contact-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .why-layout {
    grid-template-columns: 1fr;
  }

  .why-panel {
    min-height: 520px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 0;
  }

  .step:nth-child(3) {
    padding-left: 0;
  }

  .contact-card {
    padding: 52px;
  }

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

  .footer-main address {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100vw - 30px);
  }

  .site-header {
    height: 72px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy span {
    font-size: 0.62rem;
  }

  .hero-layout {
    padding: 124px 0 54px;
  }

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

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 9px;
  }

  .hero-proof span + span::before {
    display: none;
  }

  .hero-visual {
    min-height: 420px;
    margin-top: -8px;
    transform: scale(0.86);
  }

  .visual-card {
    min-width: 168px;
    padding: 13px;
  }

  .card-top {
    right: -18px;
  }

  .card-middle {
    left: -18px;
  }

  .card-bottom {
    right: -18px;
  }

  .confidence-items {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 7px 22px;
  }

  .section {
    padding: 74px 0;
  }

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

  .section-heading h2,
  .why h2,
  .sectors h2,
  .contact h2 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  .service-grid,
  .why-points,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .why-panel {
    min-height: auto;
    padding: 38px 30px 44px;
  }

  .why-point {
    padding: 30px;
  }

  .why-point > span {
    margin-bottom: 22px;
  }

  .steps {
    gap: 0;
  }

  .step,
  .step + .step,
  .step:nth-child(3) {
    position: relative;
    padding: 0 0 40px 58px;
  }

  .step-top {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .step-top i {
    width: 1px;
    height: 100%;
    margin-left: 16px;
  }

  .sectors {
    padding: 82px 0;
  }

  .contact {
    padding: 48px 0;
  }

  .contact-card {
    padding: 38px 28px;
    border-radius: 20px;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main {
    display: grid;
    gap: 20px;
  }
}

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

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

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