/* ===== Custom Fonts ===== */
@font-face {
  font-family: 'Resist Display';
  src: url('assets/ResistDisplay-Regular.woff2') format('woff2'),
       url('assets/ResistDisplay-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===== Base ===== */
:root{
  /* Colors */
  --bg: #3C36AD;                 /* main purple (Figma) */
  --bg2: #2F2A91;                /* dark purple */
  --dark: #1E2053;               /* dark sections */
  --white: #ffffff;
  --text: #ffffff;
  --muted: rgba(255,255,255,.78);
  --line: rgba(154,154,154,.1);  /* Figma border */
  --glass: rgba(60,54,173,.21);  /* Figma glass start */
  --glass2: rgba(47,42,145,.7);  /* Figma glass end */
  --glass-card: linear-gradient(90deg, rgba(233,233,233,.7) 0%, rgba(199,199,199,.7) 100%);
  --accent: #EF9300;             /* orange accent (Figma) */
  --coral: #FF5033;              /* coral/red accent */
  --ivory: #F4E6C6;              /* Medici Ivory */
  --lavender: #E4D7FC;           /* lavender accent */
  --dark-text: #1E2053;          /* dark text color */
  
  /* Layout */
  --radius: 20px;                /* Figma nav radius */
  --radius-lg: 30px;             /* card radius */
  --btn-radius: 10px;            /* Figma button radius */
  --shadow: 0 20px 60px rgba(0,0,0,.25);
  --container: 1320px;           /* Figma container width */
  
  /* Typography */
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Resist Display', 'Libre Baskerville', Georgia, serif;
  
  /* Type Scale (Figma) */
  --t1: 120px;    /* H1 - line-height: 125px */
  --t2: 90px;     /* H2 - line-height: 119px */
  --t3: 60px;     /* H3 - line-height: 60px */
  --t4: 45px;     /* H4 - line-height: 50px */
  --t5: 30px;     /* H5 - line-height: 40px */
  --t6: 22px;     /* H6 - line-height: 29px */
  --lead: 20px;   /* Lead text - line-height: 26px */
  --p1: 18px;     /* Body - line-height: 25px */
  --p2: 15px;     /* Small - line-height: 20px */
  --p3: 14px;     /* Caption - line-height: 18px */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: 'Resist Display', Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: var(--p1);
  line-height: 25px;
  background: radial-gradient(1200px 700px at 30% 0%, #4b4be5 0%, var(--bg) 55%, #2f2e92 100%);
  color: var(--text);
  overflow-x:hidden;
}

/* Typography Classes */
.t1{ font-size: var(--t1); line-height: 125px; font-weight: 500; text-transform: capitalize; }
.t2{ font-size: var(--t2); line-height: 119px; font-weight: 500; }
.t3{ font-size: var(--t3); line-height: 60px; font-weight: 500; text-transform: capitalize; }
.t4{ font-size: var(--t4); line-height: 50px; font-weight: 500; }
.t4-bold{ font-size: var(--t4); line-height: 50px; font-weight: 700; }
.t5{ font-size: var(--t5); line-height: 40px; font-weight: 500; text-transform: capitalize; }
.t6{ font-size: var(--t6); line-height: 29px; font-weight: 700; text-transform: capitalize; }
.lead{ font-size: var(--lead); line-height: 26px; font-weight: 500; text-transform: capitalize; }
.lead-reg{ font-size: var(--lead); line-height: 26px; font-weight: 400; text-transform: capitalize; }
.p1{ font-size: var(--p1); line-height: 25px; font-weight: 400; }
.p1-bold{ font-size: var(--p1); line-height: 24px; font-weight: 500; }
.p2{ font-size: var(--p2); line-height: 20px; font-weight: 500; text-transform: capitalize; }
.p3{ font-size: var(--p3); line-height: 18px; font-weight: 700; text-transform: capitalize; }

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

.section{ padding: 44px 0; }
.section--tight{ padding: 24px 0; }

.muted{ color: var(--muted); }

/* ===== Background decorative ===== */
.bg{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
}
.bg__blob{
  position:absolute;
  filter: blur(30px);
  opacity:.35;
  border-radius:999px;
}
.bg__blob--a{ 
  width: 100%; 
  max-width: 1440px; 
  height: 883px; 
  left: 0; 
  top: 100px; 
  background: url('assets/hero-blob.svg') no-repeat center;
  background-size: contain;
  filter: none;
  opacity: 1;
}
.bg__blob--b{ width:640px; height:640px; right:-220px; top:-120px; background: #6d6cff; }
.bg__blob--c{ width:420px; height:420px; right:10%; bottom:-160px; background: #ff4c2e; opacity:.18; }
.bg__stroke{
  position:absolute;
  inset: 120px 10% auto 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  opacity:.25;
}

/* ===== Glass helper ===== */
.glass{
  background: linear-gradient(90deg, var(--glass) 0%, var(--glass2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ===== Topbar ===== */
.topbar{
  position:sticky;
  top:20px;
  z-index:50;
  padding: 0 20px;
  width: 100%;
}

.topbar__inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 90px;
  padding: 0 50px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,0.2);
}

.brand{
  display: flex;
  align-items: center;
}
.brand__logo{
  width: 100px;
  height: auto;
  color: #fff;
}
.brand__mark{
  font-weight: 800;
  letter-spacing: .5px;
  font-size: 28px;
}

.nav{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 60px;
  z-index: 2;
}
.nav a{
  position:relative;
  padding: 10px 0;
  font-size: 15px;
  color: rgba(255,255,255,.95);
  transition: color 0.2s ease;
}
.nav a.is-active{
  font-weight: 600;
  color: #fff;
}
.nav a:hover{ color: #fff; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  cursor:pointer;
  transition: transform .15s ease, opacity .15s ease, background .15s ease, border-color .15s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); }
.btn--white{
  background: #fff;
  color: var(--dark-text);
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  gap: 8px;
}
.btn--white::after{
  content: '→';
  font-size: 18px;
  transition: transform 0.2s ease;
}
.btn--white:hover::after{
  transform: translateX(3px);
}
.btn--icon .icon{
  font-size: 18px;
  line-height: 0;
}
.btn--outline{
  background: transparent;
  border-color: rgba(255,255,255,.35);
  color: rgba(255,255,255,.92);
}
.btn--wide{ width: 190px; margin-inline:auto; }

.burger{
  display:none;
  width:44px; height:44px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor:pointer;
}
.burger span{
  display:block;
  width:18px; height:2px;
  background: rgba(255,255,255,.9);
  margin: 4px auto;
  border-radius: 99px;
}

.mobileNav{
  width:min(var(--container), calc(100% - 40px));
  margin: 10px auto 0;
  padding: 14px;
  display:none;
  gap: 10px;
}
.mobileNav:not([hidden]){
  display:grid;
}
.mobileNav[hidden]{
  display:none !important;
}

/* ===== Hero ===== */
.hero{
  position: relative;
  padding: 0;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  margin-top: -110px;
  padding-top: 110px;
  display: flex;
  align-items: center;
}
.hero > .container{
  position: relative;
  z-index: 5;
}

/* Background Video */
.hero__video-wrap{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__video-overlay{
  position: absolute;
  inset: 0;
  background: #3C36AD;
  mix-blend-mode: color;
}

/* Orange Ribbon Decoration */
.hero__ribbon-svg{
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 120vw;
  height: auto;
  z-index: 1;
  pointer-events: none;
  display: block;
  opacity: 0.9;
}

/* Coral Decorative Shape */
.hero__coral-shape{
  position: absolute;
  width: 388px;
  height: 151px;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  display: block;
}

.hero__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero__title{
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 160px);
  line-height: 0.85;
  margin: 0;
  font-weight: 600;
  text-transform: capitalize;
  max-width: 1000px;
  color: #FFFFFF;
}

/* Mobile hero content - hidden on desktop */
.hero__mobile-content{
  display: none;
}

.hero__card{
  position: relative;
  align-self: start;
  justify-self: end;
  width: 520px;
  height: 580px;
}
.hero__card-border{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero__card-content{
  position: absolute;
  bottom: 50px;
  left: 50px;
  right: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.hero__copy{
  margin: 0;
  color: #FFFFFF;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  font-style: normal;
  text-transform: capitalize;
}
.hero__actions{ 
  display: flex; 
  gap: 20px; 
}
.hero__actions .btn--white{
  padding: 16px 40px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: var(--dark-text);
  background: #FFFFFF;
  border-radius: 12px;
  border: none;
}
.hero__actions .btn--outline{
  padding: 16px 40px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #FFFFFF;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 12px;
}

/* ===== About ===== */
.section--about{
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.about__title{
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.05;
  margin: 12px 0 40px;
  font-weight: 700;
  text-align:center;
}
.about__row{
  display:grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 40px;
  align-items:start;
  margin-top: 24px;
}
.about__text{
  margin:0;
  color: rgba(255,255,255,.86);
  line-height:1.65;
  font-size: 16px;
}

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  width: fit-content;
  transition: all 0.2s ease;
}
.pill--outline{
  border: 1.5px solid rgba(244,163,0,.85);
  color: rgba(244,163,0,.95);
  background: rgba(244,163,0,.05);
}
.pill--outline:hover{
  background: rgba(244,163,0,.15);
  transform: translateY(-2px);
}
.pill--center{ margin-inline:auto; }

/* ===== Team ===== */
.section--team{
  min-height: auto;
  display: block;
  padding: 100px 0;
  position: relative;
}
.team__top{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items:start;
  margin-bottom: 40px;
}
.team__title{
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.05;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.6px;
  color: #D67F00;
}
.team__title .accent{ color: var(--accent); font-weight: 700; }
.team__aside{
  display:grid;
  gap: 14px;
  justify-items:start;
}
.team__blurb{
  margin: 6px 0 0;
  color: rgba(255,255,255,.86);
  line-height:1.6;
}

.team__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 200px;
}

.person{
  position:relative;
  border-radius: 28px;
  overflow:hidden;
  height: 310px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.35)),
    var(--img),
    radial-gradient(600px 320px at 20% 0%, rgba(255,255,255,.18), rgba(0,0,0,.18));
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,.15);
}
.person__plate{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.14);
}
.person__name{
  font-weight: 800;
  font-size: 18px;
}
.person__role{
  margin-top: 6px;
  color: rgba(255,255,255,.8);
  font-size: 13px;
}

/* ===== Services ===== */
.services{
  position: relative;
  height: 600vh;
  padding: 0;
}

.services__sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services__stack{
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.serviceCard{
  position: absolute;
  width: 1000px;
  height: 700px;
  max-height: 85vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1;
  left: 50vw;
  top: 50vh;
  transform: translate(-50%, -50%);
  margin-left: -500px;
  margin-top: -350px;
}

.serviceCard.is-active{
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.serviceCard__media{
  position:relative;
  border-radius: 30px;
  overflow:hidden;
  height: 100%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}
.serviceCard__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  position:absolute;
  inset:0;
}
.serviceCard__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.0) 0%, rgba(0,0,0,.1) 30%, rgba(0,0,0,.4) 60%, rgba(0,0,0,.8) 85%, rgba(32,32,88,.98) 100%);
}
.serviceCard__text{
  position:absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  text-align:center;
  width: calc(100% - 80px);
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.serviceCard__text h3{
  margin:0;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.1;
}
.serviceCard__text h3 .bold{ font-weight: 800; }
.serviceCard__text p{
  margin: 0 auto;
  max-width: 450px;
  color: rgba(255,255,255,.92);
  line-height:1.5;
  font-size: 18px;
}

/* ===== Testimonials ===== */
/* Testimonials Section */
.testimonials{
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding: 80px 0;
}
.testimonials__ribbon{
  position: absolute;
  top: -100px;
  right: -400px;
  width: 1200px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}
.testimonials > .container{
  position: relative;
  z-index: 2;
}

.testimonialsHead{
  text-align:center;
  display:grid;
  gap: 18px;
  margin-bottom: 18px;
}
.testimonialsTitle{
  margin:0;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height:1.05;
  font-weight: 650;
}

.carouselWrap{
  position:relative;
  padding: 18px 0 0;
}
.swipeHint{
  position:fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 16px 28px;
  display:none;
  align-items:center;
  justify-content:center;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  background: rgba(30, 32, 83, 0.95);
  border: 2px solid var(--accent);
  border-radius: 50px;
  pointer-events:none;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.swipeHint.is-visible{
  display: flex;
  opacity: 1;
}
.swipeHint__icon{
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  stroke-width: 2.5;
}

.carousel{
  display: flex;
  gap: 20px;
  overflow: auto;
  padding: 44px 6px 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar{ display: none; }

.tCard{
  flex: 0 0 315px;
  min-height: 313px;
  padding: 33px 25px 25px;
  border-radius: 20px;
  scroll-snap-align: start;
  background: linear-gradient(90deg, rgba(233, 233, 233, 0.7) 0%, rgba(199, 199, 199, 0.7) 100%);
  border: 1px solid rgba(154, 154, 154, 0.2);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tCard__text{
  margin: 0;
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
}
.tCard__meta{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tCard__meta strong{
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  text-transform: capitalize;
  color: #fff;
}
.tCard__meta span{
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
}

/* Trusted by Pill */
.trustedBy{
  text-align: center;
  margin: 40px 0 30px;
}
.pill--orange{
  border: 1.5px solid #EF9300;
  color: #EF9300;
  background: transparent;
}

/* Clients Logo Ribbon */
.clientsRibbon{
  width: 100%;
  overflow: hidden;
  padding: 40px 0 60px;
  margin-top: 20px;
}
.clientsRibbon__track{
  display: flex;
  align-items: center;
  gap: 80px;
  animation: scrollClients 25s linear infinite;
  width: max-content;
}
.clientLogo{
  height: 60px;
  width: auto;
  opacity: 0.85;
  filter: grayscale(20%);
}
@keyframes scrollClients{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(calc(-50%)); }
}

/* Contact Us Ribbon */
.ribbon--contact{
  background: transparent;
  padding: 60px 0;
  margin-top: 200px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.ribbon--contact .ribbon__track{
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scrollRibbon 25s linear infinite;
  width: max-content;
}
.ribbon--contact .ribbon__item{
  display: flex;
  align-items: center;
  gap: 50px;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  letter-spacing: -0.5px;
}
.ribbon__dot{
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 8px;
  flex-shrink: 0;
  display: inline-block;
  transform: rotate(45deg);
}
@keyframes scrollRibbon{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* ===== Products Carousel ===== */
.products{
  background: transparent;
  padding: 100px 0 80px;
  overflow: visible;
  position: relative;
}
.products__bg{
  position: absolute;
  left: -199px;
  top: -300px;
  width: 1579px;
  height: 1050px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}
.products__title{
  font-size: clamp(36px, 4vw, 45px);
  line-height: 1.1;
  text-align: center;
  margin: 0 0 50px;
}
.productsCarousel{
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  clip-path: inset(0);
}
.productsCarousel__track{
  display: flex;
  gap: 20px;
  animation: scrollProducts 30s linear infinite;
  width: max-content;
}
.productsCarousel__track:hover{
  animation-play-state: paused;
}
.productSlide{
  flex: 0 0 auto;
  width: 400px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}
.productSlide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.productSlide:hover img{
  transform: scale(1.05);
}

@keyframes scrollProducts{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(calc(-420px * 5));
  }
}

@media (max-width: 768px){
  .productSlide{
    width: 300px;
    height: 300px;
  }
  @keyframes scrollProducts{
    0%{
      transform: translateX(0);
    }
    100%{
      transform: translateX(calc(-320px * 5));
    }
  }
}

/* ===== Stats Section ===== */
.stats{
  background: transparent;
  padding: 120px 0 0;
  position: relative;
  overflow: visible;
}
.stats__title{
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.2;
  text-align: center;
  margin: 0 0 80px;
  font-weight: 600;
}
.stats__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  padding: 40px 0;
}
.stat{
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 60px 30px;
}
.stat::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 200px;
  background: rgba(30, 32, 83, 0.8);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  z-index: -1;
}
.stat:nth-child(1)::before{
  transform: translate(-50%, -50%) rotate(5deg);
}
.stat:nth-child(2)::before{
  transform: translate(-50%, -50%) rotate(-3deg);
}
.stat:nth-child(3)::before{
  transform: translate(-50%, -50%) rotate(8deg);
}
.stat:nth-child(4)::before{
  transform: translate(-50%, -50%) rotate(-5deg);
}
.stat__number{
  font-size: clamp(56px, 7vw, 90px);
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.stat__label{
  font-size: 15px;
  margin-top: 0;
  font-weight: 500;
  position: relative;
  z-index: 1;
  text-transform: lowercase;
  color: rgba(255,255,255,0.9);
}

/* ===== Ribbon Marquee ===== */
.ribbon{
  background: var(--dark);
  padding: 20px 0;
  overflow: hidden;
}
.ribbon--hero{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(30, 32, 83, 0.85);
  backdrop-filter: blur(10px);
}
.ribbon__track{
  display: flex;
  gap: 30px;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.ribbon__item{
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 30px;
  font-weight: 500;
  white-space: nowrap;
}
.ribbon__icon{
  width: 34px;
  height: 26px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
@keyframes marquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* ===== Gallery Grid ===== */
.gallerySection{
  background: var(--dark);
  padding: 60px 0;
}
.gallery__grid{
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
}
.gallery__grid::-webkit-scrollbar{ display: none; }
.gallery__item{
  flex: 0 0 410px;
  height: 403px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass2);
}
.gallery__item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Service Tags ===== */
.serviceTags{
  display: flex;
  flex-wrap: wrap;
  gap: 18px 23px;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
.serviceTag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: var(--glass-card);
  border: 1px solid rgba(154,154,154,.2);
  backdrop-filter: blur(7px);
  border-radius: 20px;
  font-size: 18px;
  font-weight: 500;
}
.serviceTag--cta{
  background: #fff;
  color: var(--dark-text);
  border-radius: 30px;
}

/* ===== Footer ===== */
.footer{
  background: var(--dark);
  padding: 80px 0 60px;
  overflow-x: hidden;
  position: relative;
}
.footer__top{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.footer__social{
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-self: start;
  align-self: start;
}
.footer__social a{
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  transition: opacity 0.2s ease;
  line-height: 1.1;
  letter-spacing: -1px;
}
.footer__social a:hover{
  opacity: 0.7;
}
.footer__back{
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer__back:hover{
  opacity: 0.7;
}
.footer__bottom{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  margin-top: 40px;
}
.footer__links{
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-self: start;
  align-self: start;
}
.footer__links a{
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
  font-weight: 500;
}
.footer__links a:hover{
  color: var(--accent);
}
.footer__contact{
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  justify-self: center;
  align-self: center;
}
.footer__contact a{
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s ease;
  font-weight: 500;
  line-height: 1.5;
}
.footer__contact a:hover{
  color: var(--accent);
}
.footer__contact a span{
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.footer__logo{
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: end;
}
.footer__logo svg{
  width: 380px;
  height: auto;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.footer__logo svg:hover{
  transform: scale(1.05);
}

/* ===== Service Popup Modal ===== */
.modal{
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal.is-open{
  opacity: 1;
  pointer-events: auto;
}
.modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
}
.modal__content{
  position: relative;
  width: 100%;
  max-width: 1400px;
  background: var(--dark);
  border-radius: 30px 30px 0 0;
  padding: 60px 70px 70px;
  transform: translateY(100%);
  transition: transform .3s ease;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
}
.modal.is-open .modal__content{
  transform: translateY(0);
}
.modal__close{
  position: absolute;
  top: 25px;
  right: 25px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.modal__close:hover{
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}
.modal__close svg{ width: 20px; height: 20px; }
.modal__grid{
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 100px;
  align-items: start;
}
.modal__info h3{
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 30px;
  font-weight: 600;
}
.modal__info p{
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 35px;
  color: rgba(255,255,255,.85);
}
.modal__services{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.modal__list{
  display: grid;
  gap: 20px;
}
.modal__item{
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: all 0.2s ease;
}
.modal__item:hover{
  padding-left: 8px;
  border-bottom-color: rgba(255,255,255,0.3);
}
.modal__num{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.modal__num--orange{ background: var(--accent); }
.modal__num--coral{ background: var(--coral); }
.modal__num--green{ background: #008E40; }
.modal__num--purple{ background: var(--bg); }
.modal__num--brown{ background: #872717; }
.modal__itemText{
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

/* ===== Contact Popup ===== */
.contactPopup{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 680px;
  max-width: 100%;
  background: var(--dark);
  z-index: 101;
  padding: 70px 50px 50px;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
  border-radius: 30px 0 0 30px;
  box-shadow: -10px 0 40px rgba(0,0,0,0.3);
}
.contactPopup.is-open{
  transform: translateX(0);
}
.contactPopup__close{
  position: absolute;
  top: 25px;
  right: 25px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.contactPopup__close:hover{
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}
.contactPopup h2{
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 12px;
  font-weight: 600;
}
.contactPopup__sub{
  font-size: 16px;
  margin: 0 0 50px;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.contactForm{
  display: grid;
  gap: 32px;
}
.contactForm__field{
  position: relative;
  padding-bottom: 12px;
  border-bottom: 1.5px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s ease;
}
.contactForm__field:focus-within{
  border-bottom-color: var(--accent);
}
.contactForm__field input,
.contactForm__field textarea{
  width: 100%;
  background: none;
  border: none;
  font-size: 16px;
  color: #fff;
  padding: 8px 0;
  outline: none;
  font-family: inherit;
}
.contactForm__field textarea{
  min-height: 80px;
  resize: vertical;
}
.contactForm__field input::placeholder,
.contactForm__field textarea::placeholder{
  color: rgba(255,255,255,0.4);
}
.contactForm__submit{
  width: 100%;
  padding: 16px 30px;
  background: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-text);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  margin-top: 10px;
}
.contactForm__submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.2);
}

/* ===== About Us Popup ===== */
.aboutPopup{
  position: fixed;
  inset: 0;
  z-index: 102;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.aboutPopup.is-open{
  opacity: 1;
  visibility: visible;
}
.aboutPopup__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}
.aboutPopup__content{
  position: relative;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  background: var(--dark);
  border-radius: 20px;
  padding: 50px;
  overflow-y: auto;
  transform: translateY(30px);
  transition: transform .3s ease;
}
.aboutPopup.is-open .aboutPopup__content{
  transform: translateY(0);
}
.aboutPopup__close{
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: transform 0.2s ease;
}
.aboutPopup__close:hover{
  transform: scale(1.1);
}
.aboutPopup__close svg{
  width: 100%;
  height: 100%;
}
.aboutPopup h2{
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 30px;
  color: #fff;
}
.aboutPopup__text{
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.8;
}
.aboutPopup__text p{
  margin: 0 0 20px;
}
.aboutPopup__text p:last-child{
  margin-bottom: 0;
}

/* ===== Policy Popup ===== */
.policyPopup{
  position: fixed;
  inset: 0;
  z-index: 102;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.policyPopup.is-open{
  opacity: 1;
  visibility: visible;
}
.policyPopup__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}
.policyPopup__content{
  position: relative;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  background: var(--dark);
  border-radius: 20px;
  padding: 50px;
  overflow-y: auto;
}
.policyPopup__close{
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
}
.policyPopup__close svg{
  width: 100%;
  height: 100%;
}
.policyPopup h2{
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 30px;
  color: #fff;
}
.policyPopup__text{
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  line-height: 1.7;
}
.policyPopup__text h3{
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 25px 0 10px;
}
.policyPopup__text p{
  margin: 0 0 15px;
}
.policyPopup__text ul{
  margin: 0 0 15px;
  padding-left: 20px;
}
.policyPopup__text li{
  margin-bottom: 8px;
}

/* ===== Form ===== */
.form{ display:grid; gap: 14px; margin-top: 14px; }
.form__row{ display:grid; gap: 12px; grid-template-columns: 1fr 1fr; }
input, textarea{
  width:100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color: #fff;
  outline:none;
}
textarea{ min-height: 130px; resize: vertical; }

/* ===== Scroll Animations ===== */
.fade-in{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible{
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left{
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-left.visible{
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right{
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-right.visible{
  opacity: 1;
  transform: translateX(0);
}

/* Remove fade-in delays for service cards - using parallax instead */

/* Staggered delays for team members */
.person:nth-child(1){ transition-delay: 0s; }
.person:nth-child(2){ transition-delay: 0.15s; }
.person:nth-child(3){ transition-delay: 0.3s; }
.person:nth-child(4){ transition-delay: 0.45s; }

/* ===== Hover Effects ===== */
/* Service cards hover */
.serviceCard{
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.serviceCard:hover{
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Team photos hover - grayscale to color + zoom */
.person{
  transition: transform 0.4s ease;
}
.person::before{
  filter: grayscale(30%);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.person:hover{
  transform: translateY(-5px);
}
.person:hover::before{
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Button glow effect */
.btn{
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,80,51,0.3);
}
.btn--white:hover{
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}
.btn--outline:hover{
  background: rgba(255,255,255,0.1);
  box-shadow: 0 8px 25px rgba(255,255,255,0.15);
}

/* Client logos hover */
.clientLogo{
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0.7;
}
.clientLogo:hover{
  opacity: 1;
  transform: scale(1.1) translateY(-3px);
}

/* Service tags hover */
.serviceTag{
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.serviceTag:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}

/* Stat cards hover */
.stat{
  transition: transform 0.3s ease;
}
.stat:hover{
  transform: scale(1.05);
}

/* ===== Parallax Elements ===== */
.parallax{
  will-change: transform;
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .nav{ display:none; }
  .burger{ display:inline-block; }
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__card{ justify-self:stretch; max-width:none; }
  .about__row{ grid-template-columns: 1fr; }
  .team__top{ grid-template-columns: 1fr; }
  .team__grid{ grid-template-columns: repeat(2, 1fr); }
  .serviceCard__media{ min-height: 360px; }
  .stats__grid{ grid-template-columns: repeat(2, 1fr); }
  .footer__bottom{ grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer__logo{ justify-self: center; }
}

@media (max-width: 768px){
  /* Hero Section - Mobile Layout */
  .hero{ 
    padding: 120px 0 60px; 
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero__grid{ display: block; }
  .hero__title{ 
    font-size: clamp(70px, 22vw, 120px); 
    line-height: 0.95;
    margin-bottom: 30px;
  }
  .hero__card{ display: none; }
  .hero__mobile-content{
    display: block;
    margin-top: 40px;
  }
  .hero__mobile-copy{
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    margin: 0 0 30px;
    max-width: 400px;
  }
  .hero__mobile-actions{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  .hero__mobile-actions .btn{
    padding: 14px 28px;
  }
  .hero__ribbon-svg{ 
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: auto;
    opacity: 0.9;
    z-index: 0;
  }
  .hero__coral-shape{ display: none; }
  .hero__left{ position: relative; z-index: 1; }
  
  /* About Section */
  .about{ padding: 60px 0; }
  .about__row{ gap: 40px; }
  .about__title{ font-size: clamp(32px, 8vw, 42px); }
  .about__text{ font-size: 15px; }
  
  /* Team Section */
  .team{ padding: 60px 0; }
  .team__title{ font-size: clamp(32px, 9vw, 48px); color: var(--accent); }
  .team__desc{ font-size: 16px; line-height: 1.6; margin-bottom: 30px; }
  .team__grid{ grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .teamMember{ position: relative; }
  .teamMember__photo{ height: 200px; border-radius: 12px; }
  .teamMember__info{ 
    position: absolute; 
    bottom: 15px; 
    left: 15px; 
    background: transparent;
    padding: 0;
  }
  .teamMember__name{ font-size: 16px; font-weight: 600; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
  .teamMember__role{ font-size: 13px; color: rgba(255,255,255,0.9); text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
  
  /* Services Section */
  .services{ padding: 60px 0; }
  .services__title{ font-size: clamp(28px, 7vw, 36px); }
  .serviceCard{ min-height: 400px; }
  .serviceCard__media{ min-height: 280px; }
  .serviceCard__title{ font-size: 24px; }
  
  /* Products Section */
  .products{ padding: 60px 0; }
  .products__title{ font-size: clamp(28px, 7vw, 36px); }
  
  /* Testimonials Section */
  .testimonials{ padding: 60px 0; }
  .testimonials__title{ font-size: clamp(28px, 7vw, 36px); }
  .tCard{ flex-basis: 300px; padding: 30px; }
  
  /* Clients Section */
  .clients{ padding: 60px 0; }
  .clients__title{ font-size: clamp(28px, 7vw, 36px); }
  
  /* Stats Section */
  .stats{ padding: 80px 0 0; }
  .stats__title{ font-size: clamp(28px, 7vw, 36px); margin-bottom: 50px; }
  .stats__grid{ grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat::before{ width: 160px; height: 140px; }
  .stat__number{ font-size: clamp(36px, 8vw, 60px); }
  .stat__label{ font-size: 14px; }
  
  /* Gallery Section */
  .gallery{ padding: 60px 0; }
  .gallery__title{ font-size: clamp(28px, 7vw, 36px); }
  
  /* Footer - Mobile Layout */
  .footer{ 
    padding: 30px 0 20px; 
    overflow: hidden;
  }
  .footer .container{
    padding: 0 20px;
  }
  .footer__top{ 
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .footer__social{ 
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
    gap: 8px;
  }
  .footer__social a{
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
  }
  .footer__back{
    font-size: 12px;
    color: rgba(255,255,255,0.7);
  }
  .footer__bottom{ 
    display: flex;
    flex-direction: column;
    gap: 0; 
  }
  .footer__contact{ 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    order: 1;
    margin-bottom: 30px;
  }
  .footer__contact a{
    font-size: 14px;
    display: block;
    color: #fff;
  }
  .footer__contact a span{
    color: var(--accent);
    margin-right: 8px;
  }
  .footer__logo{ 
    order: 2;
    margin: 0 -20px 30px -20px;
    width: calc(100% + 40px);
  }
  .footer__logo svg{ 
    width: 100%; 
    height: auto; 
    color: var(--accent);
    display: block;
    transform: scale(1.8);
    transform-origin: left center;
  }
  .footer__links{ 
    order: 3;
    display: flex !important;
    flex-direction: row; 
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer__links a{
    font-size: 12px;
    color: var(--accent) !important;
  }
  
  /* Ribbon */
  .ribbon{ padding: 15px 0; }
  .ribbon__item{ font-size: 14px; }
  
  /* Modals */
  .modal__content{ padding: 30px 20px; max-height: 90vh; overflow-y: auto; }
  .modal__grid{ grid-template-columns: 1fr; gap: 30px; }
  .modal__info h3{ font-size: 24px; margin-bottom: 25px; }
  .modal__info p{ font-size: 14px; line-height: 1.5; margin-bottom: 20px; }
  .modal__services{ grid-template-columns: 1fr 1fr; gap: 20px; }
  .modal__list{ gap: 12px; }
  .modal__item{ padding-bottom: 10px; gap: 10px; }
  .modal__num{ width: 32px; height: 32px; font-size: 14px; flex-shrink: 0; }
  .modal__itemText{ font-size: 14px; }
  .contactPopup{ 
    padding: 30px 20px 20px; 
    width: 100%;
  }
  .contactPopup h2{ font-size: 28px; margin-bottom: 10px; }
  .contactPopup__sub{ font-size: 14px; margin-bottom: 30px; }
  .contactForm{ gap: 20px; }
  .contactForm__field{ padding-bottom: 10px; }
  .contactForm__field input,
  .contactForm__field textarea{ font-size: 14px; padding: 8px 0; }
  .contactForm__field label{ font-size: 12px; }
  .contactForm__row{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .topbar{ top: 10px; }
  .topbar__inner{ height: 72px; padding: 0 14px; }
  .btn--icon{ display:none; }
  
  /* Hero */
  .hero{ padding: 100px 0 40px; }
  .hero__title{ font-size: clamp(65px, 20vw, 110px); line-height: 0.95; }
  .hero__card-content{ padding: 25px; }
  .hero__card-content p{ font-size: 14px; }
  
  /* About */
  .about__title{ font-size: 28px; }
  
  /* Team */
  .team__grid{ grid-template-columns: 1fr; gap: 30px; }
  .teamMember__photo{ height: 280px; }
  
  /* Services */
  .serviceCard{ min-height: 350px; }
  .serviceCard__media{ min-height: 220px; }
  .serviceCard__title{ font-size: 20px; }
  .serviceCard__tags{ gap: 6px; }
  .serviceCard__tag{ font-size: 11px; padding: 6px 12px; }
  
  /* Stats */
  .stats__grid{ grid-template-columns: 1fr; gap: 40px; }
  .stat::before{ width: 200px; height: 160px; }
  .stat__number{ font-size: 48px; }
  .stat__label{ font-size: 14px; }
  
  /* Testimonials */
  .tCard{ flex-basis: 280px; padding: 25px; }
  .tCard__quote{ font-size: 14px; }
  
  /* Footer */
  .footer__logo svg{ width: 100px; }
  
  /* Contact Form */
  .contactForm__field input,
  .contactForm__field textarea{ font-size: 14px; padding: 14px; }
}
