:root {
  --bg: #f4f6fa;
  --ink: #000;
  --ink-soft: rgba(0, 0, 0, 0.5);
  --white: #fff;
  --accent: #e4332d;
  --navy: #1b1e25;
  --section-gap: 150px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; background: var(--bg); color: var(--ink); scroll-behavior: auto; }
body { font-family: Inter, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1280px, calc(100% - 64px)); margin: 0 auto; }
.section { margin-top: var(--section-gap); position: relative; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 51px; min-width: 136px; padding: 4px 16px;
  background: var(--accent); color: #fff; font: 600 20px/1 Rajdhani, sans-serif;
  text-transform: uppercase; letter-spacing: .02em; border: 0; cursor: pointer;
  gap: 10px; flex-shrink: 0;
  transition: transform .2s ease, background-color .25s ease, box-shadow .25s ease;
}
.btn--sm { height: 46px; min-width: 144px; font-size: 20px; }
.btn:hover { background: #c92a26; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(228,51,45,.35); }

.section-title { text-align: center; text-transform: uppercase; }
.section-title .ghost { display: block; font: 500 68px/1 Rajdhani, sans-serif; opacity: .05; margin-bottom: -38px; }
.section-title p { margin: 0; font: 500 26px/1.2 Rajdhani, sans-serif; }
.section-title h2 { margin: 10px 0 0; font: 600 46px/1.2 Rajdhani, sans-serif; color: #fff; }
.section-title h2 span { color: var(--accent); }
.section-title small { display: block; margin: 8px auto 0; max-width: 699px; font: 400 18px/30px Inter, sans-serif; color: #fff; text-transform: none; }
.section-title--light p { color: rgba(255, 255, 255, 0.4); }

.hero { height: 823px; margin-top: 0; overflow: hidden; position: relative; }
.hero__slides, .hero__shade, .hero__left { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1); transition: opacity 1.2s ease;
}
.hero__slide.is-active { opacity: 1; animation: heroZoom 8s linear infinite; }
.hero__shade { background: rgba(0,0,0,.45); }
.hero__left {
  width: 561px;
  background-image: linear-gradient(-39.8539deg, rgba(0,163,255,0.036) 17.905%, rgba(27,30,37,0.2) 100%), linear-gradient(90deg, #1b1e25 0%, #1b1e25 100%);
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }

.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90; transition: background .3s ease, box-shadow .3s ease;
  background: transparent;
}
.site-nav.is-scrolled { background: #fff; box-shadow: 0 6px 30px rgba(0,0,0,.1); }
.nav__inner { height: 128px; display: flex; justify-content: space-between; align-items: center; }
.nav__logo-link { width: 328px; position: relative; }
.nav__right { width: 852px; display: flex; align-items: center; justify-content: space-between; }
.logo { width: 100%; transition: opacity .25s ease; }
.logo--color { position: absolute; inset: 0; opacity: 0; }
.site-nav.is-scrolled .logo--color { opacity: 1; }
.site-nav.is-scrolled .logo--white { opacity: 0; }
.nav__menu { display: flex; gap: 25px; align-items: center; font: 400 22px/1 Rajdhani, sans-serif; color: #fff; }
.nav__menu a { transition: color .2s ease; }
.nav__menu a:hover, .nav__menu a.is-active { color: #e4332d; }
.site-nav.is-scrolled .nav__menu { color: #1b1e25; }
.nav__menu-cta { display: none; }
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform .25s ease, opacity .2s ease, background-color .25s ease;
}
.site-nav.is-scrolled .nav__toggle span { background: #1b1e25; }
.site-nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.site-nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav__inner { position: relative; }
  .nav__right { width: auto; position: relative; display: flex; justify-content: end; gap: 0; }
  .nav__toggle { display: inline-flex; }
  .nav__cta { display: none; }
  .nav__menu { display: none; }
  .site-nav.is-open .nav__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(320px, calc(100vw - 56px));
    padding: 16px;
    border-radius: 12px;
    background: #fff;
    color: #1b1e25;
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
  }
  .site-nav.is-open .nav__menu a { width: 100%; font-size: 18px; line-height: 1.2; }
  .site-nav.is-open .nav__menu .nav__menu-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 6px;
    min-height: 40px;
    font-size: 17px;
  }
}
.hero__content {
  position: relative; z-index: 2; color: #fff; padding-top: calc(61px + 67px + 150px);
}
.hero__line { width: 328px; height: 2px; background: linear-gradient(90deg, #E4332D 0%, rgba(228, 51, 45, 0) 100%); margin-bottom: 20px; }
.hero h1 { margin: 0; width: 606px; font: 400 56px/70px Rajdhani, sans-serif; text-transform: uppercase; }
.hero p { width: 606px; margin: 20px 0 33px; font: 300 18px/30px Inter, sans-serif; color: #f4f6fa; }

.about__grid { margin-top: 80px; display: grid; grid-template-columns: 545px 1fr; gap: 78px; align-items: center; }
.about__poly-wrap { position: relative; width: 545px; height: 535px; }
.about__poly { position: absolute; inset: 0; object-fit: contain; transform: translateX(-24px); }
.about__poly--front { animation: floatY 4s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translate(10px,0); } 50% { transform: translate(10px,-12px); } }
.about h2 { margin: 0 0 14px; font: 600 56px/60px Rajdhani, sans-serif; text-transform: uppercase; }
.about h2 span { color: var(--accent); }
.about p { margin: 0 0 14px; font: 400 18px/35px Inter, sans-serif; }
.about p strong { font-weight: 600; }

.services { padding: 63px 0 92px; color: #fff; overflow: hidden; }
.services__bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(-22.9384deg, rgba(0,163,255,0.036) 17.905%, rgba(27,30,37,0.2) 100%), linear-gradient(90deg, #1b1e25 0%, #1b1e25 100%), url("assets/webp/imgRectangle2.webp");
  background-size: cover; opacity: 1;
}
.services > .wrap { position: relative; z-index: 1; }
.services__list { margin-top: 80px; border-top: 1px solid transparent; }
.service-card {
  display: flex; justify-content: space-between; align-items: center;
  padding: 5px 20px; min-height: 192px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  background: transparent; position: relative; overflow: hidden;
  transition: color .25s ease;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(244,246,250,.94), rgba(244,246,250,.58)), var(--hover-bg);
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .25s ease;
}
.service-card > * { position: relative; z-index: 1; }
.service-card__num { margin: 0 0 13px; font: 600 30px/1 Rajdhani, sans-serif; color: rgba(255,255,255,0.45); }
.service-card h3 { margin: 0 0 25px; font: 500 36px/1 Rajdhani, sans-serif; text-transform: uppercase; }
.service-card p { margin: 0; max-width: 545px; font: 400 18px/30px Inter, sans-serif; }
.service-card:hover::before { opacity: 1; }
.service-card:hover { color: #000; }
.service-card:hover .service-card__num { color: rgba(0,0,0,0.45); }
.service-card:hover .btn { transform: translateX(-2px); }

.marquee-single { margin-top: 100px; overflow: hidden; }
.marquee-track { display: flex; width: max-content; }
.marquee-row { display: flex; gap: 60px; align-items: center; margin-right: 80px; }
.marquee-group { display: inline-flex; align-items: center; gap: 14px; }
.marquee-row span { font: 500 46px/50px Rajdhani, sans-serif; color: rgba(0,0,0,0.5); text-transform: uppercase; white-space: nowrap; }
.marquee-row img { width: 40px; height: 40px; }

.why__head p { margin: 0; color: rgba(0,0,0,.4); font: 500 26px/1 Rajdhani, sans-serif; text-transform: uppercase; }
.why__head h2 { margin: 0; font: 600 46px/1.2 Rajdhani, sans-serif; text-transform: uppercase; }
.why__head h2 span { color: var(--accent); }
.why__head small { display: block; width: 699px; font: 400 18px/30px Inter, sans-serif; }
.why__grid { display: grid; grid-template-columns: 591px 1fr; gap: 54px; margin-top: 68px; }
.why__visual { position: relative; width: 591px; }
.why__image-stack { position: relative; width: 591px; height: 696px; }
.why__blob {
  position: absolute; inset: 10px 0 0 10px; background: rgba(225,93,53,.2); border-radius: 20px;
  animation: blobFloat 6s ease-in-out infinite;
}
@keyframes blobFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.why__image-stack > img { position: relative; z-index: 1; width: 581px; height: 686px; object-fit: cover; border-radius: 20px; }
.why__xp { display: flex; align-items: center; gap: 56px; margin-top: 10px; }
.why__xp-num span { font: 600 191px/1 Rajdhani, sans-serif; }
.why__xp-num sup { font: 600 100px/1 Rajdhani, sans-serif; top: -58px; position: relative; }
.why__xp-num-img { width: 182px; height: 221px; object-fit: contain; }
.why__xp-text div { width: 108px; height: 2px; background: linear-gradient(90deg, #E4332D 0%, rgba(228, 51, 45, 0) 100%); margin-bottom: 16px; }
.why__xp-text p { margin: 0; width: 207px; font: 600 40px/40px Rajdhani, sans-serif; }
.why__list article {
  min-height: 132px; display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(0,0,0,.1);
  padding: 16px 0;
  cursor: pointer;
}
.why__list h3 { margin: 0; font: 600 26px/1 Rajdhani, sans-serif; }
.why__list article p {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font: 400 18px/30px Inter, sans-serif;
  transition: max-height .3s ease, opacity .25s ease, margin-top .25s ease;
}
.why__list article:hover p,
.why__list article.is-active p {
  max-height: 72px;
  opacity: 1;
  margin-top: 10px;
}
.why__list article:hover,
.why__list article.is-active { border-bottom-color: #e4332d; }
.why__list img { width: 74px; height: 74px; object-fit: contain; }

.projects { margin-top: 180px; }
.projects-pin { position: sticky; top: 90px; }
.projects__head { display: flex; justify-content: space-between; align-items: end; }
.projects__head p { margin: 0; font: 500 26px/1 Rajdhani, sans-serif; color: rgba(0,0,0,0.4); }
.projects__head h2 { margin: 0; font: 600 46px/1.2 Rajdhani, sans-serif; text-transform: uppercase; }
.projects__head h2 span { color: var(--accent); }
.projects-track { display: flex; gap: 32px; margin-top: 70px; will-change: transform; }
.project-card { position: relative; width: 406px; height: 545px; overflow: hidden; flex: 0 0 auto; }
.project-card--wide { width: 516px; }
.project-card img { width: 100%; height: 100%; object-fit: cover; }
.project-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(102,102,102,0) 43.578%, #000 100%);
}
.project-card__txt { position: absolute; left: 22px; right: 22px; bottom: 20px; color: #fff; z-index: 1; }
.project-card__txt div { width: 236px; height: 2px; background: linear-gradient(90deg, #E4332D 0%, rgba(228, 51, 45, 0) 100%); margin-bottom: 8px; }
.project-card__txt h3 { margin: 0; font: 500 26px/30px Rajdhani, sans-serif; text-transform: uppercase; }
.project-card__txt p { margin: 0; color: #d9d9d9; font: 400 16px/30px Inter, sans-serif; }

.video-cta { height: 700px; overflow: hidden; margin-top: 112px; }
.video-cta > img { width: 100%; height: 100%; object-fit: cover; }
.video-cta__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); }
.video-cta__content {
  position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; text-align: center; color: #fff;
}
.video-cta__content h2 { margin: 0 0 30px; width: 690px; font: 500 64px/70px Rajdhani, sans-serif; text-transform: uppercase; }
.video-cta__btn { width: 207px; margin-inline: auto; }

.clients { margin-top: 127px; overflow: hidden; }
.client-marquee { display: flex; width: max-content; margin: 0 0 35px; }
.client-row { display: flex; align-items: center; gap: 32px; margin-right: 32px; }
.client-row img { height: 101px; width: 209px; object-fit: contain; filter: grayscale(1); }

.testimonial { padding: 43px 0 42px; color: #fff; overflow: hidden; }
.testimonial__bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(-15.5248deg, rgba(0,163,255,0.036) 17.905%, rgba(27,30,37,0.2) 100%), linear-gradient(90deg, #1b1e25 0%, #1b1e25 100%), url("assets/webp/imgRectangle2.webp");
  background-size: cover;
}
.testimonial__wrap { position: relative; z-index: 1; text-align: center; }
.testimonial__wrap > p { margin: 0; color: rgba(255,255,255,.4); font: 500 26px/1 Rajdhani, sans-serif; text-transform: uppercase; }
.testimonial__wrap h2 { margin: 15px 0 50px; font: 600 46px/1 Rajdhani, sans-serif; text-transform: uppercase; }
.testimonial__wrap h2 span { color: var(--accent); }
.testimonial__quote { width: 70px; height: 49px; aspect-ratio: 10 / 7; margin: 0 auto 50px; }
.testimonial__viewport { overflow: hidden; cursor: grab; }
.testimonial__viewport:active { cursor: grabbing; }
.testimonial__track { display: flex; transition: transform .6s ease; }
.testimonial__slide { min-width: 100%; }
.testimonial blockquote { margin: 0 auto; width: min(961px, 100%); font: 400 34px/70px Rajdhani, sans-serif; }
.testimonial cite { display: block; margin-top: 51px; color: #d9d9d9; font: 400 20px/1 Inter, sans-serif; font-style: normal; }

.blog__head { display: flex; justify-content: space-between; align-items: end; }
.blog__head p { margin: 0; color: rgba(0,0,0,.4); font: 500 26px/1 Rajdhani, sans-serif; }
.blog__head h2 { margin: 0; font: 600 46px/1.2 Rajdhani, sans-serif; text-transform: uppercase; }
.blog__head h2 span { color: var(--accent); }
.blog__grid { margin-top: 75px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.blog__feature { background: #fff; }
.blog__feature > img { width: 100%; height: 505px; object-fit: cover; }
.blog__feature > div, .blog__side article > div { padding: 35px 27px 28px; }
.blog__feature div div, .blog__side article div div { width: 321px; height: 2px; background: linear-gradient(90deg, #E4332D 0%, rgba(228, 51, 45, 0) 100%); margin-bottom: 11px; }
.blog__feature h3 { margin: 0; font: 500 34px/40px Rajdhani, sans-serif; text-transform: uppercase; }
.blog__feature p, .blog__side p { margin: 10px 0 0; color: rgba(0,0,0,.45); font: 400 18px/1.2 Inter, sans-serif; }
.blog__side { display: grid; gap: 32px; }
.blog__side article { display: grid; grid-template-columns: 328px 1fr; background: #fff; }
.blog__side img { width: 328px; height: 330px; object-fit: cover; }
.blog__side h3 { margin: 0; font: 500 26px/1.5 Rajdhani, sans-serif; text-transform: uppercase; }
.blog__side article div div { width: 208px; }

.contact__grid { display: grid; grid-template-columns: 564px 1fr; gap: 60px; }
.contact p { margin: 0; color: rgba(0,0,0,.4); font: 500 26px/1 Rajdhani, sans-serif; text-transform: uppercase; }
.contact h2 { margin: 0 0 17px; font: 600 46px/1.1 Rajdhani, sans-serif; text-transform: uppercase; }
.contact h2 span { color: var(--accent); }
.contact small { font: 400 18px/30px Inter, sans-serif; }
.contact__form { display: grid; gap: 30px; }
.contact__form label { display: grid; gap: 21px; color: #1f2937; font: 500 18px/1 Inter, sans-serif; }
.contact__form input, .contact__form select, .contact__form textarea {
  border: 0; border-bottom: 1px solid rgba(31,41,55,.75); background: transparent; padding: 0 0 6px;
  font: 400 16px/1.2 Inter, sans-serif; color: rgba(31,41,55,.75);
}
.contact__form textarea { min-height: 117px; resize: vertical; }
.contact__form .btn { width: 136px; height: 51px; }

.footer { margin-top: var(--section-gap); color: #fff; }
.footer__signup { height: 264px; position: relative; overflow: hidden; }
.footer__signup > img { width: 100%; height: 100%; object-fit: cover; }
.footer__signup-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.7); }
.footer__signup-content {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between;
}
.footer__signup-content h2 { margin: 0; width: 584px; text-transform: uppercase; font: 500 46px/1 Rajdhani, sans-serif; }
.footer__signup-content form { display: flex; width: 400px; background: rgba(255,255,255,.45); padding: 5px 10px; gap: 12px; }
.footer__signup-content input { flex: 1; border: 0; background: transparent; color: #fff; font: 400 20px/1 Rajdhani, sans-serif; }
.footer__main { position: relative; padding: 75px 0 28px; }
.footer__bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(-15.7768deg, rgba(0,163,255,0.036) 17.905%, rgba(27,30,37,0.2) 100%), linear-gradient(90deg, #1b1e25 0%, #1b1e25 100%), url("assets/webp/imgRectangle2.webp");
  background-size: cover;
}
.footer__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 374px 138px 138px 1fr; gap: 60px; }
.footer__logo { width: 328px; margin-bottom: 10px; }
.footer__grid p { margin: 0; font: 400 14px/1.35 Inter, sans-serif; }
.footer__socials { display: flex; gap: 30px; margin-top: 19px; }
.footer__socials img { width: 40px; height: 40px; transition: filter .25s ease, transform .2s ease; }
.footer__socials img:hover { filter: brightness(0) saturate(100%) invert(27%) sepia(92%) saturate(2250%) hue-rotate(343deg) brightness(95%) contrast(93%); transform: translateY(-2px); }
.footer__grid h3 { margin: 0 0 13px; font: 700 18px/1 Rajdhani, sans-serif; }
.footer__grid nav { display: grid; gap: 10px; align-content: start; }
.footer__grid nav a { font: 400 18px/40px Rajdhani, sans-serif; }
.footer__grid > div:last-child p {
  display: flex; align-items: center; gap: 14px; margin-bottom: 8px; font: 700 17.846px/1.6 Inter, sans-serif;
}
.footer__grid > div:last-child p img { width: 26.769px; height: 26.769px; aspect-ratio: 1 / 1; }
.footer__badges { display: flex; gap: 52px; margin-top: 19px; }
.footer__badges img { width: 55px; height: 43px; object-fit: contain; }
.footer__bottom { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,.35); margin-top: 40px; }
.footer__bottom p { margin: 20px 0 0; text-align: center; color: rgba(255,255,255,.5); font: 700 18px/1 Rajdhani, sans-serif; }

/* About page */
.about-page .site-nav { position: fixed; }
.about-page .about-hero {
  height: 462px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.about-page .about-hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(-10.3459deg, rgba(0,163,255,0.036) 17.905%, rgba(27,30,37,0.2) 100%), linear-gradient(90deg, #1b1e25 0%, #1b1e25 100%), url("assets/webp/aboutBg.webp");
  background-size: cover;
  background-position: center;
}
.about-page .about-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: calc(61px + 67px + 54px);
  color: #fff;
}
.about-page .about-hero__line {
  width: 328px;
  height: 2px;
  background: linear-gradient(90deg, #E4332D 0%, rgba(228, 51, 45, 0) 100%);
  margin-bottom: 26px;
}
.about-page .about-hero h1 {
  margin: 0;
  font: 400 56px/70px Rajdhani, sans-serif;
  text-transform: uppercase;
}
.about-page .about-hero p {
  margin: 8px 0 0;
  width: min(606px, 100%);
  font: 300 18px/30px Inter, sans-serif;
  color: #f4f6fa;
}

/* Services page */
.services-page .site-nav { position: fixed; }
.services-page .services-hero {
  height: 462px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.services-page .services-hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(-10.3459deg, rgba(0,163,255,0.036) 17.905%, rgba(27,30,37,0.2) 100%), linear-gradient(90deg, #1b1e25 0%, #1b1e25 100%), url("assets/webp/servicesHeroBg.png");
  background-size: cover;
  background-position: center;
}
.services-page .services-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: calc(61px + 67px + 54px);
  color: #fff;
}
.services-page .services-hero__line {
  width: 328px;
  height: 2px;
  background: linear-gradient(90deg, #E4332D 0%, rgba(228, 51, 45, 0) 100%);
  margin-bottom: 26px;
}
.services-page .services-hero h1 {
  margin: 0;
  font: 400 56px/70px Rajdhani, sans-serif;
  text-transform: uppercase;
}
.services-page .services-hero p {
  margin: 8px 0 0;
  width: min(803px, 100%);
  font: 300 18px/30px Inter, sans-serif;
  color: #f4f6fa;
}
.services-detail {
  margin-top: 103px;
}
.services-detail .wrap {
  display: grid;
  gap: 50px;
}
.services-feature {
  position: relative;
  width: min(1064px, 100%);
  height: 499px;
  overflow: hidden;
  margin-inline: auto;
}
.services-feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}
.services-feature__overlay {
  position: absolute;
  left: 41px;
  bottom: 39px;
  width: 514px;
  min-height: 246px;
  padding: 43px 29px;
  background-image: linear-gradient(-15.234deg, rgba(0,163,255,0.036) 17.905%, rgba(27,30,37,0.2) 100%), linear-gradient(90deg, #1b1e25 0%, #1b1e25 100%);
  color: #fff;
  z-index: 1;
}
.services-feature__accent {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 5px;
  background: var(--accent);
}
.services-feature__overlay h2 {
  margin: 0 0 20px;
  font: 500 32px/1 Rajdhani, sans-serif;
  text-transform: uppercase;
}
.services-feature__overlay p {
  margin: 0;
  font: 300 18px/30px Inter, sans-serif;
}
.services-detail__group {
  width: min(1046px, 100%);
  margin-inline: auto;
}
.services-detail__group h3 {
  margin: 0;
  color: rgba(31,41,55,.75);
  font: 500 28px/1.2 Rajdhani, sans-serif;
  text-transform: uppercase;
}
.services-bullets {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}
.services-bullets li {
  position: relative;
  padding-left: 30px;
  color: #000;
  font: 400 16px/1.4 Inter, sans-serif;
}
.services-bullets li::before {
  content: "";
  width: 15px;
  height: 15px;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 3px;
}
.services-page .about-project-cta { margin-top: 110px; }

.about-company__grid {
  display: grid;
  grid-template-columns: 640px 1fr;
  gap: 90px;
  align-items: center;
}
.about-company__visual {
  position: relative;
  width: 640px;
  max-width: 100%;
  height: 560px;
}
.about-company__poly {
  position: absolute;
  object-fit: contain;
}
.about-company__poly--big {
  width: 531px;
  height: 531px;
  left: 0;
  top: 20px;
  z-index: 1;
}
.about-company__poly--small {
  width: 287px;
  height: 287px;
  left: 352px;
  top: 184px;
  z-index: 3;
}
.about-company__poly--mid {
  width: 271px;
  height: 270px;
  left: 360px;
  top: 192px;
  z-index: 2;
}
.about-company h2 {
  margin: 0 0 14px;
  font: 600 56px/60px Rajdhani, sans-serif;
  text-transform: uppercase;
}
.about-company h2 span { color: var(--accent); }
.about-company p {
  margin: 0 0 14px;
  font: 400 18px/35px Inter, sans-serif;
}
.about-company p strong { font-weight: 600; }
.about-company .btn { margin-top: 10px; }

.about-commitment {
  overflow: hidden;
  margin-top: 130px;
  min-height: 729px;
  padding: 63px 0 92px;
}
.about-commitment__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(-16.0699deg, rgba(0,163,255,0.036) 17.905%, rgba(27,30,37,0.2) 100%), linear-gradient(90deg, #1b1e25 0%, #1b1e25 100%), url("assets/webp/aboutBg.webp");
  background-size: cover;
  background-position: center;
}
.about-commitment .wrap { position: relative; z-index: 1; }
.about-commitment__head {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}
.about-commitment__head p {
  margin: 0;
  color: rgba(255,255,255,.4);
  font: 500 26px/1 Rajdhani, sans-serif;
}
.about-commitment__head h2 {
  margin: 4px 0 0;
  font: 600 46px/1.2 Rajdhani, sans-serif;
}
.about-commitment__head h2 span { color: var(--accent); }
.about-commitment__list {
  margin-top: 67px;
  width: min(1062px, 100%);
  margin-inline: auto;
}
.about-commitment__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  color: #fff;
}
.about-commitment__item img { width: 40px; height: 40px; }
.about-commitment__copy {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.about-commitment__copy h3 {
  margin: 0;
  font: 500 36px/1 Rajdhani, sans-serif;
  text-transform: uppercase;
}
.about-commitment__copy p {
  margin: 0;
  font: 400 18px/30px Inter, sans-serif;
  max-width: 1042px;
}
.about-commitment__line {
  margin: 30px 0 20px;
  height: 1px;
}
.about-commitment__line img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }

.about-team__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.about-team__head p {
  margin: 0;
  color: rgba(0,0,0,.4);
  font: 500 26px/1 Rajdhani, sans-serif;
  text-transform: uppercase;
}
.about-team__head h2 {
  margin: 0;
  font: 600 46px/1.2 Rajdhani, sans-serif;
  text-transform: uppercase;
}
.about-team__head h2 span { color: var(--accent); }
.about-team__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 413px);
  justify-content: space-between;
  row-gap: 32px;
}
.about-team__card {
  background: #e0e0e0;
  display: flex;
  width: 413px;
  height: 566px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-bottom: 32px;
}
.about-team__card > img {
  width: 413px;
  height: 440px;
  object-fit: cover;
  flex-shrink: 0;
}
.about-team__card > div {
  width: 349px;
  margin: 0;
}
.about-team__card > div img {
  width: 236px;
  height: 2px;
  object-fit: cover;
}
.about-team__card h3 {
  margin: 8px 0 0;
  font: 500 26px/30px Rajdhani, sans-serif;
  text-transform: uppercase;
}
.about-team__card p {
  margin: 0;
  color: rgba(31,41,55,.75);
  font: 400 16px/23px Inter, sans-serif;
}

.about-project-cta {
  margin-top: 180px;
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  min-height: 549px;
  background: var(--accent);
}
.about-project-cta__left,
.about-project-cta__right {
  position: relative;
  overflow: hidden;
}
.about-project-cta__left::after,
.about-project-cta__right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
.about-project-cta__left img,
.about-project-cta__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-project-cta__center {
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}
.about-project-cta__center p {
  margin: 0;
  font: 500 22px/30px Rajdhani, sans-serif;
  text-transform: uppercase;
}
.about-project-cta__center h2 {
  margin: 12px 0 26px;
  font: 500 46px/1 Rajdhani, sans-serif;
  text-transform: uppercase;
}
.about-project-cta__center .btn {
  background: #fff;
  color: var(--accent);
}
.about-project-cta__center .btn:hover {
  background: #f0f0f0;
}

.footer--about { margin-top: 0; }

/* Clients page */
.clients-page .site-nav { position: fixed; }
.clients-page .clients-hero {
  height: 462px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.clients-page .clients-hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(-10.3459deg, rgba(0,163,255,0.036) 17.905%, rgba(27,30,37,0.2) 100%), linear-gradient(90deg, #1b1e25 0%, #1b1e25 100%), url("assets/webp/aboutBg.webp");
  background-size: cover;
  background-position: center;
}
.clients-page .clients-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: calc(61px + 67px + 54px);
  color: #fff;
}
.clients-page .clients-hero__line {
  width: 328px;
  height: 2px;
  background: linear-gradient(90deg, #E4332D 0%, rgba(228, 51, 45, 0) 100%);
  margin-bottom: 26px;
}
.clients-page .clients-hero h1 {
  margin: 0;
  font: 400 56px/70px Rajdhani, sans-serif;
  text-transform: uppercase;
}
.clients-page .clients-hero p {
  margin: 8px 0 0;
  width: min(720px, 100%);
  font: 300 18px/30px Inter, sans-serif;
  color: #f4f6fa;
}

.clients-directory {
  margin-top: 76px;
}
.clients-directory.reveal-on-view {
  opacity: 1;
  transform: none;
}
.clients-directory h2 {
  margin: 0;
  font: 600 46px/1.2 Rajdhani, sans-serif;
  text-transform: uppercase;
}
.client-group {
  margin-top: 56px;
}
.client-group__head {
  width: min(629px, 100%);
  height: 87px;
  display: flex;
  align-items: center;
  padding-inline: 38px;
  background: linear-gradient(90deg, #1f2937 46.065%, rgba(244, 246, 250, 0) 99.029%);
}
.client-group__head p {
  margin: 0;
  color: #fff;
  font: 600 32px/1 Rajdhani, sans-serif;
}
.clients-logo-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 305px);
  gap: 20px;
}
.clients-logo-grid--consultants {
  grid-template-columns: repeat(4, 305px);
}
.client-logo-card {
  background: #fff;
  border: 1px solid rgba(27, 30, 37, 0.12);
  width: 305px;
  height: 182px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  padding: 14px;
  overflow: hidden;
}
.client-logo-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: scale-down;
  filter: grayscale(1);
}

/* Products page */
.products-page .site-nav { position: fixed; }
.products-page .products-hero {
  height: 462px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.products-page .products-hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(-10.3459deg, rgba(0,163,255,0.036) 17.905%, rgba(27,30,37,0.2) 100%), linear-gradient(90deg, #1b1e25 0%, #1b1e25 100%), url("assets/webp/aboutBg.webp");
  background-size: cover;
  background-position: center;
}
.products-page .products-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: calc(61px + 67px + 54px);
  color: #fff;
}
.products-page .products-hero__line {
  width: 328px;
  height: 2px;
  background: linear-gradient(90deg, #E4332D 0%, rgba(228, 51, 45, 0) 100%);
  margin-bottom: 26px;
}
.products-page .products-hero h1 {
  margin: 0;
  font: 400 56px/70px Rajdhani, sans-serif;
  text-transform: uppercase;
}
.products-page .products-hero p {
  margin: 8px 0 0;
  width: min(803px, 100%);
  font: 300 18px/30px Inter, sans-serif;
  color: #f4f6fa;
}

.products-brands {
  margin-top: 71px;
}
.products-brand-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.products-brand-tabs__chip {
  border: 0;
  background: #fff;
  min-height: 46px;
  padding: 4px 16px;
  color: #1b1e25;
  font: 500 20px/1 Rajdhani, sans-serif;
  text-transform: uppercase;
}
.products-brand-tabs__chip.is-active {
  background: var(--accent);
  color: #fff;
}
.products-brand-tabs__chip.is-disabled {
  opacity: .72;
  cursor: not-allowed;
}
.products-brand-panel {
  display: block;
}
.brand-tabs-enabled .products-brand-panel {
  display: none;
}
.brand-tabs-enabled .products-brand-panel.is-active {
  display: block;
}
.products-brand-logo {
  width: 338px;
  margin: 44px auto 0;
  background: transparent;
}
.products-brand-logo--abb {
  width: 164px;
}
.products-brand-logo--ge {
  width: 338px;
}
.products-brand-logo--schneider {
  width: 300px;
}
.products-brand-logo--cg-power {
  width: 300px;
}
.products-brand-logo--elektrolites {
  width: 300px;
}
.products-brand-logo--cs-electric {
  width: 220px;
}
.products-brand-logo--ipl {
  width: 300px;
}
.products-brand-logo--raychem {
  width: 300px;
}
.products-brand-logo--katalite {
  width: 220px;
}
.products-brand-logo--socomec {
  width: 320px;
}
.products-brand-logo--bussmann {
  width: 338px;
}
.products-brand-logo--legrand {
  width: 277px;
}
.products-brand-logo--prok-dvs {
  width: 243px;
}
.products-brand-logo--matrix {
  width: 179px;
}
.products-brand-logo--delta {
  width: 198px;
}
.products-brand-logo--gic {
  width: 106px;
}
.products-brand-content {
  display: block;
}
.brand-tabs-enabled .products-brand-content {
  display: none;
}
.brand-tabs-enabled .products-brand-content.is-active {
  display: block;
}
/* Ensure GE content sections are never suppressed */
.products-brand-content[data-brand-panel="ge"] .products-group {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.products-group {
  margin-top: 67px;
}
.products-group__title {
  width: min(629px, 100%);
  min-height: 87px;
  padding-inline: 38px;
  background: linear-gradient(90deg, #1f2937 46.065%, rgba(244, 246, 250, 0) 99.029%);
  display: flex;
  align-items: center;
}
.products-group__title p {
  margin: 0;
  color: #fff;
  font: 600 32px/1 Rajdhani, sans-serif;
}
.products-group__title--wide {
  width: min(737px, 100%);
}
.products-grid {
  margin-top: 73px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.products-card {
  background: #d9d9d9;
  display: flex;
  width: 412px;
  height: 569px;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  padding-bottom: 34px;
  margin-inline: auto;
}
.products-card > img {
  width: 412px;
  height: 386px;
  object-fit: cover;
  flex-shrink: 0;
  background: #fff;
}
.products-card__content {
  width: 349.254px;
  padding: 0;
}
.products-card__line {
  width: 236px;
  height: 2px;
  background: linear-gradient(90deg, #E4332D 0%, rgba(228, 51, 45, 0) 100%);
}
.products-card h3 {
  margin: 8px 0 13px;
  min-height: 54px;
  font: 600 30px/30px Rajdhani, sans-serif;
  text-transform: uppercase;
}
.products-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 12px 8px 20px;
  background: var(--accent);
  color: #fff;
  font: 500 22px/30px Rajdhani, sans-serif;
  text-transform: uppercase;
}
.products-card__btn:hover {
  background: #c92a26;
}

.products-cta {
  margin-top: 180px;
}
.products-page .about-project-cta__left img,
.products-page .about-project-cta__right img {
  object-position: center;
}

/* Viewport entry animation for CTA side images */
.cta-float-image {
  opacity: 0;
  transition: transform 1s cubic-bezier(.22,.61,.36,1), opacity .95s ease;
}
.cta-float-image--left { transform: translate3d(-92px, 0, 0); }
.cta-float-image--right { transform: translate3d(92px, 0, 0); transition-delay: .12s; }
.cta-float-image.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-enabled .reveal-on-view { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal-on-view.is-visible { opacity: 1; transform: none; }
/* Keep products page content always visible to avoid hidden-tab reveal issues */
.products-page .reveal-on-view { opacity: 1 !important; transform: none !important; }

@media (max-width: 1200px) {
  .wrap { width: calc(100% - 56px); }
  .hero, .video-cta { height: 720px; }
  .hero__left { width: 46%; }
  .hero h1, .hero p, .video-cta__content h2 { width: min(90vw, 690px); }
  .about__grid, .why__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__poly-wrap { width: min(545px, 100%); }
  .blog__grid { grid-template-columns: 1fr; }
  .blog__side article { grid-template-columns: 280px 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-company__grid { grid-template-columns: 1fr; gap: 20px; }
  .about-company__visual { width: min(640px, 100%); margin: 0 auto; }
  .about-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: initial;
    gap: 24px;
  }
  .about-team__card {
    width: 100%;
    max-width: 413px;
    margin-inline: auto;
  }
  .about-project-cta__center h2 { font-size: 40px; }
  .services-feature { height: auto; aspect-ratio: 1064 / 499; }
  .services-feature__overlay { left: 24px; bottom: 24px; width: min(514px, calc(100% - 48px)); min-height: 210px; padding: 28px 24px; }
  .services-feature__overlay h2 { font-size: 29px; }
  .services-detail__group { width: 100%; }
  .services-bullets { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  :root { --section-gap: 96px; }
  .nav__inner { height: 92px; }
  .nav__logo-link { width: 220px; }
  .btn, .btn--sm { height: 42px; min-width: 122px; font-size: 17px; }
  .hero__content { padding-top: calc(24px + 92px + 140px); }
  .hero h1 { font-size: 44px; line-height: 52px; }
  .hero p { font-size: 16px; line-height: 26px; }
  .section-title .ghost { font-size: 54px; }
  .section-title p, .section-title--light p, .why__head p, .projects__head p, .blog__head p, .contact p, .testimonial__wrap > p { font-size: 22px; }
  .section-title h2, .why__head h2, .projects__head h2, .blog__head h2, .contact h2, .testimonial__wrap h2 { font-size: 38px; }
  .about h2 { font-size: 44px; line-height: 50px; }
  .service-card { flex-direction: column; align-items: start; gap: 18px; padding: 18px 20px; }
  .marquee-row { gap: 34px; margin-right: 50px; }
  .marquee-group { gap: 10px; }
  .marquee-row span { font-size: 36px; }
  .projects-pin { position: relative; top: 0; }
  .projects-track { overflow-x: auto; padding-bottom: 10px; }
  .project-card, .project-card--wide { width: 84vw; }
  .video-cta__content h2 { font-size: 50px; line-height: 58px; }
  .testimonial blockquote { font-size: 28px; line-height: 48px; }
  .blog__side article { grid-template-columns: 1fr; }
  .blog__side img { width: 100%; }
  .footer__signup-content { padding: 24px 0; display: grid; gap: 18px; justify-items: start; }
  .footer__signup-content h2 { width: auto; font-size: 38px; }
  .footer__signup-content form { width: min(400px, 100%); }
  .about-page .about-hero { height: 420px; }
  .about-page .about-hero__content { padding-top: calc(34px + 92px + 94px); }
  .about-page .about-hero h1 { font-size: 44px; line-height: 52px; }
  .about-page .about-hero p { font-size: 16px; line-height: 26px; }
  .services-page .services-hero { height: 420px; }
  .services-page .services-hero__content { padding-top: calc(34px + 92px + 94px); }
  .services-page .services-hero h1 { font-size: 44px; line-height: 52px; }
  .services-page .services-hero p { font-size: 16px; line-height: 26px; }
  .services-detail { margin-top: 70px; }
  .services-detail .wrap { gap: 34px; }
  .services-detail__group h3 { font-size: 24px; }
  .services-bullets { gap: 16px 20px; }
  .services-bullets li { font-size: 15px; padding-left: 24px; }
  .services-bullets li::before { width: 12px; height: 12px; }
  .clients-page .clients-hero { height: 420px; }
  .clients-page .clients-hero__content { padding-top: calc(34px + 92px + 94px); }
  .clients-page .clients-hero h1 { font-size: 44px; line-height: 52px; }
  .clients-page .clients-hero p { font-size: 16px; line-height: 26px; }
  .products-page .products-hero { height: 420px; }
  .products-page .products-hero__content { padding-top: calc(34px + 92px + 94px); }
  .products-page .products-hero h1 { font-size: 44px; line-height: 52px; }
  .products-page .products-hero p { font-size: 16px; line-height: 26px; }
  .products-brands { margin-top: 54px; }
  .products-brand-tabs { gap: 14px; }
  .products-brand-tabs__chip { min-height: 40px; font-size: 18px; }
  .products-brand-logo { width: 248px; margin-top: 30px; }
  .products-brand-logo--abb { width: 120px; }
  .products-brand-logo--ge { width: 248px; }
  .products-brand-logo--schneider { width: 220px; }
  .products-brand-logo--cg-power { width: 220px; }
  .products-brand-logo--elektrolites { width: 220px; }
  .products-brand-logo--cs-electric { width: 170px; }
  .products-brand-logo--ipl { width: 220px; }
  .products-brand-logo--raychem { width: 220px; }
  .products-brand-logo--katalite { width: 170px; }
  .products-brand-logo--socomec { width: 236px; }
  .products-brand-logo--bussmann { width: 248px; }
  .products-brand-logo--legrand { width: 206px; }
  .products-brand-logo--prok-dvs { width: 182px; }
  .products-brand-logo--matrix { width: 134px; }
  .products-brand-logo--gic { width: 86px; }
  .products-brand-logo--delta { width: 150px; }
  .products-group { margin-top: 54px; }
  .products-group__title { min-height: 76px; padding-inline: 28px; }
  .products-group__title p { font-size: 28px; }
  .products-grid { margin-top: 34px; }
  .products-card { width: 100%; max-width: 412px; height: auto; min-height: 569px; }
  .products-card > img { width: 100%; height: auto; aspect-ratio: 412 / 386; }
  .products-card__content { width: calc(100% - 32px); }
  .products-card h3 { font-size: 24px; line-height: 1.15; min-height: 56px; }
  .products-card__btn { min-height: 36px; font-size: 17px; padding: 8px 12px; }
  .clients-directory h2 { font-size: 38px; }
  .client-group__head { height: 76px; padding-inline: 28px; }
  .client-group__head p { font-size: 28px; }
  .clients-logo-grid,
  .clients-logo-grid--consultants { grid-template-columns: repeat(2, 305px); justify-content: start; }
  .client-logo-card img { filter: grayscale(1); }
  .about-company h2 { font-size: 44px; line-height: 50px; }
  .about-company p { font-size: 16px; line-height: 30px; }
  .about-commitment { min-height: 0; padding: 52px 0 56px; }
  .about-commitment__head p { font-size: 22px; }
  .about-commitment__head h2 { font-size: 38px; }
  .about-commitment__item { gap: 10px; }
  .about-commitment__item img { width: 30px; height: 30px; }
  .about-commitment__copy h3 { font-size: 30px; }
  .about-commitment__copy { gap: 14px; }
  .about-team__head p { font-size: 22px; }
  .about-team__head h2 { font-size: 38px; }
  .about-project-cta { grid-template-columns: 1fr; min-height: 0; }
  .about-project-cta__left,
  .about-project-cta__right { height: 220px; }
  .about-project-cta__center { min-height: 250px; }
  .about-project-cta__center h2 { font-size: 38px; line-height: 1.1; }
}

@media (max-width: 640px) {
  .wrap { width: calc(100% - 36px); }
  .hero { height: 760px; }
  .hero__left { width: 100%; background-image: linear-gradient(180deg, rgba(27,30,37,.92), rgba(27,30,37,.72)); }
  .site-nav.is-open .nav__menu { width: min(292px, calc(100vw - 36px)); }
  .hero__content { padding-top: calc(16px + 92px + 130px); }
  .hero h1 { width: 100%; font-size: 40px; line-height: 47px; }
  .hero p { width: 100%; }
  .about__grid { margin-top: 40px; }
  .about__poly-wrap { height: auto; aspect-ratio: 1 / 1; }
  .about h2 { font-size: 38px; line-height: 44px; }
  .about p { font-size: 16px; line-height: 28px; }
  .why__visual, .why__image-stack { width: 100%; }
  .why__xp { gap: 12px; }
  .why__xp-num span { font-size: 120px; }
  .why__xp-num sup { font-size: 60px; top: -34px; }
  .why__xp-num-img { width: 132px; height: 160px; }
  .why__xp-text p { font-size: 30px; line-height: 34px; }
  .why__head small {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    line-height: 28px;
    overflow-wrap: anywhere;
  }
  .why__list article { min-height: 90px; }
  .why__list h3 { font-size: 21px; }
  .why__list img { width: 50px; height: 50px; }
  .why__list article p { max-height: 72px; opacity: 1; margin-top: 8px; font-size: 16px; line-height: 24px; }
  .video-cta__content h2 { width: 100%; font-size: 40px; line-height: 44px; }
  .client-row img { height: 66px; }
  .testimonial blockquote { font-size: 24px; line-height: 40px; }
  .contact__form label { font-size: 16px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__logo { width: min(328px, 100%); }
  .footer__bottom p { font-size: 15px; }
  .about-page .about-hero { height: 390px; }
  .about-page .about-hero__content { padding-top: calc(14px + 92px + 56px); }
  .about-page .about-hero__line { width: 220px; }
  .about-page .about-hero h1 { width: 100%; font-size: 40px; line-height: 47px; }
  .about-page .about-hero p { width: 100%; }
  .services-page .services-hero { height: 390px; }
  .services-page .services-hero__line { width: 220px; }
  .services-page .services-hero h1 { width: 100%; font-size: 40px; line-height: 47px; }
  .services-page .services-hero p { width: 100%; }
  .services-page .services-hero { min-height: 470px; height: auto; }
  .services-page .services-hero__content { padding-top: calc(16px + 92px + 90px); padding-bottom: 24px; }
  .services-detail .wrap { gap: 24px; }
  .services-feature { overflow: visible; aspect-ratio: auto; }
  .services-feature::after { inset: 0 auto auto 0; width: 100%; height: calc(100% - 1px); }
  .services-feature > img { aspect-ratio: 1064 / 499; height: auto; }
  .services-feature__overlay {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    margin-top: -1px;
    min-height: 0;
    padding: 24px 18px 22px;
  }
  .services-feature__overlay h2 { font-size: 28px; margin-bottom: 14px; }
  .services-feature__overlay p { font-size: 16px; line-height: 26px; }
  .services-feature__accent { right: auto; left: 0; width: 4px; }
  .services-detail__group h3 { font-size: 22px; }
  .services-bullets { margin-top: 20px; grid-template-columns: 1fr; }
  .services-page .about-project-cta { margin-top: 84px; }
  .clients-page .clients-hero { height: 390px; }
  .clients-page .clients-hero__content { padding-top: calc(14px + 92px + 56px); }
  .clients-page .clients-hero__line { width: 220px; }
  .clients-page .clients-hero h1 { width: 100%; font-size: 40px; line-height: 47px; }
  .clients-page .clients-hero p { width: 100%; }
  .products-page .products-hero { height: 390px; }
  .products-page .products-hero__line { width: 220px; }
  .products-page .products-hero h1 { width: 100%; font-size: 40px; line-height: 47px; }
  .products-page .products-hero p { width: 100%; }
  .products-page .products-hero { min-height: 470px; height: auto; }
  .products-page .products-hero__content { padding-top: calc(16px + 92px + 90px); padding-bottom: 24px; }
  .products-brand-tabs { gap: 8px; }
  .products-brand-tabs__chip { min-height: 36px; font-size: 15px; padding: 4px 10px; }
  .products-brand-logo { width: 180px; margin-top: 22px; }
  .products-brand-logo--abb { width: 92px; }
  .products-brand-logo--ge { width: 180px; }
  .products-brand-logo--schneider { width: 160px; }
  .products-brand-logo--cg-power { width: 160px; }
  .products-brand-logo--elektrolites { width: 160px; }
  .products-brand-logo--cs-electric { width: 130px; }
  .products-brand-logo--ipl { width: 160px; }
  .products-brand-logo--raychem { width: 160px; }
  .products-brand-logo--katalite { width: 130px; }
  .products-brand-logo--socomec { width: 170px; }
  .products-brand-logo--bussmann { width: 180px; }
  .products-brand-logo--legrand { width: 150px; }
  .products-brand-logo--prok-dvs { width: 132px; }
  .products-brand-logo--matrix { width: 98px; }
  .products-brand-logo--gic { width: 72px; }
  .products-brand-logo--delta { width: 116px; }
  .products-group { margin-top: 34px; }
  .products-group__title { min-height: 64px; padding-inline: 20px; }
  .products-group__title p { font-size: 24px; }
  .products-grid { margin-top: 20px; grid-template-columns: 1fr; gap: 14px; }
  .products-card { min-height: 0; height: auto; padding-bottom: 24px; }
  .products-card__content { width: calc(100% - 28px); }
  .products-card__line { width: 160px; }
  .products-card h3 { font-size: 21px; line-height: 1.15; min-height: 44px; }
  .products-card__btn { font-size: 15px; min-height: 34px; }
  .products-cta { margin-top: 110px; }
  .clients-directory { margin-top: 54px; }
  .clients-directory h2 { font-size: 32px; line-height: 1.2; }
  .client-group { margin-top: 38px; }
  .client-group__head { height: 64px; padding-inline: 20px; }
  .client-group__head p { font-size: 24px; }
  .clients-logo-grid,
  .clients-logo-grid--consultants { grid-template-columns: repeat(1, 305px); gap: 12px; justify-content: center; }
  .client-logo-card { width: 305px; height: 182px; padding: 12px; }
  .about-company__visual { height: 390px; }
  .about-company__poly--big { width: 365px; height: 365px; left: 0; top: 8px; }
  .about-company__poly--small { width: 197px; height: 197px; left: 220px; top: 126px; }
  .about-company__poly--mid { width: 184px; height: 184px; left: 226px; top: 132px; }
  .about-company h2 { font-size: 38px; line-height: 44px; }
  .about-team__head { display: grid; gap: 14px; }
  .about-team__grid { grid-template-columns: 1fr; }
  .about-team__card { height: auto; padding-bottom: 24px; gap: 24px; }
  .about-team__card > img { width: 100%; height: auto; aspect-ratio: 413 / 440; }
  .about-team__card > div { width: calc(100% - 40px); }
  .about-team__card h3 { font-size: 22px; }
  .about-project-cta { margin-top: 110px; }
  .about-project-cta__center h2 { font-size: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .cta-float-image {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

/* Contact page */
.contact-page .site-nav { position: fixed; }
.contact-page .contact-hero {
  height: 610px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.contact-page .contact-hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(-10.3459deg, rgba(0,163,255,0.036) 17.905%, rgba(27,30,37,0.2) 100%), linear-gradient(90deg, #1b1e25 0%, #1b1e25 100%), url("assets/webp/imgRectangle2.webp");
  background-size: cover;
  background-position: center;
}
.contact-page .contact-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
  color: #fff;
  padding-top: calc(61px + 67px + 54px);
}
.contact-page .contact-hero__line {
  width: 328px;
  height: 2px;
  background: linear-gradient(90deg, #E4332D 0%, rgba(228, 51, 45, 0) 100%);
  margin-bottom: 26px;
}
.contact-page .contact-hero h1 {
  margin: 0;
  font: 400 56px/70px Rajdhani, sans-serif;
  text-transform: uppercase;
}
.contact-page .contact-hero p {
  margin: 8px 0 0;
  width: min(606px, 100%);
  font: 300 18px/30px Inter, sans-serif;
  color: #f4f6fa;
}
.contact-page .contact-hero__cards {
  position: relative;
  z-index: 3;
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 27px;
}
.contact-page .contact-info-card {
  min-height: 225px;
  background: #5d5f65;
  border-left: 8px solid var(--accent);
  padding: 64px 32px;
  display: flex;
  gap: 24px;
  color: #fff;
}
.contact-page .contact-info-card__icon {
  width: 97px;
  height: 97px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-page .contact-info-card__icon img,
.contact-page .contact-info-card__icon svg {
  width: 45px;
  height: 45px;
  color: var(--accent);
  fill: currentColor;
}
.contact-page .contact-info-card__text { min-width: 0; }
.contact-page .contact-info-card__text h2 {
  margin: 0 0 17px;
  font: 500 26px/1 Rajdhani, sans-serif;
  color: #fff;
}
.contact-page .contact-info-card__text a,
.contact-page .contact-info-card__text p {
  margin: 0;
  color: #f4f6fa;
  font: 400 26px/30px Rajdhani, sans-serif;
  overflow-wrap: anywhere;
}
.contact-page .contact-info-card__text--small p {
  font-size: 14px;
  line-height: 1.35;
  font-family: Inter, sans-serif;
}

.contact-page-form {
  margin-top: 172px;
  margin-bottom: 150px;
}
.contact-page-form__wrap { width: min(738px, 100%); }
.contact-page-form p {
  margin: 0;
  color: rgba(31,41,55,.75);
  font: 500 26px/1.5 Rajdhani, sans-serif;
  text-transform: uppercase;
}
.contact-page-form h2 {
  margin: 0 0 41px;
  font: 600 56px/1 Rajdhani, sans-serif;
  text-transform: uppercase;
}
.contact-page-form__form {
  display: grid;
  gap: 20px;
}
.contact-page-form__form input,
.contact-page-form__form textarea {
  width: 100%;
  border: 0;
  background: #1b1e25;
  color: #d9d9d9;
  font: 400 24px/1 Rajdhani, sans-serif;
  padding: 25px 35px 24px;
}
.contact-page-form__form input { min-height: 85px; }
.contact-page-form__form textarea {
  min-height: 324px;
  resize: vertical;
}
.contact-page-form__form input::placeholder,
.contact-page-form__form textarea::placeholder {
  color: #d9d9d9;
  opacity: 1;
}
.contact-page-form__form .btn {
  width: 100%;
  height: 71px;
  font-size: 30px;
}

.contact-page .footer__grid > div:last-child p a {
  color: inherit;
}

@media (max-width: 860px) {
  .contact-page .contact-hero { height: auto; min-height: 520px; overflow: visible; padding-bottom: 18px; }
  .contact-page .contact-hero__content { padding-top: calc(34px + 92px + 64px); }
  .contact-page .contact-hero h1 { font-size: 44px; line-height: 52px; }
  .contact-page .contact-hero p { font-size: 16px; line-height: 26px; }
  .contact-page .contact-hero__cards { margin-top: 34px; grid-template-columns: 1fr; gap: 18px; }
  .contact-page .contact-info-card { padding: 34px 24px; min-height: 180px; }
  .contact-page-form { margin-top: 64px; margin-bottom: 120px; }
  .contact-page-form p { font-size: 22px; }
  .contact-page-form h2 { font-size: 46px; margin-bottom: 24px; }
  .contact-page-form__form input,
  .contact-page-form__form textarea { font-size: 22px; }
  .contact-page-form__form textarea { min-height: 250px; }
  .contact-page-form__form .btn { height: 62px; font-size: 25px; }
}

@media (max-width: 640px) {
  .contact-page .contact-hero { height: auto; min-height: 460px; overflow: visible; }
  .contact-page .contact-hero__line { width: 220px; }
  .contact-page .contact-hero h1 { width: 100%; font-size: 40px; line-height: 47px; }
  .contact-page .contact-hero p { width: 100%; }
  .contact-page .contact-hero__cards { margin-top: 24px; gap: 14px; }
  .contact-page .contact-info-card { padding: 20px 16px; min-height: 146px; gap: 14px; border-left-width: 5px; }
  .contact-page .contact-info-card__icon { width: 58px; height: 58px; }
  .contact-page .contact-info-card__icon img,
  .contact-page .contact-info-card__icon svg { width: 30px; height: 30px; }
  .contact-page .contact-info-card__text h2 { font-size: 24px; }
  .contact-page .contact-info-card__text a,
  .contact-page .contact-info-card__text p { font-size: 22px; line-height: 1.25; }
  .contact-page-form { margin-top: 42px; margin-bottom: 96px; }
  .contact-page-form p { font-size: 20px; }
  .contact-page-form h2 { font-size: 38px; }
  .contact-page-form__wrap { width: 100%; padding-inline: 12px; }
  .contact-page-form__form input,
  .contact-page-form__form textarea { padding: 20px; min-height: 68px; font-size: 20px; }
  .contact-page-form__form textarea { min-height: 220px; }
  .contact-page-form__form .btn { height: 54px; font-size: 21px; }
}
