:root {
  --bg: #F8F9FA;
  --ink: #0A0A0A;
  --muted: #62666C;
  --soft: #EFEFF1;
  --line: rgba(0, 0, 0, 0.08);
  --dark: #0F0F11;
  --accent: #FF3322;
  --white: #fff;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: min(100% - 40px, 1220px);
  --section: clamp(76px, 9vw, 146px);
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
  --shadow2: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* The Highlighter Cflass */
.text-accent {
  color: var(--accent);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  /* Changed to Inter for maximum body text readability */
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(circle at 18% 8%, rgba(0, 0, 0, .035), transparent 25rem), radial-gradient(circle at 82% 28%, rgba(0, 0, 0, .035), transparent 20rem), #fff
}

a {
  color: inherit;
  text-decoration: none
}

img {
  display: block;
  max-width: 100%;
  height: auto
}
.logo
{
  display: block;
  width: 200px;
}
button,
input {
  font: inherit
}

button {
  border: 0;
  background: none;
  cursor: pointer
}

.container {
  width: var(--container);
  margin: auto
}

.section {
  padding-block: var(--section)
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  margin: 12px;
  padding: 10px 14px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  z-index: 999
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: calc(var(--scroll, 0)*1%);
  background: linear-gradient(90deg, #111, #777, #111);
  z-index: 200
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .3s, background .3s
}

.header.scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .07)
}

.header__grid {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  width: max-content;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.04em
}

.brand__mark {
  font-size: 20px;
  line-height: 1
}

.nav {
  display: flex;
  gap: clamp(18px, 2.2vw, 32px);
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  justify-content: right;
  letter-spacing: -.02em
}

.nav a {
  position: relative;
  padding: 10px 0
}

.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: #111;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .42s var(--ease)
}

.nav a:hover:after {
  transform: scaleX(1);
  transform-origin: left
}

.header__right {
  justify-self: end;
  display: flex;
  gap: 18px;
  align-items: center
}

.cart {
  padding-right: 18px;
  border-right: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800
}

.phone {
  display: flex;
  gap: 10px;
  align-items: center
}

.phone>span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff
}

.phone small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
  font-weight: 900
}

.phone b {
  font-size: 14px;
  line-height: 1.15
}

.menu {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111;
  place-items: center;
  gap: 4px
}

.menu i {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: .35s var(--ease)
}

body.nav-open .menu i:first-child {
  transform: translateY(6px) rotate(45deg)
}

body.nav-open .menu i:nth-child(2) {
  opacity: 0
}

body.nav-open .menu i:last-child {
  transform: translateY(-6px) rotate(-45deg)
}

.hero {
  padding-top: clamp(52px, 7vw, 92px)
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(38px, 7vw, 94px);
  align-items: center
}

.chip {
  display: inline-flex;
  margin: 0 0 24px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02); /* Flat, clean UI */
}
h1, h2, h3, h4, h5, h6, .brand, .nav a, .btn, .chip, .ticker span, .stats strong, .step b {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
}
.hero h1,
.section-head h2,
.process__copy h2,
.blog-head h2,
.cta__box h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(42px, 6.5vw, 60px);
}
/* Global Selection Highlight - Brutalist Invert */
::selection {
  background: #111111;
  color: #FFFFFF;
}
::-moz-selection {
  background: #111111;
  color: #FFFFFF;
}

/* The 3-Shade Grayscale Cascade */
.hero h1 .shade-1 {
  color: #8E8E93; /* Premium Silver */

}

.hero h1 .shade-2 {
  color: #555555; /* Charcoal mid-tone */
}

.hero h1 .shade-3 {
  color: #111111; /* Absolute dark */

}
.hero__copy>p:not(.chip) {
  max-width: 640px;
    margin: 24px 0 36px;
    color: #353535;
    font-size: clamp(1rem, 1.2vw, 1rem);
    line-height: 1.6;
    font-weight: 400;
    TEXT-ALIGN: JUSTIFY;
}

.actions {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap
}

.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 7px;
  overflow: hidden;
  isolation: isolate;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.015em;
  transition: transform .42s var(--ease), box-shadow .42s
}

.btn { border-radius: 8px; }

.btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
  border-radius: inherit;
}

.btn:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn--dark {
  background: #101010;
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .18)
}

.btn--light {
  background: #fff;
  color: #111;
  box-shadow: 0 24px 54px rgba(0, 0, 0, .25)
}

.btn--light:before {
  background: #ececec
}

.btn:hover {
  transform: translateY(-3px)
}

.watch {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  font-weight: 900
}

.watch em {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, .22);
  border-radius: 50%;
  font-style: normal;
  transition: .35s var(--ease)
}

.watch:hover em {
  background: #111;
  color: #fff;
  transform: scale(1.06)
}

.hero__visual {
  position: relative;
  min-height: min(54vw, 560px);
  display: grid;
  align-items: center;
  perspective: 1100px
}

.image-card {
  position: relative;
  overflow: hidden;
  background: #e9e9ea;
  box-shadow: var(--shadow);
  will-change: transform
}

.image-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0, rgba(255, 255, 255, .25) 30%, transparent 58%);
  transform: translateX(-110%);
  transition: transform 1s var(--ease);
  pointer-events: none
}

.image-card:hover:after {
  transform: translateX(110%)
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 1.05s var(--ease), filter .8s
}

.image-card:hover img {
  transform: scale(1.075);
  filter: saturate(1.05) contrast(1.03)
}

.hero__image {
  width: min(100%, 640px);
  margin-left: auto;
  border-radius: 24px 24px 90px 24px;
  transform: rotateX(calc(var(--ty, 0)*1deg)) rotateY(calc(var(--tx, 0)*1deg))
}

.float {
  position: absolute;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 900;
  animation: float 6s ease-in-out infinite
}

.float.one {
  top: 11%;
  left: 6%
}

.float.two {
  right: 2%;
  bottom: 13%;
  animation-delay: -2s
}

.partners {
  padding-block: 18px 72px
}

.title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  color: #575757;
  font-size: 12px;
  font-weight: 900
}

.title-line:before,
.title-line:after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line)
}

.title-line span {
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06)
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent)
}

.track {
  width: max-content;
  display: flex;
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  animation: marquee 28s linear infinite
}

.track img {
  height: 24px;
  width: auto;
  filter: grayscale(1) contrast(1.1);
  opacity: .9
}

.section-head {
  max-width: 860px
}

.center {
  margin: 0 auto clamp(42px, 6vw, 70px);
  text-align: center
}

.label {
  margin: 0 0 16px;
  color: #333;
  font-size: 13px;
  font-weight: 900
}

.section-head h2,
.process__copy h2,
.blog-head h2 {
  font-size: clamp(38px, 5.2vw, 64px)
}

.section-head>p:not(.label) {
  margin: 20px auto 0;
  color: #5d6269;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -.02em
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .92fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center
}

.about__image {
  min-height: 410px;
  border-radius: 24px 74px 24px 74px
}

.about__image:before {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 120px;
  height: 120px;
  border-radius: 34px 0 0 0;
  background: #fff;
  z-index: 2
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.stats article {
  min-height: 166px;
  padding: 24px;
  display: grid;
  align-content: center;
  border-radius: 16px;
  background: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, .04);
  transition: .45s var(--ease)
}

.stats article:hover {
  transform: translateY(-7px);
  background: #fff;
  box-shadow: var(--shadow)
}

.stats .wide {
  grid-column: span 2
}

.stats span {
  font-size: 38px;
  color: #555
}

.stats strong {
  margin: 8px 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.03em; /* Fixed from -.06em to make numbers look premium */
}

.stats p {
  margin: 0;
  color: #686b70;
  font-size: 14px;
  font-weight: 800
}

.about__cta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px
}

.phone--plain>span {
  width: 42px;
  height: 42px
}

.dark {
  position: relative;
  overflow: hidden;
  background: #111;
  color: #fff;
  width: min(100% - 40px, 1440px);
  margin: auto
}

.dark:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 0, rgba(255, 255, 255, .08), transparent 26rem), radial-gradient(circle at 84% 20%, rgba(232, 84, 61, .13), transparent 20rem);
  pointer-events: none
}

.dark .container {
  position: relative
}

.invert .label,
.invert h2 {
  color: #fff
}

.invert>p:not(.label) {
  color: rgba(255, 255, 255, .72)
}

.service-list {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .12)
}

.service-item {
  position: relative;
  min-height: 126px;
  display: grid;
  grid-template-columns: 44px 1fr 56px;
  gap: 22px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  cursor: pointer;
  isolation: isolate
}

.service-item:before {
  content: "";
  position: absolute;
  inset: 0 -26px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--accent);
  opacity: 0;
  transform: translateX(-12px);
  transition: .42s var(--ease);
  z-index: -1;
}

.service-item:hover:before,
.service-item.active:before {
  opacity: 1;
  transform: scaleY(1)
}

.service-item i {
  align-self: start;
  padding-top: 12px;
  color: rgba(255, 255, 255, .55);
  font-style: normal;
  font-size: 16px;
  font-weight: 900
}

.service-item h3 {
  margin: 0;
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: .98;
  letter-spacing: -.07em;
  transition: .42s var(--ease)
}

.service-item p {
  max-width: 760px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -.02em;
  opacity: 0;
  transition: max-height .55s var(--ease), margin .55s var(--ease), opacity .4s
}

.service-item:hover h3,
.service-item.active h3 {
  color: var(--accent);
  transform: translateX(4px)
}

.service-item:hover p,
.service-item.active p {
  max-height: 130px;
  margin-top: 14px;
  opacity: 1
}

.service-item a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  transition: .4s var(--ease)
}

.service-item:hover a,
.service-item.active a {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(45deg) scale(1.05)
}

.service-cursor {
  position: fixed;
  z-index: 20;
  width: min(28vw, 320px);
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 22px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.9) rotate(-3deg);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .38);
  transition: opacity .24s, transform .34s var(--ease);
  filter: saturate(.95) contrast(1.08)
}

.service-list:hover .service-cursor {
  opacity: 1
}

.portfolio {
  overflow: hidden
}

.projects {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 3vw, 34px);
    align-items: start;
}

.project .image-card {
  display: block;
    height: clamp(270px, 31vw, 380px);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

/* .project:not(:first-child) .image-card {
  height: clamp(270px, 31vw, 380px)
} */

.project .image-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .46));
  pointer-events: none
}

.project span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-size: 14px;
  font-weight: 900
}

.project h3 {
  margin: 20px 0 8px;
  font-size: clamp(22px, 2.7vw, 28px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.project p {
  color: #5d6065;
    letter-spacing: 0.2px;
    text-align: justify;
    font-size: 16.4px;
    line-height: 1.6;
}

.process {
  position: relative;
  overflow: hidden;
  background: #f5f5f7;
  padding-bottom: 0;
  content-visibility: auto;
  contain-intrinsic-size: 900px
}

.process:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 4% 14%, rgba(255, 255, 255, .85), transparent 24rem), radial-gradient(circle at 85% 55%, rgba(255, 255, 255, .9), transparent 28rem);
  pointer-events: none
}

.process__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .75fr) 1fr;
  gap: clamp(40px, 7vw, 104px);
  padding-bottom: clamp(70px, 8vw, 118px)
}

.process__copy {
  position: sticky;
  top: 116px;
  align-self: start
}

.process__copy h2 {
  margin-bottom: 30px
}

.steps {
  display: grid;
  gap: 28px
}

.step {
  position: relative;
  min-height: 196px;
  padding: 34px;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 16px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .04);
  overflow: hidden;
  transition: .5s var(--ease)
}

.step:hover {
  transform: translateY(-9px);
  background: #fff;
  box-shadow: var(--shadow)
}

.step em {
  font-size: 42px;
  font-style: normal
}

.step b {
  position: absolute;
  top: 26px;
  right: 30px;
  color: rgba(16, 16, 16, .12);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1
}

.step h3 {
  margin: 34px 0 12px;
  font-size: clamp(20px, 2.9vw, 26px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: #666a70;
  font-weight: 650
}

.ticker {
  overflow: hidden;
  background: #111;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent)
}

.ticker__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-block: 20px;
  color: #fff;
  animation: ticker 25s linear infinite
}

.ticker span {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  font-weight: 900
}

.ticker i {
  font-style: normal
}

.testimonials {
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 760px
}

.reviews {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent)
}

.review-track {
  width: max-content;
  display: flex;
  gap: 30px;
  animation: reviews 38s linear infinite
}

.reviews:hover .review-track {
  animation-play-state: paused
}

.review {
  width: min(420px, calc(100vw - 62px));
  padding: 32px;
  border-radius: 16px;
  background: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, .04);
  transition: .45s var(--ease)
}

.review:hover {
  transform: translateY(-9px);
  background: #fff;
  box-shadow: var(--shadow)
}

.review b {
  letter-spacing: 3px
}

.review p {
  min-height: 118px;
  margin: 18px 0 28px;
  font-weight: 650;
  letter-spacing: -.02em
}

.review div {
  display: flex;
  gap: 15px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, .08)
}

.review img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%
}

.review strong,
.review small {
  display: block
}

.review small {
  color: #74777c;
  font-weight: 700
}

.cta {
  padding-block: 24px clamp(72px, 8vw, 132px)
}

.cta__box {
  position: relative;
  min-height: clamp(270px, 32vw, 390px);
  display: grid;
  place-items: center;
  justify-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 48%, rgba(255, 255, 255, .12), transparent 18rem), linear-gradient(90deg, rgba(255, 255, 255, .12), transparent 17%, transparent 83%, rgba(255, 255, 255, .12)), #111;
  box-shadow: var(--shadow2);
  isolation: isolate
}

.cta__box:before,
.cta__box:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28%;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, .18) 0 1px, rgba(255, 255, 255, 0) 1px 28px);
  opacity: .65;
  z-index: -1
}

.cta__box:before {
  left: 0;
  transform: skewY(-4deg)
}

.cta__box:after {
  right: 0;
  transform: skewY(4deg)
}

.cta__box p {
  margin: 0 0 -22px;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  font-weight: 900
}

.cta__box h2 {
  color: #fff;
  font-size: clamp(56px, 11vw, 120px);
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

.cta__box .btn {
  margin-top: -12px
}

.blog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 34px)
}

.blog .image-card {
  display: block;
  height: clamp(240px, 24vw, 310px);
  border-radius: 14px;
  box-shadow: none
}

.blog>div {
  margin-top: 14px;
  padding: 26px 24px;
  border-radius: 0 0 14px 14px;
  background: #f5f5f7;
  transition: .45s var(--ease)
}

.blog:hover>div {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .08)
}

.blog p {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 20px;
  margin: 0 0 20px;
  border-bottom: 1px dashed rgba(0, 0, 0, .25);
  color: #666a70;
  font-size: 14px;
  font-weight: 900
}

.blog p span {
  padding: 10px 15px;
  border-radius: 6px;
  background: #fff;
  color: #333
}

.blog h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 29px);
  line-height: 1.08;
  letter-spacing: -.055em
}

.blog small {
  display: block;
  color: #65686d;
  font-size: 15px;
  font-weight: 650
}

.footer {
  overflow: hidden;
  color: #fff;
  background: #111;
  content-visibility: auto;
  contain-intrinsic-size: 720px
}

.footer .container {
  padding-block: clamp(56px, 7vw, 92px) 26px
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .11)
}

.footer h2 {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.15;
  letter-spacing: -.055em
}

.footer form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .17)
}

.footer input {
  min-width: 0;
  padding: 24px 0;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: 18px;
  font-weight: 800
}

.footer input::placeholder {
  color: rgba(255, 255, 255, .78)
}

.footer button {
  color: #fff;
  font-weight: 900;
  white-space: nowrap
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(26px, 5vw, 72px);
  padding-block: 52px
}

.footer__links h3 {
  margin: 0 0 24px;
  font-size: 20px;
  letter-spacing: -.04em
}

.footer__links a,
.footer__links span {
  display: block;
  width: max-content;
  margin-top: 13px;
  color: rgba(255, 255, 255, .74);
  font-style: normal;
  font-size: 15px;
  font-weight: 650;
  transition: .3s var(--ease)
}

.footer__links a:hover {
  color: #fff;
  transform: translateX(4px)
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-block: 28px;
  border-top: 1px solid rgba(255, 255, 255, .11)
}

.footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-weight: 700
}

.footer__bottom a {
  color: #f0715e;
  text-decoration: underline;
  text-underline-offset: 3px
}

.footer__bottom div {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.footer__bottom strong {
  margin-right: 6px;
  font-size: 22px;
  letter-spacing: -.04em
}

.mega {
  margin-top: 10px;
  font-size: clamp(84px, 18vw, 300px);
  line-height: .78;
  font-weight: 900;
  letter-spacing: -.105em;
  text-align: center;
  color: transparent;
  background: repeating-linear-gradient(180deg, #f5f5f5 0 8px, #9d9d9d 8px 16px, #313131 16px 22px);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: .95;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, .42));
  user-select: none
}

.reveal,
.reveal-img {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .85s var(--ease), transform .85s var(--ease), clip-path .85s var(--ease)
}

.reveal-img {
  transform: translateY(28px) scale(.985);
  clip-path: inset(12% 0 0 0 round 20px)
}

.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  clip-path: inset(0 0 0 0 round 0)
}

@keyframes marquee {
  to {
    transform: translateX(-50%)
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%)
  }
}

@keyframes reviews {
  to {
    transform: translateX(-50%)
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(-14px)
  }
}

@media(hover:none) {
  .service-cursor {
    display: none
  }
  .magnet {
    transform: none !important
  }
}

@media(max-width:1100px) {
  :root {
    --container: min(100% - 32px, 960px)
  }
  .header__grid {
    grid-template-columns: auto 1fr auto
  }
  .nav {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .97);
    box-shadow: var(--shadow2);
    transform: translateY(-16px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: .35s var(--ease)
  }
  body.nav-open .nav {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto
  }
  .nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line)
  }
  .menu {
    display: grid
  }
  .hero__grid,
  .about__grid,
  .process__grid {
    grid-template-columns: 1fr
  }
  .hero__visual {
    min-height: auto
  }
  .hero__image {
    margin: auto
  }
  .about__image {
    min-height: 330px
  }
  .process__copy {
    position: relative;
    top: auto
  }
}

@media(max-width:860px) {
  .cart,
  .header .phone {
    display: none
  }
  .projects,
  .blog-grid,
  .footer__top,
  .footer__links {
    grid-template-columns: 1fr
  }
  .project:nth-child(3) {
    grid-column: auto
  }
  .blog-head,
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column
  }
  .cta__box h2 {
    white-space: normal
  }
}

@media(max-width:620px) {
  :root {
    --container: min(100% - 24px, 560px);
    --section: 72px
  }
  .header__grid {
    min-height: 72px
  }
  .nav {
    top: 72px
  }
  .brand {
    font-size: 17px
  }
  .hero {
    padding-top: 42px
  }
  .hero h1 {
    font-size: clamp(44px, 15vw, 60px)
  }
  .actions,
  .about__cta {
    align-items: stretch;
    flex-direction: column
  }
  .btn,
  .watch {
    width: 100%;
    justify-content: center
  }
  .hero__image {
    border-radius: 18px 18px 58px 18px
  }
  .float {
    display: none
  }
  .center {
    margin-bottom: 34px
  }
  .section-head h2,
  .process__copy h2,
  .blog-head h2 {
    font-size: clamp(36px, 11vw, 48px)
  }
  .about__image {
    min-height: 260px;
    border-radius: 18px 46px 18px 46px
  }
  .stats {
    grid-template-columns: 1fr
  }
  .stats .wide {
    grid-column: auto
  }
  .dark {
    width: 100%
  }
  .service-item {
    grid-template-columns: 34px 1fr 44px;
    min-height: 104px;
    gap: 14px
  }
  .service-item h3 {
    font-size: clamp(29px, 9vw, 42px)
  }
  .service-item p {
    font-size: 14px
  }
  .service-item a {
    width: 40px;
    height: 40px
  }
  .project .image-card,
  .project:not(:first-child) .image-card,
  .blog .image-card {
    height: 250px
  }
  .project span {
    left: 14px;
    bottom: 14px;
    font-size: 12px
  }
  .step,
  .review,
  .blog>div {
    padding: 24px
  }
  .cta__box {
    min-height: 300px;
    padding: 26px
  }
  .cta__box h2 {
    font-size: clamp(64px, 18vw, 96px)
  }
  .cta__box p {
    margin-bottom: -6px;
    font-size: 15px
  }
  .footer form {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 18px
  }
  .footer input {
    padding: 18px 0 8px
  }
  .mega {
    text-align: left
  }
}

@media(prefers-reduced-motion:reduce) {
  *,
  *:before,
  *:after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important
  }
  .reveal,
  .reveal-img {
    opacity: 1;
    transform: none;
    clip-path: none
  }
}
