:root {
  --orange: #f26430;
  --orange-dark: #d94116;
  --orange-soft: #fff1ec;
  --navy: #0b1130;
  --navy-2: #101a44;
  --ink: #1a2138;
  --muted: #68708a;
  --line: #e8ecf6;
  --white: #ffffff;
  --soft: #f6f8ff;
  --shadow: 0 24px 80px rgba(8, 17, 48, .14);
  --shadow-soft: 0 14px 42px rgba(8, 17, 48, .10);
  --radius: 26px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: var(--white);
  transition: opacity .45s ease, visibility .45s ease;
}

.page-loader img {
  width: min(280px, 64vw);
}

body.is-loaded .page-loader {
  opacity: 0;
  visibility: hidden;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 1000;
  width: min(calc(100% - 32px), var(--max));
  min-height: 76px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 14px 10px 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(11, 17, 48, .58);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(4, 9, 31, .22);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .92);
  border-color: rgba(232, 236, 246, .9);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: flex;
  align-items: center;
  width: 176px;
  height: 54px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, .92);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px 10px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 700;
}

.site-header.is-scrolled .main-nav {
  color: var(--navy-2);
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .25s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.header-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff875d);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 15px 28px rgba(242, 100, 48, .26);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section,
.hero,
.solutions,
.testimonials {
  padding-inline: 24px;
}

.section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-dark {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(242, 100, 48, .42), transparent 26%),
    radial-gradient(circle at 90% 16%, rgba(84, 82, 255, .35), transparent 32%),
    linear-gradient(135deg, #141a47 0%, #071031 48%, #04091f 100%);
  overflow: hidden;
}

.section-soft {
  background:
    radial-gradient(circle at 6% 12%, rgba(242, 100, 48, .12), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(75, 99, 255, .10), transparent 28%),
    var(--soft);
}

.hero {
  min-height: 860px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  align-items: center;
  gap: 70px;
  padding-top: 150px;
  padding-bottom: 95px;
}

.hero,
.about,
.services,
.process,
.solutions,
.clients,
.cases,
.testimonials,
.contact {
  position: relative;
}

.hero > *,
.about > *,
.services > *,
.process > *,
.clients > *,
.cases > *,
.contact > *,
.solutions > *,
.testimonials > * {
  width: min(100%, var(--max));
}

.hero__content,
.hero__visual,
.about,
.process,
.solutions,
.contact,
.site-footer,
.contact-cta {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.hero__content {
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy-2);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.section-dark h2,
.section-dark h1 {
  color: var(--white);
}

h3 {
  color: var(--navy-2);
  line-height: 1.18;
}

.section-dark h3 {
  color: var(--white);
}

.hero__text {
  max-width: 560px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff8b61);
  box-shadow: 0 18px 34px rgba(242, 100, 48, .30);
}

.btn--secondary {
  color: var(--white);
  background: var(--navy-2);
  box-shadow: 0 18px 34px rgba(8, 17, 48, .14);
}

.btn--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
}

.hero__stats div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.hero__stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.hero__stats span {
  color: rgba(255,255,255,.70);
  font-size: 13px;
  font-weight: 700;
}

.hero__visual {
  position: relative;
}

.hero__image {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 10px solid rgba(255, 255, 255, .11);
  border-radius: 34px;
  box-shadow: 0 42px 120px rgba(0, 0, 0, .36);
  transform: rotate(1.25deg);
}

.hero__visual::before,
.hero__visual::after {
  content: "";
  position: absolute;
  border-radius: 24px;
  background: rgba(242, 100, 48, .26);
}

.hero__visual::before {
  width: 94px;
  height: 94px;
  right: -32px;
  top: -34px;
}

.hero__visual::after {
  width: 56px;
  height: 56px;
  left: -34px;
  bottom: 44px;
  background: rgba(255,255,255,.14);
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  color: var(--white);
  background: rgba(4, 9, 31, .64);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 55px rgba(0,0,0,.24);
  font-size: 13px;
  font-weight: 800;
}

.floating-card--top {
  top: 36px;
  left: -38px;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.floating-card--bottom {
  right: -26px;
  bottom: 50px;
}

.floating-card span {
  color: rgba(255,255,255,.72);
  font-weight: 600;
}

.pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 rgba(242,100,48,.55);
  animation: pulse 1.8s infinite;
}

.circuit-bg {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 10%, transparent 70%);
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 480px) minmax(0, 1fr);
  align-items: center;
  gap: 82px;
}

.about__image {
  position: relative;
}

.about__image img {
  width: 100%;
  border-radius: 34px;
  box-shadow: var(--shadow);
  filter: saturate(.92);
}

.vertical-word {
  position: absolute;
  right: -44px;
  top: 34px;
  writing-mode: vertical-rl;
  color: var(--orange);
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 950;
  letter-spacing: -.08em;
  line-height: .9;
  opacity: .9;
}

.about__content p,
.process__content p,
.section-heading p,
.contact__info p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
}

.check-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 750;
}

.check-list span {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: 14px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

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

.section-heading--light p {
  color: rgba(255,255,255,.72);
}

.services__grid,
.case-grid,
.testimonial-grid {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  min-height: 310px;
  padding: 32px;
  border: 1px solid rgba(232, 236, 246, .88);
  border-radius: var(--radius);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242,100,48,.38);
  box-shadow: var(--shadow);
}

.icon-box {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.4), transparent 22%),
    linear-gradient(135deg, var(--orange), var(--navy-2));
  font-size: 24px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.service-card p {
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.timeline__item span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: var(--orange-soft);
  font-weight: 950;
}

.timeline__item h3 {
  margin-bottom: 6px;
}

.timeline__item p {
  margin: 0;
  color: var(--muted);
}

.solutions {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  align-items: center;
  gap: 60px;
  padding-top: 110px;
  padding-bottom: 110px;
}

.solutions__content p {
  color: rgba(255,255,255,.72);
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solutions__grid div {
  min-height: 132px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  font-weight: 850;
  box-shadow: 0 24px 70px rgba(0,0,0,.20);
}

.solutions__grid span {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
}

.client-strip {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.client-logo {
  display: grid;
  min-height: 130px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 26px;
  color: var(--navy-2);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 950;
  letter-spacing: -.06em;
}

.client-logo:nth-child(2) {
  color: var(--orange);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.case-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.case-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.case-card__body {
  padding: 26px;
}

.case-card span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.case-card h3 {
  margin: 10px 0;
  font-size: 28px;
}

.case-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.testimonials {
  padding-top: 110px;
  padding-bottom: 110px;
}

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

blockquote {
  margin: 0;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background: rgba(255,255,255,.08);
}

blockquote p {
  color: rgba(255,255,255,.82);
}

blockquote footer {
  color: var(--orange);
  font-weight: 900;
}

.contact-cta {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: -52px;
  padding: 34px 38px;
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 40%, rgba(242,100,48,.55), transparent 30%),
    linear-gradient(135deg, #201642, #0b1130 55%, #f26430 160%);
  box-shadow: 0 30px 90px rgba(8,17,48,.24);
}

.contact-cta p {
  margin-bottom: 4px;
  color: rgba(255,255,255,.74);
  font-weight: 800;
}

.contact-cta h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(26px, 3vw, 42px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-card strong {
  color: var(--navy-2);
}

.contact-card span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dde3f2;
  border-radius: 16px;
  color: var(--ink);
  background: #fbfcff;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input,
select {
  min-height: 54px;
  padding: 0 16px;
}

textarea {
  resize: vertical;
  padding: 16px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(242,100,48,.72);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(242,100,48,.12);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 46px;
  padding-top: 72px;
  padding-bottom: 38px;
  color: var(--muted);
}

.site-footer img {
  width: 220px;
  margin-bottom: 18px;
}

.site-footer h3 {
  margin-bottom: 16px;
  font-size: 16px;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.reveal-delay {
  transition-delay: .14s;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242,100,48,.55);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(242,100,48,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242,100,48,0);
  }
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav,
  .header-action {
    position: fixed;
    left: 16px;
    right: 16px;
    display: none;
  }

  .main-nav {
    top: 98px;
    flex-direction: column;
    gap: 4px;
    padding: 18px;
    border-radius: 26px;
    color: var(--navy-2);
    background: rgba(255,255,255,.97);
    box-shadow: var(--shadow);
  }

  .header-action {
    top: 370px;
  }

  body.nav-open .main-nav,
  body.nav-open .header-action {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 42px;
  }

  .hero__content {
    max-width: var(--max);
  }

  .about,
  .process,
  .solutions,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

  .floating-card--top {
    left: 20px;
  }

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

@media (max-width: 720px) {
  :root {
    --radius: 22px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 68px;
    padding: 9px 10px 9px 14px;
  }

  .brand {
    width: 152px;
    height: 48px;
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .hero {
    padding-top: 120px;
    padding-inline: 18px;
  }

  .hero__content,
  .hero__visual,
  .about,
  .process,
  .solutions,
  .contact,
  .site-footer,
  .contact-cta,
  .services__grid,
  .case-grid,
  .testimonial-grid,
  .client-strip {
    width: min(calc(100% - 28px), var(--max));
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .hero__stats,
  .services__grid,
  .case-grid,
  .testimonial-grid,
  .client-strip,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form .full {
    grid-column: auto;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .vertical-word {
    right: -20px;
    font-size: 44px;
  }

  .contact-cta {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 28px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .floating-card {
    position: static;
    margin: 14px 0;
  }

  .hero__image {
    transform: none;
  }
}

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

  .reveal,
  .btn,
  .service-card,
  .case-card,
  .site-header {
    transition: none;
  }

  .pulse {
    animation: none;
  }
}
