:root{
  --bg:#f7f8fa;
  --bg-alt:#ffffff;
  --ink:#0a0e1a;
  --ink-2:#3a4256;
  --muted:#7a8194;
  --line:#e6e9ef;
  --primary:#0066ff;
  --primary-2:#0047cc;
  --accent:#00d4ff;
  --radius:18px;
  --shadow:0 10px 40px -12px rgba(10,14,26,.12);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',system-ui,sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:1240px;margin:0 auto;padding:0 24px}

/* HEADER */
.header{
  position:fixed;top:0;left:0;right:0;z-index:50;
  background:#ffffff;
  border-bottom:1px solid rgba(230,233,239,.6);
}
.header__inner{display:flex;align-items:center;justify-content:space-between;height:72px}
.logo{display:flex;align-items:center;transition:opacity 0.2s}
.logo:hover{opacity:0.85}
.logo-img{height:44px;width:auto;display:block;object-fit:contain;transition:all 0.3s ease}
.logo--footer .logo-img{height:34px}
.nav{display:flex;gap:36px}
.nav a{font-size:15px;color:var(--ink-2);font-weight:500;transition:color .2s}
.nav a:hover{color:var(--primary)}
@media(max-width:768px){.nav{display:none}}

/* BUTTONS */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 28px;border-radius:999px;font-weight:600;font-size:15px;
  transition:all .25s ease;cursor:pointer;border:none;
}
.btn--sm{padding:10px 20px;font-size:14px}
.btn--primary{background:var(--ink);color:#fff}
.btn--primary:hover{background:var(--primary);transform:translateY(-2px);box-shadow:0 12px 24px -8px rgba(0,102,255,.4)}
.btn--ghost{background:rgba(255,255,255,.1);color:#fff;border:1px solid rgba(255,255,255,.3);backdrop-filter:blur(10px)}
.btn--ghost:hover{background:rgba(255,255,255,.2)}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.swiper {
  width: 100%;
  height: 100%;
  background-color: #000;
}
.swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
}
.swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.8) 0%, rgba(10, 14, 26, 0.4) 50%, rgba(0, 71, 204, 0.4) 100%);
  z-index: 1;
}
.slide-1 { background-image: url('https://images.unsplash.com/photo-1621905235294-7541604a5202?w=1920&q=80'); }
.slide-2 { background-image: url('https://images.unsplash.com/photo-1565793298595-6a879b1d9492?w=1920&q=80'); }
.slide-3 { background-image: url('https://images.unsplash.com/photo-1581092335397-9583eb92d232?w=1920&q=80'); }

.hero-slider__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}
.hero-slider__overlay * { pointer-events: auto; }

.slide-captions {
  max-width: 800px;
  color: #fff;
  margin-bottom: 40px;
}
.slide-captions .current-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}
.slide-captions .current-subtitle {
  font-size: clamp(14px, 1.5vw, 18px);
  color: rgba(255, 255, 255, 0.8);
  margin: 16px 0 0 0;
  font-weight: 400;
}

.hero-slider__cta {
  display: flex;
  gap: 16px;
}

.slide-thumb {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 180px;
  height: 180px;
  z-index: 20;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(max-width: 768px) { .slide-thumb { display: none; } }

.slide-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-title {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff !important;
  width: 56px !important;
  height: 56px !important;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  transition: all 0.3s;
}
.swiper-button-prev:after, .swiper-button-next:after { font-size: 20px !important; }
.swiper-button-prev:hover, .swiper-button-next:hover { background: var(--primary); }
.swiper-pagination-bullet { background: #fff !important; opacity: 0.3; }
.swiper-pagination-bullet-active { opacity: 1; background: var(--accent) !important; }

/* GENERAL SECTIONS */
.section { padding: 120px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 60px; flex-wrap: wrap; }
.section__head--center { justify-content: center; text-align: center; }
.section__head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section__head .eyebrow { color: var(--primary); }
.section__sub { color: var(--muted); margin-top: 16px; max-width: 560px; }
.link-arrow { color: var(--primary); font-weight: 600; font-size: 15px; transition: gap 0.2s; display: inline-flex; gap: 6px; }
.link-arrow:hover { gap: 12px; }

/* ABOUT US */
.about {
  background: var(--bg-alt);
  padding: 140px 0;
}
.about__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.about__content h2 {
  margin: 16px 0 24px;
}
.about__content > p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 40px;
}
.about__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
.about__features li {
  display: flex;
  gap: 16px;
}
.feature__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.about__features strong {
  display: block;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 4px;
}
.about__features span {
  font-size: 14px;
  color: var(--muted);
}
.about__cta {
  display: flex;
  align-items: center;
  gap: 40px;
}
.about__experience {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about__experience strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}
.about__experience span {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.2;
}

.about__media {
  position: relative;
}
.about__video-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(10,14,26,0.15);
  aspect-ratio: 4/5;
}
.about__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__media-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  z-index: 2;
}
.badge__icon {
  font-size: 24px;
}
.about__media-badge span {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media(max-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about__media {
    order: -1;
  }
  .about__video-wrap {
    aspect-ratio: 16/9;
  }
}
@media(max-width: 640px) {
  .about__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* SERVICES SECTION */
#services {
  position: relative;
  overflow: hidden;
  background: #080c18;
  color: #fff;
  padding: 140px 0;
}

/* Parallax Background — more visible */
.services-bg {
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 180%;
  background-image: url('https://images.unsplash.com/photo-1513828583688-c52646db42da?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: brightness(60%);
  z-index: 0;
}

/* Floating gradient orbs for depth */
.services-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
  pointer-events: none;
}
.services-glow--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.2), transparent 70%);
  top: -10%;
  left: -10%;
  animation: glowFloat 12s ease-in-out infinite alternate;
}
.services-glow--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12), transparent 70%);
  bottom: -15%;
  right: -8%;
  animation: glowFloat 10s ease-in-out infinite alternate-reverse;
}
@keyframes glowFloat {
  from { transform: translate(0, 0); }
  to { transform: translate(30px, -40px); }
}

#services .container { position: relative; z-index: 2; }
#services .section__head h2 { color: #fff; }
#services .section__head .eyebrow { color: var(--accent); }

.services-subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  margin-top: 16px;
  max-width: 560px;
  line-height: 1.6;
}

/* Slider wrapper */
.slider {
  margin-top: 48px;
  position: relative;
}
.swiper-services {
  padding: 24px 4px 64px !important;
  margin: -24px -4px 0;
}
.swiper-services .swiper-slide {
  height: auto;
}

/* Service Cards */
.service-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 48px 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5), 0 0 60px -20px rgba(0, 102, 255, 0.15);
}

.service-card__num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  transition: color 0.4s;
}
.service-card:hover .service-card__num {
  color: rgba(0, 212, 255, 0.12);
}

/* Light version for white backgrounds */
.service-card.service-card--alt {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 40px -12px rgba(10,14,26,.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.service-card.service-card--alt:hover {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 24px 48px -12px rgba(10,14,26,.15), 0 0 40px -15px rgba(0,102,255,.1);
}
.service-card.service-card--alt .service-card__num {
  color: var(--line);
}
.service-card.service-card--alt:hover .service-card__num {
  color: rgba(0, 102, 255, 0.1);
}
.service-card.service-card--alt h3 {
  color: var(--ink);
}
.service-card.service-card--alt p {
  color: var(--muted);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 8px 20px -4px rgba(0, 102, 255, 0.35);
}
.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.service-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s;
  margin-top: auto;
}
.service-card:hover .service-card__link {
  opacity: 1;
  transform: translateY(0);
}

.service-card--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.service-card__cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card--cta .service-card__icon {
  margin: 0 auto 24px auto;
}
.service-card--cta svg {
  width: 32px;
  height: 32px;
}
.service-card--cta .btn {
  margin-top: 24px;
}

/* Navigation Buttons */
.slider__nav {
  display: flex;
  gap: 12px;
}
.slider__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider__btn:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  transform: scale(1.1);
}
.slider__btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Bottom Stats Strip */
.services-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.services-stat {
  padding: 36px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.services-stat:last-child {
  border-right: none;
}
.services-stat strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}
.services-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media(max-width: 768px) {
  .services-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-stat:nth-child(2) {
    border-right: none;
  }
  .services-stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}

/* CATALOG SECTIONS & BANNERS */
.category-banner {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  padding: 80px 60px;
  margin-bottom: 48px;
  display: flex;
  align-items: flex-end;
  min-height: 400px;
  background-size: cover;
  background-position: center;
}
.category-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 26, 0.95) 0%, rgba(10, 14, 26, 0.2) 100%);
  z-index: 1;
}
.category-banner__content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
}
.category-banner__label {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.category-banner__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px 0;
  line-height: 1.1;
}
.category-banner__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 32px 0;
}
.category-banner__count {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.category-banner__count::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
@media(max-width: 900px) {
  .category-banner {
    padding: 40px 32px;
    min-height: 340px;
    border-radius: 24px;
  }
  .category-banner__title {
    font-size: 36px;
  }
}
@media(max-width: 640px) {
  .category-banner {
    padding: 32px 24px;
    min-height: 320px;
  }
  .category-banner__title {
    font-size: 28px;
  }
  .category-banner__desc {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

/* EQUIPMENT CATEGORIES GRID */
.section--equipment {
  background: var(--bg-alt);
  padding: 100px 0;
}
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 50px;
}
.eq-card--large {
  grid-column: span 2;
}
@media(max-width: 992px) {
  .equipment-grid { grid-template-columns: 1fr; }
  .eq-card--large { grid-column: span 1; }
}
.eq-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}
.eq-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px -10px rgba(0, 102, 255, 0.15);
}
.eq-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--brand-red));
  opacity: 0;
  transition: opacity 0.4s;
}
.eq-card:hover::before {
  opacity: 1;
}
.eq-card__icon {
  width: 64px; height: 64px;
  background: rgba(0, 102, 255, 0.08);
  color: var(--primary);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.eq-card__icon svg { width: 32px; height: 32px; }
.eq-card:hover .eq-card__icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}
.eq-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--ink);
}
.eq-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.eq-list-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media(max-width: 640px) {
  .eq-list-columns { grid-template-columns: 1fr; gap: 12px; }
}
.eq-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  transition: color 0.3s ease;
  cursor: default;
}
.eq-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--line);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.eq-list li:hover {
  color: var(--ink);
}
.eq-list li:hover::before {
  background: var(--primary);
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(0, 102, 255, 0.4);
}

/* CREATIVE CATALOG LINK */
.creative-catalog-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 40px;
  background: var(--primary);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 16px 32px -10px rgba(0, 102, 255, 0.5);
}
.creative-catalog-link::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
}
.creative-catalog-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -10px rgba(0, 102, 255, 0.7);
  background: var(--primary-2);
}
.creative-catalog-link:hover::before {
  left: 100%;
}
.creative-catalog-link__text {
  position: relative;
  z-index: 2;
}
.creative-catalog-link__icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  color: var(--primary);
  border-radius: 50%;
  transition: transform 0.4s ease;
}
.creative-catalog-link__icon svg {
  width: 20px;
  height: 20px;
}
.creative-catalog-link:hover .creative-catalog-link__icon {
  transform: translateX(8px);
}

/* GRID / E-COMMERCE PRODUCTS */
.grid { display: grid; gap: 32px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media(max-width: 1024px) { .grid--3 { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media(max-width: 640px) { .grid--3 { grid-template-columns: 1fr; } }

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 24px;
}
.product-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 30px -10px rgba(0, 102, 255, 0.15);
  transform: translateY(-4px);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1/1;
  background: #f7f8fa;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

.product-card__info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 24px;
}
.product-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}

.product-card__action {
  width: 100%;
}
.product-card__action .btn {
  width: 100%;
  padding: 12px;
  font-size: 14px;
}

/* OUTLINE BUTTON */
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 99px;
  text-align: center;
  display: block;
}
.product-card:hover .btn--outline {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* PARTNERS */
.partners{
  display:grid;grid-template-columns:repeat(4,1fr);gap:0;
  border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;background:#fff;
}
@media(max-width:768px){.partners{grid-template-columns:repeat(2,1fr)}}
.partner{
  padding:48px 24px;text-align:center;
  font-family:'Space Grotesk',sans-serif;font-size:22px;font-weight:600;
  color:var(--ink-2);
  border-right:1px solid var(--line);border-bottom:1px solid var(--line);
  transition:all .3s;cursor:default;
}
.partner:hover{background:var(--bg);color:var(--primary)}

/* CONTACT */
.contact{display:grid;grid-template-columns:1fr 1.2fr;gap:60px;align-items:stretch}
@media(max-width:900px){.contact{grid-template-columns:1fr}}
.contact__info h2{margin:16px 0 16px}
.contact__info > p{color:var(--muted);margin-bottom:36px}
.contact__list{list-style:none;display:flex;flex-direction:column;gap:20px;margin-bottom:36px}
.contact__list li{display:flex;flex-direction:column;gap:4px;padding-bottom:20px;border-bottom:1px solid var(--line)}
.contact__list span:first-child{font-size:12px;color:var(--muted);text-transform:uppercase;letter-spacing:.1em;font-weight:600}
.contact__list a,.contact__list li>span:last-child{font-size:17px;color:var(--ink);font-weight:500}
.contact__list a:hover{color:var(--primary)}
.socials{display:flex;gap:12px}
.socials a{
  width:44px;height:44px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:var(--ink);color:#fff;font-size:13px;font-weight:600;
  transition:all .2s;
}
.socials a:hover{background:var(--primary);transform:translateY(-2px)}
.contact__map{
  border-radius:var(--radius);overflow:hidden;
  min-height:480px;border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.contact__map iframe { width: 100% !important; height: 100% !important; border: 0; display: block; min-height: 480px; }

/* SEASONS SECTION */
.section--seasons {
  background: #080c18;
  color: #fff;
  padding: 120px 0;
}
.section--seasons .section__head h2 {
  color: #fff;
}
.section--seasons .eyebrow {
  color: var(--primary);
}
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .seasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .seasons-grid {
    grid-template-columns: 1fr;
  }
}
.season-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  cursor: pointer;
}
.season-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.season-card:hover .season-card__bg {
  transform: scale(1.1);
}
.season-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 26, 0.9) 0%, rgba(10, 14, 26, 0.2) 60%, transparent 100%);
  transition: opacity 0.5s;
}
.season-card:hover .season-card__overlay {
  background: linear-gradient(to top, rgba(10, 14, 26, 0.95) 0%, rgba(0, 102, 255, 0.4) 60%, transparent 100%);
}
.season-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  color: #fff;
  transform: translateY(16px);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.season-card:hover .season-card__content {
  transform: translateY(0);
}
.season-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.season-card__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}
.season-card:hover .season-card__desc {
  opacity: 1;
}

/* PROJECTS SECTION */
.section--projects {
  background: var(--bg-alt);
  padding: 140px 0;
}
.project-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
}
.project-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(0, 102, 255, 0.2);
}
.project-item__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.project-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.project-item:hover .project-item__media img {
  transform: scale(1.06);
}
.project-item__info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.project-item__tag {
  font-size: 11px;
  background: rgba(0, 102, 255, 0.08);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
}
.project-item__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.project-item__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* CALCULATOR SECTION */
.section--calculator {
  background: var(--bg);
  padding: 140px 0;
}
.calc-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  margin-top: 56px;
  align-items: start;
}
@media(max-width: 1024px) {
  .calc-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.calc-panel {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media(max-width: 640px) {
  .calc-panel {
    padding: 24px;
  }
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
}
.calc-group select,
.calc-group input[type="number"] {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  transition: all 0.3s;
  outline: none;
}
.calc-group select:focus,
.calc-group input[type="number"]:focus {
  border-color: var(--primary);
  background: #fff;
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media(max-width: 640px) {
  .calc-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Modern Range Slider */
.calc-range-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.calc-range-wrap input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--line);
  outline: none;
}
.calc-range-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  transition: transform 0.1s;
}
.calc-range-wrap input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.calc-range-val {
  min-width: 48px;
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Space Grotesk', sans-serif;
}

/* Custom Checkbox */
.calc-checkbox-container {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  user-select: none;
}
.calc-checkbox-container input {
  display: none;
}
.checkbox-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--line);
  display: inline-block;
  position: relative;
  transition: all 0.3s;
  background: #fff;
  flex-shrink: 0;
}
.calc-checkbox-container input:checked + .checkbox-box {
  background: var(--primary);
  border-color: var(--primary);
}
.calc-checkbox-container input:checked + .checkbox-box::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.calc-checkbox-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

/* Result Panel Display */
.calc-result {
  position: sticky;
  top: 100px;
}
.result-card {
  background: var(--ink);
  color: #fff;
  border-radius: 28px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-shadow: 0 30px 60px -15px rgba(10,14,26,0.3);
  position: relative;
  overflow: hidden;
}
@media(max-width: 640px) {
  .result-card {
    padding: 32px 24px;
  }
}
.result-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.result-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.result-metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 32px;
}
.metric-main {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.metric-main .metric-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.metric-main .metric-unit {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.metric-sub {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.metric-sub .metric-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.metric-sub .metric-unit {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.result-range,
.result-model {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.result-range span,
.result-model span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.result-range strong {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.result-model strong {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}

.result-action {
  margin-top: 12px;
}
.result-action .btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border-radius: 99px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(0, 102, 255, 0.3);
}
.result-action .btn:hover {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(0, 212, 255, 0.4);
}
.calc-note {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 16px;
  line-height: 1.4;
}

/* FOOTER */
.footer{padding:32px 0;border-top:1px solid var(--line);background:#fff}
.footer__inner{display:flex;justify-content:space-between;color:var(--muted);font-size:14px;flex-wrap:wrap;gap:12px}

/* ANIMATIONS */
.fade-in{opacity:0;transform:translateY(24px);transition:all .8s cubic-bezier(.22,.61,.36,1)}
.fade-in.visible{opacity:1;transform:translateY(0)}

/* ============================================================
   SHARED � NAV ACTIVE STATE & BURGER
   ============================================================ */
.nav a.active {
  color: var(--primary);
  font-weight: 600;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-phone-icon { display: none; }

@media(max-width: 768px) {
  .burger { display: flex; }
  .nav {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    bottom: 0;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding-top: 80px;
    gap: 0;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
  }
  .nav--open { right: 0; }
  .desktop-phone { display: none; }
  .mobile-phone-icon { display: block; }
  .header-phone-btn { padding: 10px; border-radius: 50%; }
  .nav a {
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
}

/* ============================================================
   SHARED � FOOTER ENHANCED
   ============================================================ */
.footer__inner-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.footer__nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: color .2s;
}
.footer__nav a:hover { color: var(--primary); }
.footer__copy { font-size: 13px; color: var(--muted); white-space: nowrap; }
.logo--footer { font-size: 17px; }
@media(max-width: 768px) {
  .footer__inner-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .logo--footer { justify-content: center; }
  .footer__copy { text-align: center; }
}

/* ============================================================
   PAGE HERO � inner pages banner
   ============================================================ */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.page-hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,102,255,.25), transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
  font-weight: 500;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb__sep { opacity: .4; }
.breadcrumb__current { color: rgba(255,255,255,.9); }
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin-bottom: 24px;
}
.page-hero__lead {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255,255,255,.7);
  max-width: 560px;
  line-height: 1.6;
}
.page-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.35);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
}
.page-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.15); }
}

/* ============================================================
   SECTION INTRO � mission block
   ============================================================ */
.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.section-intro__visual {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 80px -20px rgba(10,14,26,.18);
}
.section-intro__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-intro__badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(10,14,26,.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  z-index: 2;
}
.section-intro__text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 12px 0 24px;
}
.section-intro__text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}
@media(max-width: 900px) {
  .section-intro { grid-template-columns: 1fr; gap: 48px; }
  .section-intro__visual { aspect-ratio: 16/9; }
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 2px;
}
.timeline__item {
  position: relative;
  padding-bottom: 36px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all .6s cubic-bezier(.22,.61,.36,1);
}
.timeline__item.visible {
  opacity: 1;
  transform: translateX(0);
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -47px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline__year {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.timeline__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.timeline__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   USP GRID
   ============================================================ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media(max-width: 900px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 560px) { .usp-grid { grid-template-columns: 1fr; } }

.usp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all .35s cubic-bezier(.23,1,.32,1);
  position: relative;
  overflow: hidden;
}
.usp-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform .35s;
  transform-origin: left;
}
.usp-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -12px rgba(0,102,255,.12); border-color: transparent; }
.usp-card:hover::after { transform: scaleX(1); }
.usp-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0,102,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: background .35s;
}
.usp-card:hover .usp-card__icon { background: rgba(0,102,255,.14); }
.usp-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.usp-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
@media(max-width: 1024px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 560px)  { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: all .35s cubic-bezier(.23,1,.32,1);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -12px rgba(10,14,26,.1); }
.team-card__photo {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg);
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.team-card:hover .team-card__photo img { transform: scale(1.06); }
.team-card__info { padding: 20px 16px 24px; }
.team-card__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ============================================================
   STATS / COUNTERS
   ============================================================ */
.stats-section {
  background: var(--ink);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.stats-section__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,.1), transparent 70%);
  top: -150px;
  left: -100px;
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
}
@media(max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-cell {
  padding: 48px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .3s;
}
.stat-cell:hover { background: rgba(255,255,255,.04); }
.stat-cell__value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.stat-cell__label {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.4;
}
.stat-cell__desc {
  font-size: 13px;
  color: rgba(255,255,255,.3);
  margin-top: 6px;
  line-height: 1.5;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  padding: 80px 64px;
  background: linear-gradient(135deg, var(--ink) 0%, #0a1f5c 50%, #0066ff 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,.15), transparent 65%);
  pointer-events: none;
}
.cta-banner__text { position: relative; z-index: 1; }
.cta-banner__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.cta-banner h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  line-height: 1.6;
}
.cta-banner__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
@media(max-width: 860px) {
  .cta-banner { flex-direction: column; padding: 48px 36px; text-align: center; }
  .cta-banner__actions { justify-content: center; flex-wrap: wrap; }
}
@media(max-width: 480px) {
  .cta-banner { padding: 40px 24px; border-radius: 20px; }
}

/* ============================================================
   PARTNERS ENHANCED
   ============================================================ */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 56px;
  }
@media(max-width: 1024px) { .partners-grid { grid-template-columns: repeat(4, 1fr); } }
@media(max-width: 768px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }

.partner-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-2);
    background: transparent;
    border: none;
    padding: 12px;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink-2);
    transition: all .3s;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
.partner-card:hover {
    color: var(--primary);
    transform: translateY(-3px);
  }
.partner-card__sub {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-top: 6px;
  font-family: 'Inter', sans-serif;
}

/* ============================================================
   CONTACT PAGE � form, info cards, FAQ
   ============================================================ */

/* Page-level contact grid */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
@media(max-width: 960px) { .contact-page-grid { grid-template-columns: 1fr; gap: 48px; } }

/* Info column */
.contact-info__lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin: 8px 0 40px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 28px;
  transition: all .3s cubic-bezier(.23,1,.32,1);
}
.contact-info-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px -8px rgba(0,102,255,.12);
  transform: translateX(4px);
}
.contact-info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0,102,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: background .3s;
}
.contact-info-card:hover .contact-info-card__icon {
  background: rgba(0,102,255,.15);
}
.contact-info-card__body { flex: 1; }
.contact-info-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
  margin-bottom: 4px;
  display: block;
}
.contact-info-card__value {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: block;
  transition: color .2s;
  line-height: 1.4;
}
.contact-info-card__value:hover { color: var(--primary); }
.contact-info-card__note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
  display: block;
}

/* Social buttons in contact page */
.contact-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.contact-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(0,0,0,.12);
}
.contact-social-btn--instagram { border-color: #e1306c; color: #e1306c; }
.contact-social-btn--instagram:hover { background: #e1306c; color: #fff; }
.contact-social-btn--facebook { border-color: #1877f2; color: #1877f2; }
.contact-social-btn--facebook:hover { background: #1877f2; color: #fff; }
.contact-social-btn--twitter { border-color: #1da1f2; color: #1da1f2; }
.contact-social-btn--twitter:hover { background: #1da1f2; color: #fff; }
.contact-social-btn--youtube { border-color: #ff0000; color: #ff0000; }
.contact-social-btn--youtube:hover { background: #ff0000; color: #fff; }
.contact-social-btn--whatsapp { border-color: #25d366; color: #25d366; }
.contact-social-btn--whatsapp:hover { background: #25d366; color: #fff; }
.contact-social-btn--telegram { border-color: #2aabee; color: #2aabee; }
.contact-social-btn--telegram:hover { background: #2aabee; color: #fff; }
.contact-social-btn--linkedin { border-color: #0a66c2; color: #0a66c2; }
.contact-social-btn--linkedin:hover { background: #0a66c2; color: #fff; }

/* ---- Contact Form ---- */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 48px 44px;
  box-shadow: 0 4px 32px rgba(0,0,0,.04);
  position: sticky;
  top: 96px;
}
@media(max-width: 640px) { .contact-form-wrap { padding: 32px 24px; border-radius: 20px; } }

.contact-form-wrap h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-form-wrap > p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
}

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: .01em;
}
.form-group label span { color: var(--primary); }

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  transition: all .25s;
  outline: none;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted); opacity: .7; }
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,102,255,.08);
}
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '?';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  font-size: 14px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.form-check input { display: none; }
.form-check__box {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--line);
  background: #fff;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all .2s;
  position: relative;
}
.form-check input:checked + .form-check__box {
  background: var(--primary);
  border-color: var(--primary);
}
.form-check input:checked + .form-check__box::after {
  content: '?';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.form-check__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.form-check__text a { color: var(--primary); text-decoration: underline; }

.form-submit {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.form-submit .btn { padding: 16px 36px; font-size: 16px; }
.form-submit__note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* Form success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 40px 0;
}
.form-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,102,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.form-success h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}
.form-success p { font-size: 15px; color: var(--muted); }

/* ---- Map section ---- */
.map-section { padding: 0 0 120px; }
.map-wrap {
  border-radius: 28px;
  overflow: hidden;
  height: 440px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---- FAQ accordion ---- */
.faq-section { padding: 100px 0; background: var(--bg-alt); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 56px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.faq-item:last-child { border-bottom: none; }
.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
  transition: background .2s;
}
.faq-item__question:hover { background: var(--bg); }
.faq-item__question h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--muted);
  transition: all .3s;
  background: var(--bg);
}
.faq-item.open .faq-item__icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.23,1,.32,1), padding .3s;
}
.faq-item.open .faq-item__answer { max-height: 400px; }
.faq-item__answer p {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Button shake animation for form validation feedback */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
.shake { animation: shake .5s cubic-bezier(.36,.07,.19,.97); }

/* ============================================================
   CATALOG PAGE
   ============================================================ */

/* Filter bar */
.catalog-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 99px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
  user-select: none;
}
.filter-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.filter-chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.filter-chip__count {
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,.18);
  padding: 2px 7px;
  border-radius: 99px;
}
.filter-chip:not(.active) .filter-chip__count {
  background: var(--bg);
  color: var(--muted);
}

/* Results line */
.catalog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.catalog-meta__count {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.catalog-meta__count strong { color: var(--ink); }

/* Catalog card grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media(max-width: 1024px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media(max-width: 560px)  { .catalog-grid { grid-template-columns: 1fr; } }

/* Catalog card */
.catalog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .35s cubic-bezier(.23,1,.32,1);
  position: relative;
}
.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -12px rgba(10,14,26,.1);
  border-color: rgba(0,102,255,.2);
}

/* Tag badge (e.g. Hit, Yeni) */
.catalog-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 4px 12px;
  border-radius: 99px;
  background: var(--ink);
  color: #fff;
  pointer-events: none;
}
.catalog-card__badge--hit  { background: var(--primary); }
.catalog-card__badge--new  { background: #059669; }
.catalog-card__badge--eco  { background: #0d9488; }
.catalog-card__badge--pro  { background: #7c3aed; }

/* Photo area */
.catalog-card__media {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.catalog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .5s cubic-bezier(.23,1,.32,1);
  mix-blend-mode: multiply;
}
.catalog-card:hover .catalog-card__media img { transform: scale(1.08); }

/* Body */
.catalog-card__body {
  padding: 24px 24px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.catalog-card__brand {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
}
.catalog-card__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}
.catalog-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Spec chips */
.catalog-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.catalog-card__spec {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 3px 10px;
}

/* Footer */
.catalog-card__footer {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  margin-top: 20px;
}
.catalog-card__footer .btn {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 12px;
  transition: all .25s;
}
.catalog-card__footer .btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: none;
  box-shadow: none;
}

/* Empty state */
.catalog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  color: var(--muted);
}
.catalog-empty__icon { font-size: 48px; margin-bottom: 16px; }
.catalog-empty h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}


/* ============================================================
   NEW PREMIUM HOMEPAGE OVERHAUL
   ============================================================ */

/* 1. About Us Upgrades */
.about {
  background: linear-gradient(135deg, #f7f8fa 0%, #eef3ff 100%) !important;
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}
.about-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08), transparent 70%);
  top: -10%;
  right: -10%;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}
.about__inner {
  position: relative;
  z-index: 2;
}

/* 2. Showcase Section (Combined Catalog on Home) */
.showcase {
  background: #0a0f1d;
  color: #fff;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.showcase-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
  pointer-events: none;
}
.showcase-glow--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent 70%);
  top: -10%;
  left: -10%;
}
.showcase-glow--2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.1), transparent 70%);
  bottom: -20%;
  right: -10%;
}
.showcase .container {
  position: relative;
  z-index: 2;
}
.showcase .section__head h2 {
  color: #fff;
}
.showcase .section__head .eyebrow {
  color: var(--accent);
}

/* Showcase Tabs */
.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}
.tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  padding: 14px 28px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.tab-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}
.tab-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 10px 25px -5px rgba(0, 102, 255, 0.4);
}

/* Showcase Grid Switcher */
.showcase-grid-container {
  position: relative;
  min-height: 450px;
}
.showcase-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.showcase-grid.active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

/* Showcase Cards */
.showcase-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.showcase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.01) 50%, rgba(0,212,255,0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.showcase-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4), 0 0 40px -10px rgba(0, 102, 255, 0.15);
}
.showcase-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 102, 255, 0.3);
}
.showcase-card__media {
  position: relative;
  aspect-ratio: 16/10;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.03);
  overflow: hidden;
}
.showcase-card__media img {
  height: 85%;
  width: auto;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
}
.showcase-card:hover .showcase-card__media img {
  transform: scale(1.08) rotate(2deg);
}
.showcase-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.showcase-card__brand {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.showcase-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.showcase-card__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}
.showcase-card__spec {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 8px;
  align-self: flex-start;
  margin-top: 4px;
}
.showcase-card__action {
  width: 100%;
}
.showcase-card__action .btn--outline {
  border-color: rgba(255,255,255,0.15);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s;
}
.showcase-card:hover .btn--outline {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 10px 20px -5px rgba(0, 102, 255, 0.4);
}
.showcase-action {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

/* 3. Dark Mode Projects Section */
.section--projects {
  background: linear-gradient(180deg, #0a0f1d 0%, #0e162a 100%) !important;
  padding: 140px 0;
  position: relative;
}
.section--projects .section__head h2 {
  color: #fff;
}
.section--projects .project-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.section--projects .project-item__title {
  color: #fff;
}
.section--projects .project-item__desc {
  color: rgba(255, 255, 255, 0.6);
}
.section--projects .project-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 102, 255, 0.3);
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.4);
}

/* 4. Infinite Scrolling Partners Marquee */
.partners-sec {
  padding: 140px 0 100px !important;
}
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 40px 0;
  background: transparent;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f7f8fa 0%, transparent 100%);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f7f8fa 0%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 25s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-content {
  display: flex;
  gap: 40px;
  padding-right: 40px;
}
.partner-logo {
  padding: 24px 48px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(10, 14, 26, 0.02);
}
.partner-logo:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 20px -5px rgba(0, 102, 255, 0.15);
}
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 5. Polished Glassmorphic Calculator Section */
.section--calculator {
  background: linear-gradient(180deg, #f4f7fc 0%, #ffffff 100%) !important;
  padding: 140px 0;
}
.section--calculator .calc-panel {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(230, 233, 239, 0.8);
  box-shadow: 0 20px 40px -15px rgba(10, 14, 26, 0.05);
}

/* 6. Polished Contact Section Layout */
#contact {
  background: #f7f8fa;
  padding: 140px 0;
}
@media(max-width: 768px) {
  .marquee-wrapper::before,
  .marquee-wrapper::after {
    width: 60px;
  }
}

/* ============================================================
   NEW PINNED PROJECTS VIEWPORT SLIDER SHOWCASE
   ============================================================ */
.section--projects {
  padding: 0 !important;
  background: #050811 !important;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.projects-pin-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.project-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  will-change: transform;
}

#p-slide-1 { z-index: 1; }
#p-slide-2 { z-index: 2; }
#p-slide-3 { z-index: 3; }
#p-slide-4 { z-index: 4; }
#p-slide-cta { z-index: 5; }

.project-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1);
  transition: transform 12s ease;
}
.project-slide.active-slide .project-slide__bg {
  transform: scale(1.08);
}

.project-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(10, 14, 26, 0.6) 50%, rgba(0, 102, 255, 0.2) 100%);
  z-index: 1;
}

.project-slide__container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.project-slide__content {
  max-width: 620px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 48px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  margin-left: 24px;
}
.project-slide__content::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.01) 50%, rgba(0,212,255,0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.project-slide__tag {
  font-size: 11px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 212, 255, 0.15));
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  align-self: flex-start;
}

.project-slide__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.project-slide__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0;
}

.project-slide__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  align-self: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
  width: 100%;
  text-align: right;
}

/* Slide 5: Gallery CTA slide styling */
#p-slide-cta {
  background: radial-gradient(circle at center, #0e162a 0%, #050811 100%) !important;
}
.project-slide__bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.project-slide__container--center {
  justify-content: center;
  align-items: center;
}
.project-slide__cta-box {
  text-align: center;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  z-index: 2;
  padding: 60px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.project-slide__cta-box h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.project-slide__cta-box p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}
.project-slide__cta-box .btn {
  padding: 18px 36px;
  font-size: 16px;
  box-shadow: 0 15px 30px -5px rgba(0, 102, 255, 0.4);
}

@media(max-width: 768px) {
  .project-slide__content {
    margin: 0 16px;
    padding: 28px;
    border-radius: 20px;
  }
  .project-slide__cta-box {
    margin: 0 16px;
    padding: 36px 24px;
    border-radius: 24px;
  }
}

/* Language Switcher */
.lang-switcher--desktop { display: flex; }
.lang-switcher--mobile { display: none; }
@media(max-width: 768px) {
  .lang-switcher--desktop { display: none !important; }
  .lang-switcher--mobile {
    display: flex !important;
    padding: 16px 24px;
    margin-top: auto;
    border-top: 1px solid rgba(0,0,0,0.05);
  }
}
