/* =====================================================================
   PTPL · Professional Techsys — design system
   Ink charcoal + PTPL red. Display: Archivo · Body: Inter · Data: JetBrains Mono
   ===================================================================== */

:root {
  --ink: #0B1D3A;
  /* primary dark navy        */
  --ink-2: #0F2447;
  /* dark navy panel          */
  --ink-3: #1A3357;
  /* raised navy panel/hover  */
  --red: #E5322B;
  /* PTPL brand red           */
  --red-2: #FF463C;
  /* bright red (hover)       */
  --paper: #F5F6F9;
  /* light page bg            */
  --paper-2: #ECEFF3;
  /* alt light section        */
  --card: #FFFFFF;
  --ink-text: #0B1629;
  /* text on light            */
  --slate: #94A0B2;
  /* muted on dark            */
  --slate-2: #5A6577;
  /* muted on light           */
  --green: #37D89E;
  /* status only (online)     */
  --line-d: rgba(255, 255, 255, .10);
  --line-l: #E2E6EC;

  --display: 'Archivo', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --wrap: 1180px;
  --r: 14px;
  /* radius */
  --cut: 22px;
  /* angular corner cut */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip
}

body {
  margin: 0;
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  margin: 0;
  line-height: 1.04;
  letter-spacing: -.02em
}

p {
  margin: 0
}

ul {
  margin: 0;
  padding: 0;
  list-style: none
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%
}

.center {
  text-align: center
}

.muted {
  color: var(--slate-2)
}

.ic {
  width: 22px;
  height: 22px;
  flex: none
}

.ic--sm {
  width: 16px;
  height: 16px
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  z-index: 200
}

.skip:focus {
  left: 8px;
  top: 8px;
  border-radius: 8px
}

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-block;
  font-family: 'Oswald', var(--display), sans-serif;
  font-size: 1rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 18px;
  text-shadow: 0 0 18px rgba(225,37,47,.35);
}

.eyebrow::before {
  content: "▸ ";
  color: var(--red)
}

@media(max-width:600px){
  .eyebrow { font-size: 1.1rem; letter-spacing: .15em; }
}

.section__head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center
}

.section__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800
}

.section__sub {
  margin-top: 16px;
  color: var(--slate-2);
  font-size: 1.06rem
}

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  --bg: var(--red);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: 13px 22px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  transition: transform .18s var(--ease),
    background .18s, box-shadow .25s, border-color .18s;
  white-space: nowrap;
  line-height: 1;
}

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

.btn:focus-visible {
  outline: 3px solid var(--red-2);
  outline-offset: 3px
}

.btn .ic {
  transition: transform .2s var(--ease)
}

.btn:hover .ic {
  transform: translateX(4px)
}

.btn--red {
  --bg: var(--red);
  box-shadow: 0 8px 24px -8px rgba(229, 50, 43, .6)
}

.btn--red:hover {
  --bg: var(--red-2);
  box-shadow: 0 12px 30px -8px rgba(229, 50, 43, .7)
}

.btn--ghost {
  --bg: transparent;
  --fg: #fff;
  border-color: var(--line-d)
}

.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .06)
}

.btn--dark {
  --bg: var(--ink);
  --fg: #fff
}

.btn--dark:hover {
  --bg: #1d2636
}

.btn--ghost-dark {
  --bg: rgba(255,255,255,.07);
  --fg: #fff;
  border: 1.5px solid rgba(255,255,255,.28)
}

.btn--ghost-dark:hover {
  --bg: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.6)
}

.btn--wa {
  --bg: #25d366;
  --fg: #fff;
  border: none;
  gap: 8px
}

.btn--wa:hover { --bg: #1eb358 }

.btn--ghost-ticket {
  --bg: transparent;
  --fg: var(--ink-text);
  border: 1.5px solid var(--line-l);
  font-size: .88rem;
  padding: 10px 16px
}

.btn--ghost-ticket:hover {
  --bg: var(--red);
  --fg: #fff;
  border-color: var(--red)
}

/* Pulse ring on hero primary CTA */
.btn--pulse {
  position: relative
}

.btn--pulse::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 2px solid var(--red);
  opacity: 0;
  animation: pulse-ring 2.2s ease-out infinite
}

@keyframes pulse-ring {
  0%   { inset: -3px; opacity: .75 }
  100% { inset: -14px; opacity: 0 }
}

/* Work → contact CTA card */
.work-cta {
  margin-top: 52px;
  background: var(--ink);
  border-radius: 20px;
  padding: 36px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px
}

.work-cta__text .eyebrow { color: var(--red) }

.work-cta__text h3 {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: #fff;
  margin-top: 6px;
  max-width: 38ch
}

.work-cta__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center
}

.btn--lg {
  padding: 16px 28px;
  font-size: 1rem
}

.btn--block {
  width: 100%;
  justify-content: center
}

/* =====================================================================
   Status dot
   ===================================================================== */
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(55, 216, 158, .6);
  animation: pulse 2.4s infinite
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(55, 216, 158, .55)
  }

  70% {
    box-shadow: 0 0 0 8px rgba(55, 216, 158, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(55, 216, 158, 0)
  }
}

/* =====================================================================
   Topbar + Nav
   ===================================================================== */
.topbar {
  background: var(--ink);
  color: var(--slate);
  border-bottom: 1px solid var(--line-d);
  font-size: .8rem
}

.topbar__in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  font-family: var(--mono)
}

.topbar__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cdd4df
}

.topbar__links a {
  color: var(--slate)
}

.topbar__links a:hover {
  color: #fff
}

.topbar .sep {
  margin: 0 8px;
  color: var(--line-d)
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-l);
  transition: box-shadow .3s, background .3s
}

.nav.scrolled {
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .18);
  background: #fff
}

.nav__in {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 88px
}

.brand img {
  height: 52px;
  width: auto
}

.nav__links {
  display: flex;
  gap: 6px;
  margin-left: auto
}

.nav__links a {
  font-family: var(--display);
  font-weight: 600;
  font-size: .93rem;
  color: var(--ink-text);
  padding: 9px 14px;
  border-radius: 8px;
  position: relative;
  transition: color .18s, background .18s
}

.nav__links a:hover {
  color: var(--red);
  background: rgba(229, 50, 43, .06)
}

.nav__links a.is-active {
  color: var(--ink-text)
}

.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  background: var(--red);
  border-radius: 2px
}

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

.nav__trust-seal {
  display: flex;
  align-items: center
}

.nav__trust-seal-img {
  height: 58px;
  width: auto
}

.mobile__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0 4px;
  font-size: .85rem;
  color: var(--slate-2)
}

.mobile__trust-img {
  height: 54px;
  width: auto
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin-left: auto
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink-text);
  border-radius: 2px;
  transition: .25s var(--ease)
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mobile {
  background: #fff;
  border-bottom: 1px solid var(--line-l);
  padding: 14px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.mobile[hidden] {
  display: none
}

.mobile a {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink-text);
  padding: 12px 8px;
  border-bottom: 1px solid var(--line-l)
}

.mobile a:last-of-type {
  border: 0
}

.mobile .btn {
  margin-top: 10px
}

/* ---------- Flash ---------- */
.flashwrap {
  margin-top: 18px
}

.flash {
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 500;
  margin-bottom: 10px;
  border-left: 4px solid
}

.flash--success {
  background: #e7f8f0;
  color: #0c6b48;
  border-color: var(--green)
}

.flash--error {
  background: #fdecea;
  color: #a31810;
  border-color: var(--red)
}

.form__result {
  display: none;
  margin-bottom: 12px
}

.form__result.flash {
  display: block
}

/* =====================================================================
   Reveal animation
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0s)
}

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

/* Pop-up animation for the work-cta card */
.work-cta.reveal {
  opacity: 0;
  transform: translateY(52px) scale(.94);
  transition: opacity .7s cubic-bezier(0.34,1.56,0.64,1),
              transform .7s cubic-bezier(0.34,1.56,0.64,1)
}

.work-cta.reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1)
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
  pointer-events: none
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1920&q=80') center right / cover no-repeat;
  opacity: .08;
  pointer-events: none
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  opacity: .5;
  pointer-events: none;
  background-image: linear-gradient(var(--line-d) 1px, transparent 1px), linear-gradient(90deg, var(--line-d) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(120% 80% at 70% 0%, #000 30%, transparent 75%)
}

.hero__in {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
  padding: 80px 0
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -.035em
}

.hero__title span {
  display: block
}

.hero__title em {
  font-style: italic;
  color: var(--red)
}

.hero__lead {
  margin-top: 16px;
  font-size: 1.08rem;
  color: #c4ccd8;
  max-width: 48ch
}

.hero__actions {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.hero__chips {
  margin-top: 18px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: .84rem;
  color: var(--slate)
}

.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px
}

.hero__chips .ic {
  color: var(--green)
}

/* ---- Hero media card (PTPL photo showcase) ---- */
.hero__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line-d);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.75);
  display: flex;
  flex-direction: column;
  align-self: stretch
}

.hero__media::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent 60%);
  z-index: 2
}

.hero__media-img-wrap {
  position: relative;
  flex: 1;
  min-height: 280px;
  overflow: hidden
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  animation: heroSlide 16s infinite;
  animation-delay: calc(var(--si) * 4s)
}

@keyframes heroSlide {
  0%   { opacity: 0 }
  6%   { opacity: 1 }
  25%  { opacity: 1 }
  31%  { opacity: 0 }
  100% { opacity: 0 }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide { animation: none; opacity: 0 }
  .hero__slide[style="--si:0"] { opacity: 1 }
}

.hero__media-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 20px;
  background: rgba(8,12,20,.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-d)
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  padding: 5px 12px
}

.hero__badge .dot {
  flex-shrink: 0
}

/* ---- Hero image card (replaces console) ---- */
.hero__imgcard {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10,14,20,.55) 0%, rgba(8,12,18,.9) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=900&q=80') center / cover no-repeat;
  border: 1px solid var(--line-d);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.75);
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.hero__imgcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent 60%)
}

.hero__hw {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.7));
  mix-blend-mode: multiply
}

.hero__hw--server {
  width: 300px;
  right: -20px;
  top: 10px;
  transform: rotate(-6deg)
}

.hero__hw--switch {
  width: 240px;
  left: -16px;
  top: 50%;
  transform: translateY(-55%) rotate(5deg)
}

.hero__hw--router {
  width: 180px;
  right: 30px;
  bottom: 90px;
  transform: rotate(-3deg);
  opacity: 0.85
}

.hero__imgcard-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 22px;
  background: linear-gradient(transparent, rgba(0,0,0,.7) 70%)
}

.hstat {
  background: rgba(255,255,255,.09);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.hstat__n {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  line-height: 1
}

.hstat__l {
  font-size: .67rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--mono)
}

.hstat--live {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: rgba(0,200,100,.1);
  border-color: rgba(0,200,100,.28)
}

.hstat--live .hstat__l {
  color: var(--green)
}

/* responsive */
@media(max-width:980px) {
  .hero__imgcard { min-height: 320px; max-width: 480px; margin: 0 auto }
  .hero__hw--server { width: 220px }
  .hero__hw--switch { width: 180px }
  .hero__hw--router { width: 140px }
}

@media(max-width:600px) {
  .hero__imgcard { max-width: 100% }
  .hero__hw--router { display: none }
}

.slice--bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: repeating-linear-gradient(115deg, var(--red) 0 38px, transparent 38px 76px);
  opacity: .55
}

/* =====================================================================
   TRUST BAR
   ===================================================================== */
.trust {
  background: var(--ink-2);
  color: #fff;
  border-bottom: 1px solid var(--line-d)
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-d)
}

.trust__item {
  background: var(--ink-2);
  padding: 40px 24px;
  text-align: center
}

.trust__num {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: #fff;
  letter-spacing: -.03em
}

.trust__num::after {
  content: attr(data-suffix);
  color: var(--red)
}

.trust__label {
  font-family: var(--mono);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--slate);
  margin-top: 8px;
  display: block
}

/* =====================================================================
   SECTIONS (base padding lives ONLY here)
   ===================================================================== */
.section {
  padding: 96px 0;
  background: var(--paper)
}

.section--paper {
  background: var(--paper-2)
}

.section--dark {
  background: var(--ink);
  color: #fff
}

.section--dark .section__sub {
  color: var(--slate)
}

/* =====================================================================
   CARDS (services grid + values)
   ===================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.cards--3 {
  grid-template-columns: repeat(3, 1fr)
}

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line-l);
  padding: 28px 24px 26px;
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, 0 100%);
  transition: transform .26s var(--ease), box-shadow .26s, border-color .26s
}

.card__cut {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: var(--cut) solid var(--red);
  border-left: var(--cut) solid transparent
}

.card:not(.card--static):hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -24px rgba(13, 17, 23, .4);
  border-color: #cfd5de
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: #fcebe9;
  color: var(--red);
  display: grid;
  place-items: center
}

.card__icon .ic {
  width: 24px;
  height: 24px
}

.card__title {
  font-size: 1.12rem;
  font-weight: 700
}

.card__text {
  color: var(--slate-2);
  font-size: .94rem;
  flex: 1
}

.card__more {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600
}

.card:hover .card__more .ic {
  transform: translateX(4px)
}

.card__more .ic {
  transition: transform .2s var(--ease)
}

/* =====================================================================
   WHY US
   ===================================================================== */
.whyus {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start
}

.whyus__head .section__title {
  text-align: left;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem)
}

.whyus__head .section__sub {
  margin: 16px 0 26px
}

.whyus__head .eyebrow {
  margin-bottom: 14px
}

.whyus__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px
}

.why {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--ink-2);
  border: 1px solid var(--line-d);
  border-radius: var(--r)
}

.section:not(.section--dark) .why {
  background: var(--card);
  border-color: var(--line-l)
}

.why__icon {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 11px;
  background: rgba(229, 50, 43, .14);
  color: var(--red);
  display: grid;
  place-items: center
}

.why h3 {
  font-size: 1.05rem;
  margin-bottom: 6px
}

.why p {
  font-size: .92rem;
  color: var(--slate)
}

.section:not(.section--dark) .why p {
  color: var(--slate-2)
}

/* =====================================================================
   FEATURED WORK (home)
   ===================================================================== */
.work {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 44px
}

.proj {
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .26s var(--ease), box-shadow .26s
}

.proj:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -24px rgba(13, 17, 23, .4)
}

.proj__img {
  height: 180px;
  background: linear-gradient(135deg, #1A3357, #0B1D3A);
  background-size: cover;
  background-position: center;
  position: relative
}

.proj__tag {
  position: absolute;
  left: 14px;
  top: 14px;
  background: #fff;
  color: var(--ink);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 6px;
  font-weight: 700;
}

.proj__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1
}

.proj__body h3 {
  font-size: 1.12rem
}

.proj__client {
  font-family: var(--mono);
  font-size: .74rem;
  color: var(--red);
  letter-spacing: .06em
}

.proj__body>p {
  color: var(--slate-2);
  font-size: .92rem
}

.proj__metrics {
  display: flex;
  gap: 18px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-l)
}

.proj__metrics span {
  display: flex;
  flex-direction: column;
  font-family: var(--mono);
  font-size: .66rem;
  color: var(--slate-2);
  text-transform: uppercase;
  letter-spacing: .06em
}

.proj__metrics b {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--ink-text);
  letter-spacing: -.02em
}

/* =====================================================================
   CLIENTS MARQUEE
   ===================================================================== */
.clients {
  background: var(--ink);
  color: #fff;
  padding: 46px 0;
  overflow: hidden
}

.clients__head {
  text-align: center;
  margin-bottom: 26px
}

.marquee {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent)
}

.marquee__track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll 34s linear infinite
}

.marquee__item {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.45rem;
  color: #46505f;
  letter-spacing: -.02em;
  white-space: nowrap;
  transition: color .3s
}

.marquee__item:hover {
  color: #fff
}

@keyframes scroll {
  to {
    transform: translateX(-50%)
  }
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.quote {
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.quote--dark {
  background: var(--ink-2);
  border-color: var(--line-d)
}

.quote__stars {
  display: flex;
  gap: 3px;
  color: #f59e0b
}

.quote__stars .ic {
  fill: none;
  stroke: #f59e0b
}

.quote__stars .ic[fill="currentColor"] {
  fill: #f59e0b;
  stroke: none
}

.quote blockquote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-text)
}

.quote--dark blockquote {
  color: #e7ebf1
}

.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: .86rem
}

.quote figcaption b {
  font-family: var(--display)
}

.quote figcaption span {
  color: var(--slate-2)
}

.quote--dark figcaption span {
  color: var(--slate)
}

/* =====================================================================
   CTA band
   ===================================================================== */
.cta {
  position: relative;
  background: var(--red);
  color: #fff;
  overflow: hidden
}

.cta__slice {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.06) 0 2px, transparent 2px 30px);
  pointer-events: none
}

.cta__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,.18) 0%, transparent 68%);
  right: -160px;
  top: -180px;
  pointer-events: none;
  animation: cta-pulse 5s ease-in-out infinite
}

@keyframes cta-pulse {
  0%, 100% { transform: scale(1); opacity: .7 }
  50%       { transform: scale(1.12); opacity: 1 }
}

.cta__in {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 88px 24px
}

.cta__copy h2 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 900;
  max-width: 18ch;
  line-height: 1.12
}

.cta__copy p {
  margin-top: 16px;
  max-width: 52ch;
  color: rgba(255,255,255,.82);
  font-size: 1.05rem
}

.cta__trust {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap
}

.cta__trust-item {
  display: flex;
  flex-direction: column;
  gap: 3px
}

.cta__trust-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.7rem;
  line-height: 1;
  color: #fff
}

.cta__trust-label {
  font-size: .72rem;
  color: rgba(255,255,255,.68);
  text-transform: uppercase;
  letter-spacing: .1em
}

.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: none;
  min-width: 240px
}

.cta__note {
  font-size: .76rem;
  color: rgba(255,255,255,.6);
  text-align: center;
  margin-top: 2px;
  letter-spacing: .02em
}

.cta .btn--red {
  --bg: var(--ink);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.5);
  position: relative;
  overflow: hidden
}

.cta .btn--red::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: translateX(-200%);
  animation: btn-shimmer 2.8s ease-in-out infinite
}

@keyframes btn-shimmer {
  0%   { transform: translateX(-200%) }
  100% { transform: translateX(360%) }
}

.cta .btn--red:hover { --bg: #1d2636 }

.cta .btn--ghost { border-color: rgba(255,255,255,.5) }

.cta .btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.foot {
  background: var(--ink);
  color: var(--slate);
  padding: 64px 0 30px
}

.foot__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px
}

.foot__logo {
  height: 40px;
  margin-bottom: 18px
}

.foot__brand p {
  font-size: .92rem;
  max-width: 34ch;
  margin-bottom: 16px
}

.foot__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: .74rem;
  color: var(--green);
  letter-spacing: .08em
}

.foot__indiamart {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px
}

.foot__indiamart span {
  font-size: .74rem;
  color: var(--slate);
  white-space: nowrap
}

.foot__indiamart-img {
  height: 80px;
  width: auto;
  object-fit: contain
}

.foot__col h4 {
  color: #fff;
  font-size: .84rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--mono);
  margin-bottom: 18px
}

.foot__col a {
  display: block;
  color: var(--slate);
  font-size: .92rem;
  padding: 5px 0;
  transition: color .18s
}

.foot__col a:hover {
  color: var(--red)
}

.foot__addr {
  font-size: .86rem;
  margin-top: 10px;
  line-height: 1.5
}

.foot__social {
  margin-top: 16px
}

.foot__col .foot__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: #c8d0dc;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: .84rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
  transition: background .2s, color .2s, border-color .2s
}

.foot__col .foot__social-link svg {
  display: block;
  flex: none
}

.foot__col .foot__social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff
}

.foot__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line-d);
  margin-top: 46px;
  padding-top: 24px;
  font-size: .8rem;
  font-family: var(--mono);
  color: #5a6577;
  flex-wrap: wrap;
  gap: 8px
}

.foot__demo {
  color: #46505f
}

.foot__demo a {
  color: #7a8799;
  text-decoration: none;
  transition: color .18s
}

.foot__demo a:hover {
  color: var(--red)
}

/* =====================================================================
   FLOATERS
   ===================================================================== */
.floaters {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  transition: opacity .25s var(--ease), transform .25s var(--ease)
}

.floaters--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px)
}

.float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s var(--ease), box-shadow .25s
}

.float--wa {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 26px -8px rgba(37, 211, 102, .6)
}

.float--wa svg {
  width: 30px;
  height: 30px
}

.float--wa:hover {
  transform: scale(1.08)
}

.float--quote {
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: .9rem;
  padding: 13px 20px;
  border-radius: 30px;
  box-shadow: 0 12px 26px -8px rgba(229, 50, 43, .6)
}

.float--quote:hover {
  transform: translateY(-3px);
  background: var(--red-2)
}

.float--quote.on-red {
  background: #111;
  color: #fff;
  box-shadow: 0 12px 26px -8px rgba(0,0,0,.5)
}

.float--quote.on-red:hover {
  background: #222
}

.float--ticket {
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: .9rem;
  padding: 13px 20px;
  border-radius: 30px;
  box-shadow: 0 12px 26px -8px rgba(0,0,0,.5)
}

.float--ticket:hover {
  transform: translateY(-3px);
  background: var(--ink-3)
}

.float--ticket.on-dark {
  background: var(--red);
  box-shadow: 0 12px 26px -8px rgba(229,50,43,.6)
}

.float--ticket.on-dark:hover {
  background: var(--red-2)
}

.float--ticket.on-red {
  background: #111;
  box-shadow: 0 12px 26px -8px rgba(0,0,0,.5)
}

.float--ticket.on-red:hover {
  background: #222
}

/* =====================================================================
   PAGE HERO (inner pages)
   ===================================================================== */
.phero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 64px 0 76px
}

.phero--short {
  padding: 58px 0 66px
}

.phero__in {
  position: relative;
  max-width: 820px
}

.phero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -.03em
}

.phero__title em {
  font-style: italic;
  color: var(--red)
}

.phero__lead {
  margin-top: 20px;
  font-size: 1.12rem;
  color: #c4ccd8;
  max-width: 60ch
}

.phero__stats {
  display: flex;
  gap: 42px;
  margin-top: 34px;
  flex-wrap: wrap
}

.phero__stats>div {
  display: flex;
  flex-direction: column
}

.phero__stats small {
  font-family: var(--mono);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--slate);
  margin-top: 4px
}

/* =====================================================================
   SERVICES — sticky tab nav
   ===================================================================== */
.svc-tabs {
  position: sticky;
  top: 88px;
  z-index: 40;
  background: var(--ink);
  border-bottom: 1px solid var(--line-d);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none
}
.svc-tabs::-webkit-scrollbar { display: none }

.svc-tabs__inner {
  display: flex;
  align-items: stretch;
  position: relative;
  min-width: max-content
}

.svc-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  font-size: .82rem;
  font-family: var(--mono);
  letter-spacing: .04em;
  color: var(--slate);
  white-space: nowrap;
  transition: color .2s;
  position: relative
}
.svc-tab .ic { width: 15px; height: 15px; opacity: .7 }
.svc-tab:hover,
.svc-tab.active { color: #fff }
.svc-tab.active .ic { opacity: 1 }

.svc-tabs__ink {
  position: absolute;
  bottom: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px 2px 0 0;
  transition: left .28s var(--ease), width .28s var(--ease)
}

/* =====================================================================
   SERVICES — image cards
   ===================================================================== */
.svc-list { padding-top: 72px; padding-bottom: 80px }

.svc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 56px;
  min-height: 460px;
  box-shadow: 0 4px 32px rgba(0,0,0,.07);
  scroll-margin-top: 180px
}

.svc-card--flip .svc-card__img-wrap { order: 2 }
.svc-card--flip .svc-card__body { order: 1 }

/* Image panel */
.svc-card__img-wrap {
  position: relative;
  overflow: hidden
}
.svc-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .55s var(--ease)
}
.svc-card:hover .svc-card__img { transform: scale(1.06) }

.svc-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,17,23,.72) 0%, rgba(13,17,23,.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px
}
.svc-card__num {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .14em;
  color: var(--red);
  opacity: .9
}
.svc-card__icon-big {
  color: #fff;
  opacity: .85
}
.svc-card__icon-big .ic { width: 48px; height: 48px }

/* Content panel */
.svc-card__body {
  background: var(--card);
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0
}
.svc-card__title {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 900;
  margin: 0 0 10px;
  line-height: 1.15;
  letter-spacing: -.02em
}
.svc-card__short {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--red);
  margin: 0 0 14px;
  line-height: 1.4
}
.svc-card__sum {
  color: var(--slate-2);
  font-size: .97rem;
  margin-bottom: 24px;
  line-height: 1.65
}

/* Animated tick list */
.svc-ticks {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0
}
.svc-tick {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line-l);
  font-size: .96rem;
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity .4s ease, transform .4s ease;
  transition-delay: calc(var(--ti) * 0.07s)
}
.svc-tick .ic { color: var(--red); flex: none; margin-top: 2px }
.svc-card.in .svc-tick {
  opacity: 1;
  transform: translateX(0)
}

.ic--xs { width: 15px; height: 15px }

@media(max-width:860px) {
  .svc-card {
    grid-template-columns: 1fr;
    min-height: auto
  }
  .svc-card__img-wrap { height: 220px; position: relative }
  .svc-card__img { position: absolute }
  .svc-card--flip .svc-card__img-wrap { order: 0 }
  .svc-card--flip .svc-card__body { order: 0 }
  .svc-card__body { padding: 32px 28px }
}

@media(max-width:560px) {
  .svc-tab span { display: none }
  /* distribute icon-only tabs evenly across full width — no horizontal scroll */
  .svc-tabs__inner { min-width: 0; padding: 0; justify-content: space-around }
  .svc-tab { flex: 1; justify-content: center; padding: 14px 6px }
  .svc-tab .ic { opacity: 1; width: 18px; height: 18px }
  .svc-card__body { padding: 24px 20px }
}

.ticks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line-l);
  font-size: .98rem
}

.ticks .ic {
  color: var(--red);
  margin-top: 3px;
  flex: none
}

/* =====================================================================
   WORK page
   ===================================================================== */
.inds {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px
}

.ind {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 14px;
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r);
  text-align: center;
  transition: transform .22s var(--ease), border-color .22s
}

.ind:hover {
  transform: translateY(-4px);
  border-color: var(--red)
}

.ind__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #fcebe9;
  color: var(--red);
  display: grid;
  place-items: center
}

.ind span {
  font-family: var(--display);
  font-weight: 600;
  font-size: .86rem
}

.cases {
  display: flex;
  flex-direction: column;
  gap: 30px
}

.case {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r);
  overflow: hidden
}

.case--flip {
  direction: rtl
}

.case--flip>* {
  direction: ltr
}

.case__img {
  min-height: 320px;
  background-size: cover;
  background-position: center;
  position: relative
}

.case__body {
  padding: 36px
}

.case__body h3 {
  font-size: 1.4rem;
  font-weight: 800
}

.case__pss {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.case__pss dt {
  font-family: var(--mono);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--red);
  margin-bottom: 3px
}

.case__pss dd {
  margin: 0;
  color: var(--slate-2);
  font-size: .95rem
}

.case .proj__metrics {
  border-top-color: var(--line-l)
}

.logowall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.logowall__item {
  display: grid;
  place-items: center;
  padding: 30px 16px;
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #9aa3b2;
  letter-spacing: -.02em;
  transition: color .25s, border-color .25s
}

.logowall__item:hover {
  color: var(--ink-text);
  border-color: var(--red)
}

/* =====================================================================
   ABOUT page
   ===================================================================== */
.story {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center
}

.story__copy .section__title {
  text-align: left;
  margin-bottom: 18px
}

.story__copy p {
  margin-bottom: 14px;
  color: var(--slate-2)
}

.story__media {
  position: relative
}

.story__media img {
  border-radius: var(--r);
  width: 100%;
  height: 420px;
  object-fit: cover
}

.story__badge {
  position: absolute;
  left: -18px;
  bottom: -18px;
  background: var(--ink);
  color: #fff;
  padding: 20px 26px;
  border-radius: var(--r);
  box-shadow: 0 24px 48px -20px rgba(13, 17, 23, .6);
  text-align: center
}

.story__badge small {
  font-family: var(--mono);
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--slate);
  display: block;
  margin-top: 4px
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-left: 0;
  list-style: none
}

.tl {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0
}

.tl__year {
  font-family: var(--display);
  font-weight: 900;
  font-size: .78rem;
  color: var(--red);
  letter-spacing: .08em;
  background: rgba(229,50,43,.12);
  border: 1px solid rgba(229,50,43,.25);
  border-radius: 100px;
  display: inline-block;
  padding: 3px 12px;
  align-self: flex-start
}

.tl__card {
  background: var(--ink-2);
  border: 1px solid var(--line-d);
  border-radius: var(--r);
  padding: 16px 18px;
  flex: 1;
  position: relative
}

.tl__card h3 {
  font-size: 1rem;
  margin-bottom: 6px
}

.tl__card p {
  color: var(--slate);
  font-size: .88rem
}

.partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.partner {
  display: grid;
  place-items: center;
  padding: 28px 16px;
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r);
  font-family: var(--display);
  font-weight: 700;
  color: var(--slate-2);
  transition: .25s
}

.partner:hover {
  color: var(--ink-text);
  border-color: var(--red);
  transform: translateY(-3px)
}

/* =====================================================================
   CONTACT page
   ===================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px
}

.contact__form {
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r);
  padding: 36px;
  scroll-margin-top: 120px
}

.contact__form .section__title {
  text-align: left;
  font-size: 1.6rem;
  margin-bottom: 8px
}

.contact__form .muted {
  font-size: .9rem;
  margin-bottom: 24px
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px
}

.field span {
  font-family: var(--mono);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--slate-2)
}

.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: .96rem;
  padding: 13px 14px;
  border: 1.5px solid var(--line-l);
  border-radius: 10px;
  background: #fbfcfd;
  color: var(--ink-text);
  transition: border-color .18s, box-shadow .18s;
  width: 100%
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 50, 43, .14)
}

.field textarea {
  resize: vertical
}

.form__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--slate-2);
  font-family: var(--mono)
}

.form__note .ic {
  color: var(--green)
}

.contact__side {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r);
  overflow: hidden
}

.cinfo {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-l);
  text-decoration: none
}

.cinfo:last-child {
  border-bottom: none
}

.cinfo--wa:hover {
  background: rgba(37,211,102,.05)
}

.cinfo__icon {
  width: 32px;
  min-width: 32px;
  flex: none;
  align-self: center;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0
}
.cinfo__icon svg {
  display: block;
}

.cinfo--wa .cinfo__icon {
  color: #1faa52
}

.cinfo h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 3px
}

.cinfo a {
  display: block;
  color: var(--ink-text);
  font-size: .9rem;
  transition: color .18s
}

.cinfo a:hover {
  color: var(--red)
}

.cinfo small,
.cinfo p,
.cinfo span {
  font-size: .84rem;
  color: var(--slate-2);
  display: block;
  margin-top: 2px
}

.cinfo__hours {
  font-size: .82rem;
  color: var(--slate-2);
  padding: 12px 22px 16px;
  border-top: 1px solid var(--line-l);
  margin: 0;
  display: block
}

.map {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line-l)
}

.map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: grayscale(.2)
}

.map__note {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: .7rem;
  padding: 7px 12px;
  border-radius: 7px
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media(max-width:980px) {

  .nav__links,
  .nav__cta {
    display: none
  }

  .burger {
    display: flex
  }

  .section {
    padding: 72px 0
  }

  .hero__in {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .hero__media {
    max-width: 480px;
    margin: 0 auto
  }

  .whyus {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .whyus__head .section__title {
    font-size: 1.8rem
  }

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

  .work,
  .quotes {
    grid-template-columns: repeat(2, 1fr)
  }

  .inds {
    grid-template-columns: repeat(3, 1fr)
  }

  .case,
  .case--flip {
    grid-template-columns: 1fr;
    direction: ltr
  }

  .case__img {
    min-height: 220px
  }

  .logowall,
  .partners {
    grid-template-columns: repeat(2, 1fr)
  }

  .story {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .story__media img {
    height: 340px
  }

  .contact__grid {
    grid-template-columns: 1fr
  }

  .cta__in {
    flex-direction: column;
    align-items: flex-start;
    text-align: left
  }

  .foot__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px
  }

  .trust__grid {
    grid-template-columns: 1fr 1fr
  }

  .work-cta {
    padding: 28px 28px
  }
}

@media(max-width:560px) {
  .topbar__links {
    display: none
  }

  .section {
    padding: 56px 0
  }

  .section__head {
    margin-bottom: 32px
  }

  .cards,
  .cards--3 {
    grid-template-columns: 1fr
  }

  .work,
  .quotes {
    grid-template-columns: 1fr
  }

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

  .form__row {
    grid-template-columns: 1fr
  }

  .hero__media {
    max-width: 100%
  }

  .foot__grid {
    grid-template-columns: 1fr
  }

  .foot__base {
    flex-direction: column;
    text-align: center
  }

  .hero__in {
    text-align: center
  }

  .hero__actions {
    justify-content: center;
    flex-direction: column;
    align-items: center
  }

  .hero__actions .btn {
    justify-content: center;
    white-space: normal;
    width: 100%;
    max-width: 340px
  }

  .btn {
    white-space: normal;
    text-align: center
  }

  .hero__chips {
    gap: 14px;
    justify-content: center
  }

  .hero__lead {
    margin-left: auto;
    margin-right: auto
  }

  .phero {
    padding: 46px 0 54px
  }

  .phero--short {
    padding: 42px 0 50px
  }

  .phero__stats {
    gap: 26px
  }

  .story__badge {
    position: static;
    margin-top: 16px;
    display: inline-block
  }

  .cta__in {
    padding: 44px 24px
  }

  .cta__actions {
    width: 100%
  }

  .cta__actions .btn {
    width: 100%;
    justify-content: center
  }

  .case__body {
    padding: 22px 18px
  }

  .contact__form {
    padding: 24px 20px
  }

  .trust__item {
    padding: 28px 16px
  }

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

  /* clear fixed floaters stack at page bottom */
  .foot {
    padding-bottom: 190px
  }

  /* hero CTA buttons: stack full-width */

  /* work-cta card tightens on mobile */
  .work-cta {
    padding: 24px 20px;
    text-align: center
  }

  .work-cta__btns {
    width: 100%
  }

  .work-cta__btns .btn {
    justify-content: center;
    width: 100%
  }

  /* shrink pill floaters so they don't crowd the corner */
  .float--ticket,
  .float--quote {
    font-size: .82rem;
    padding: 10px 15px
  }

  /* services list vertical padding on mobile */
  .svc-list {
    padding-top: 40px;
    padding-bottom: 48px
  }

  /* why-us cards: single column on small screens */
  .whyus__list {
    grid-template-columns: 1fr
  }
}

@media(max-width:560px) {
  .timeline {
    grid-template-columns: 1fr
  }
}

/* Reduced motion */
@media(prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important
  }

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

/* =====================================================================
   ABOUT — additional components (FMS, leadership, vision, mission)
   >>> PASTE THIS AT THE END of static/css/style.css <<<
   ===================================================================== */

/* FMS highlight panel */
.fms {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 32px;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r);
  padding: 40px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, 0 100%)
}

.fms::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--red)
}

.fms__mark {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  background: rgba(229, 50, 43, .12);
  color: var(--red);
  display: grid;
  place-items: center
}

.fms__mark .ic {
  width: 44px;
  height: 44px
}

.fms__body .section__title {
  text-align: left;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 6px 0 14px
}

.fms__body p {
  color: var(--slate-2);
  margin-bottom: 12px
}

.fms__body .btn {
  margin-top: 10px
}

/* Leadership cards */
.leaders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.leader {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r);
  padding: 34px 28px 30px;
  overflow: hidden;
  transition: box-shadow .3s var(--ease), border-color .3s;
  transform-style: preserve-3d;
  will-change: transform
}

.leader::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent 70%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease)
}

.leader:hover {
  box-shadow: 0 30px 60px -28px rgba(13, 17, 23, .45);
  border-color: #d3d9e2
}

.leader:hover::after {
  transform: scaleX(1)
}

.leader__cut {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: var(--cut) solid var(--red);
  border-left: var(--cut) solid transparent
}

.leader__avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: .02em;
  background: linear-gradient(135deg, var(--red), #8f1610);
  box-shadow: 0 10px 24px -10px rgba(229, 50, 43, .7)
}

.leader__name {
  font-size: 1.18rem;
  font-weight: 800
}

.leader__role {
  display: block;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin: 5px 0 12px
}

.leader__years {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--slate-2);
  background: var(--paper-2);
  border: 1px solid var(--line-l);
  padding: 6px 12px;
  border-radius: 30px;
  margin-bottom: 16px
}

.leader__years b {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--ink-text)
}

.leader__bio {
  color: var(--slate-2);
  font-size: .93rem;
  line-height: 1.62
}

/* Vision */
.vision-sec {
  padding: 110px 0
}

.vision {
  max-width: 900px;
  margin: 0 auto;
  text-align: center
}

.vision .eyebrow {
  margin-bottom: 22px
}

.vision__statement {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.6vw, 2.7rem);
  line-height: 1.28;
  letter-spacing: -.02em;
  color: #fff
}

.vision__statement em {
  font-style: normal;
  color: var(--red)
}

/* Mission */
.mission {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 48px;
  align-items: start
}

.mission__head {
  position: sticky;
  top: 120px
}

.mission__head .section__title {
  text-align: left;
  font-size: clamp(1.7rem, 3vw, 2.3rem)
}

.mlist {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.mitem {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 18px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: 12px;
  padding: 20px 24px;
  transition: transform .22s var(--ease), border-color .22s, box-shadow .22s
}

.mitem:hover {
  transform: translateX(6px);
  border-color: var(--red);
  box-shadow: 0 16px 34px -22px rgba(229, 50, 43, .5)
}

.mitem__no {
  font-family: var(--mono);
  font-size: .82rem;
  color: var(--red);
  letter-spacing: .05em
}

.mitem__tick {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 10px;
  background: rgba(229, 50, 43, .12);
  color: var(--red);
  display: grid;
  place-items: center;
  transition: background .25s, color .25s
}

.mitem:hover .mitem__tick {
  background: var(--red);
  color: #fff
}

.mitem__tick .ic {
  width: 20px;
  height: 20px
}

.mitem p {
  margin: 0;
  font-size: 1rem;
  color: var(--ink-text)
}

@media(max-width:980px) {
  .fms {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px
  }

  .leaders {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%
  }

  .vision-sec {
    padding: 72px 0
  }

  .mission {
    grid-template-columns: 1fr;
    gap: 26px
  }

  .mission__head {
    position: static
  }
}

/* =====================================================================
   ABOUT — real content additions
   ===================================================================== */

/* ISO cert badges in hero */
.phero__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px
}

.cert-badge {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(55, 216, 158, .3);
  padding: 7px 14px;
  border-radius: 30px
}

/* Story year badge */
.story__year {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 2rem;
  color: #fff
}

/* Story strength chips */
.story__strengths {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px
}

.strength-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .94rem;
  color: var(--ink-text);
  font-weight: 500
}

.strength-item .ic {
  color: var(--red);
  flex: none
}

/* Section sub left-aligned variant */
.section__sub--left {
  text-align: left;
  margin-top: 12px
}

/* Leader photo */
.leader__photo-wrap {
  margin-bottom: 18px;
  position: relative
}

.leader__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--line-l);
  display: block
}

.leader__photo-wrap .leader__avatar {
  width: 100px;
  height: 100px;
  font-size: 1.8rem;
  display: none
}

/* Certifications grid */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.cert-card {
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .24s var(--ease), border-color .24s
}

.cert-card:hover {
  transform: translateY(-4px);
  border-color: var(--red)
}

.cert-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: #fcebe9;
  color: var(--red);
  display: grid;
  place-items: center
}

.cert-card__name {
  font-size: 1.05rem;
  font-weight: 800;
  font-family: var(--display)
}

.cert-card__desc {
  color: var(--slate-2);
  font-size: .9rem;
  line-height: 1.6
}

/* Offices grid */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.office-card {
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: var(--r);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .24s var(--ease), border-color .24s, box-shadow .24s
}

.office-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 16px 36px -20px rgba(229, 50, 43, .25)
}

.office-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fcebe9;
  color: var(--red);
  display: grid;
  place-items: center;
  margin-bottom: 4px
}

.office-card__city {
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--display);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap
}

.office-card__hq {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 3px 9px;
  border-radius: 20px;
  font-weight: 600
}

.office-card__addr {
  color: var(--slate-2);
  font-size: .9rem;
  line-height: 1.55;
  flex: 1
}

.office-card__tel {
  font-size: .88rem;
  color: var(--ink-text);
  font-family: var(--mono)
}

/* Partners / customers — merry-go-round marquee */
.logo-scroll-wrap {
  overflow: hidden;
  position: relative;
  padding: 12px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%)
}

.logo-scroll-track {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  width: max-content;
  animation: logo-marquee 32s linear infinite
}

.logo-scroll-track--rev {
  animation-direction: reverse;
  animation-duration: 28s
}

.logo-scroll-wrap:hover .logo-scroll-track {
  animation-play-state: paused
}

@keyframes logo-marquee {
  from { transform: translateX(0) }
  to   { transform: translateX(-50%) }
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: default;
  flex-shrink: 0
}

.logo-circle {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 2px solid var(--line-l);
  background: #fff;
  display: grid;
  place-items: center;
  padding: 12px;
  overflow: hidden;
  transition: transform .28s var(--ease), border-color .28s, box-shadow .28s
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(.3);
  transition: filter .28s
}

.logo-item:hover .logo-circle {
  transform: translateY(-6px) scale(1.08);
  border-color: var(--red);
  box-shadow: 0 18px 40px -16px rgba(229, 50, 43, .3)
}

.logo-item:hover .logo-circle img {
  filter: grayscale(0)
}

.logo-initials {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%
}

.logo-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: .72rem;
  text-align: center;
  color: var(--ink-text);
  line-height: 1.3;
  max-width: 82px
}

@media(max-width:980px) {
  .offices-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .certs-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:560px) {
  .offices-grid {
    grid-template-columns: 1fr
  }

  .logo-scroll-track {
    gap: 18px
  }

  .logo-circle {
    width: 72px;
    height: 72px;
    padding: 10px
  }

  .logo-name {
    font-size: .68rem;
    max-width: 72px
  }
}

@media(max-width:560px) {
  .leaders {
    grid-template-columns: 1fr
  }

  .mitem {
    grid-template-columns: auto 1fr;
    padding: 16px 18px;
    gap: 14px
  }

  .mitem__no {
    display: none
  }
}
/* =====================================================================
   PRODUCTS PAGE
   ===================================================================== */
.prod-section { padding-top: 64px; padding-bottom: 80px }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 72px
}

.prod-card {
  background: var(--card);
  border: 1px solid var(--line-l);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s var(--ease);
  animation-delay: calc(var(--i) * 0.06s)
}

.prod-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
  transform: translateY(-4px)
}

.prod-card__img-wrap {
  height: 200px;
  overflow: hidden;
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center
}

.prod-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .45s var(--ease)
}

.prod-card:hover .prod-card__img { transform: scale(1.06) }

.prod-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.prod-card__name {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink-text)
}

.prod-card__short {
  font-size: .9rem;
  color: var(--slate-2);
  margin-bottom: 16px;
  line-height: 1.55
}

.prod-card__points {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1
}

.prod-card__points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .85rem;
  color: var(--slate-2)
}

.prod-card__points .ic {
  color: var(--red);
  flex: none;
  margin-top: 2px;
  width: 14px;
  height: 14px
}

.btn--outline-dark {
  --bg: transparent;
  --fg: var(--ink-text);
  border: 1.5px solid var(--line-l);
  align-self: flex-start;
  font-size: .9rem;
  padding: 11px 20px
}

.btn--outline-dark:hover {
  --bg: var(--red);
  --fg: #fff;
  border-color: var(--red);
  box-shadow: 0 6px 20px -6px rgba(229,50,43,.55)
}

/* Why strip */
.prod-why {
  background: var(--ink);
  border-radius: 20px;
  padding: 48px 52px
}

.prod-why__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 32px;
  text-align: center
}

.prod-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.prod-why__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #c7cedb;
  font-size: .92rem;
  line-height: 1.5
}

.prod-why__item .ic {
  color: var(--red);
  flex: none;
  margin-top: 2px
}

@media(max-width:980px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr) }
  .prod-why__grid { grid-template-columns: repeat(2, 1fr) }
  .prod-why { padding: 36px 32px }
}

@media(max-width:560px) {
  .prod-grid { grid-template-columns: 1fr }
  .prod-why__grid { grid-template-columns: 1fr }
  .prod-why { padding: 28px 20px }
  .prod-card__img-wrap { height: 160px }
}

/* =====================================================================
   RENTAL PAGE extras
   ===================================================================== */
.rental__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px
}
.rental__chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .04em;
  color: #c7cedb;
  border: 1px solid var(--line-d);
  padding: 7px 13px;
  border-radius: 8px
}
.rental__chips .ic { color: var(--green) }

/* Process steps */
.rental-process {
  background: var(--paper-2);
  border-radius: 20px;
  padding: 48px 52px;
  margin-bottom: 48px
}
.rental-process__title {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--ink-text)
}
.rental-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}
.rental-step {
  position: relative;
  padding-top: 12px
}
.rental-step__num {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  opacity: .18;
  display: block;
  line-height: 1;
  margin-bottom: 10px
}
.rental-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink-text)
}
.rental-step p {
  font-size: .88rem;
  color: var(--slate-2);
  line-height: 1.55
}

/* ARC banner */
.arc-banner {
  background: var(--ink);
  border-radius: 20px;
  padding: 40px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px
}
.arc-banner__text .eyebrow { color: var(--red) }
.arc-banner__text h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  margin: 6px 0 10px
}
.arc-banner__text p {
  font-size: .9rem;
  color: var(--slate);
  max-width: 42ch
}

/* IndiaMART badge */
.indiamart {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  padding: 32px 0 8px
}
.indiamart__label {
  font-size: .88rem;
  color: var(--slate-2);
  white-space: nowrap
}
.indiamart__img {
  height: 48px;
  width: auto;
  object-fit: contain
}

@media(max-width:860px) {
  .rental-process { padding: 32px 24px }
  .rental-process__steps { grid-template-columns: repeat(2, 1fr) }
  .arc-banner { padding: 32px 28px }
}
@media(max-width:560px) {
  .rental-process__steps { grid-template-columns: 1fr }
  .arc-banner { flex-direction: column; align-items: flex-start; padding: 24px 20px }
}

img, svg, iframe, video { max-width: 100% }

/* ===== Hero brand showcase (animated logo + device pop-in) ===== */
.hero__brandshow{position:relative;width:100%;aspect-ratio:7/5;border-radius:18px;overflow:hidden;background:#0B1D3A;border:1px solid rgba(255,255,255,.08);border-top:2px solid #e1252f;display:grid;place-items:center;}
.hero__brandshow::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);background-size:34px 34px;}
.hero__bs-glow{position:absolute;top:50%;left:50%;width:88%;height:88%;transform:translate(-50%,-50%);background:radial-gradient(circle,rgba(225,37,47,.18),transparent 62%);pointer-events:none;}
.hero__bs-stage{position:relative;z-index:2;width:58%;display:inline-block;animation:heroBsFloat 4.6s ease-in-out infinite;}
.hero__bs-logo-wrap{position:relative;z-index:3;display:block;overflow:hidden;width:100%;}
.hero__bs-logo{display:block;width:100%;height:auto;animation:heroBsReveal 1.05s cubic-bezier(.2,.7,.2,1) .35s both;}
.hero__bs-gleam{position:absolute;top:0;bottom:0;left:-55%;width:46%;background:linear-gradient(105deg,transparent,rgba(255,255,255,.6),transparent);transform:skewX(-18deg);pointer-events:none;animation:heroBsGleam 1s ease 1.15s both;}
.hero__bs-dev{position:absolute;line-height:0;z-index:1;}
.hero__bs-dev picture{display:block;width:100%;line-height:0;}
.hero__bs-dev img{width:100%;height:auto;opacity:0;filter:brightness(.95) drop-shadow(0 14px 26px rgba(0,0,0,.5));}
.hero__bs-dev--lap{left:-54%;bottom:-58%;width:52%;}
.hero__bs-dev--srv{right:-36%;top:-66%;width:29%;z-index:2;}
.hero__bs-dev--bio{right:-40%;bottom:-48%;width:40%;}
.hero__bs-dev--lap img{--tx:-34px;--ty:36px;animation:heroBsPop .9s cubic-bezier(.2,.8,.2,1) 1.55s both;}
.hero__bs-dev--srv img{--tx:34px;--ty:-34px;animation:heroBsPop .9s cubic-bezier(.2,.8,.2,1) 1.7s both;}
.hero__bs-dev--bio img{--tx:34px;--ty:34px;animation:heroBsPop .9s cubic-bezier(.2,.8,.2,1) 1.85s both;}
@keyframes heroBsReveal{0%{opacity:0;clip-path:inset(0 100% 0 0);transform:scale(.96)}60%{opacity:1}100%{opacity:1;clip-path:inset(0 0 0 0);transform:scale(1)}}
@keyframes heroBsGleam{0%{left:-55%}100%{left:125%}}
@keyframes heroBsPop{0%{opacity:0;transform:translate(var(--tx),var(--ty)) scale(.85)}100%{opacity:.96;transform:translate(0,0) scale(1)}}
@keyframes heroBsFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}
@media(max-width:980px){.hero__brandshow{aspect-ratio:16/9;}.hero__bs-stage{width:52%;}}
@media(max-width:560px){.hero__brandshow{aspect-ratio:4/3;max-width:320px;margin:0 auto;border-radius:14px;}.hero__bs-stage{width:48%;}.hero__bs-dev--lap{width:52%;left:-36%;bottom:-46%;}.hero__bs-dev--srv{width:30%;right:-20%;top:-56%;}.hero__bs-dev--bio{width:40%;right:-24%;bottom:-38%;}}
@media (prefers-reduced-motion:reduce){.hero__bs-logo,.hero__bs-gleam,.hero__bs-dev img,.hero__bs-stage{animation:none}.hero__bs-dev img{opacity:.96}}

/* ===== Hero animation video ===== */
.hero__vid-wrap{position:relative;width:100%;border-radius:18px;overflow:hidden;border:1px solid rgba(255,255,255,.08);border-top:2px solid #e1252f;background:#0B1D3A;}
.hero__vid{display:block;width:100%;height:auto;}
@media(max-width:560px){.hero__vid-wrap{border-radius:14px;}}
