﻿@media (max-width: 600px) {
  .horizontal-timeline-wrapper {
    gap: 0.3rem;
    margin-bottom: 0.5rem;
  }
  .timeline-scroll-btn {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  .horizontal-timeline {
    height: 320px;
  }
  .horizontal-timeline-track {
    gap: 0.7rem;
    padding: 0 0.5rem;
  }
  .h-timeline-item {
    width: 170px;
  }
  .h-timeline-above {
    padding-bottom: 2.2rem;
  }
  .h-timeline-below {
    padding-top: 2.2rem;
  }
  .h-timeline-card {
    padding: 0.7rem;
    font-size: 0.95rem;
  }
  .wave-line {
    height: 30px;
  }
}
@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.access-intro h2 {
  font-size: clamp(1.6rem, 3.5vw, 3.2rem);
  margin-bottom: clamp(0.85rem, 1.5vw, 1.8rem);
  margin: 0 auto;
}

.hero--einvites .hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
}

.hero--einvites .hero-copy {
  max-width: 640px;
}

.hero-invite-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.invite-hero-stage,
.invite-hero-phone,
.invite-phone-frame,
.invite-phone-screen,
.invite-screen-card,
.invite-card-actions,
.invite-action {
  pointer-events: auto;
}

.hero--accreditation .hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.accreditation-credentials {
  padding: 5rem 0;
}

.accreditation-credentials .section-heading {
  max-width: none;
  margin: 0 auto 3rem;
  text-align: center;
}

.accreditation-credentials .section-heading .section-content {
  color: #ffffff;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.6;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.credentials-slider {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 100%;
}

.credentials-slider .horizontal-timeline {
  height: 480px;
  overflow-x: hidden;
  overflow-y: visible;
  flex: 1 1 0;
  min-width: 0;
}

.credentials-slider .horizontal-timeline-track {
  overflow-y: visible;
  scroll-snap-type: none;
  min-width: 0;
  padding: 2rem 1.5rem;
}

.credentials-slider .timeline-scroll-btn {
  z-index: 3;
}

.credentials-slider .h-timeline-above {
  padding-bottom: 4rem;
}

.credentials-slider .h-timeline-below {
  padding-top: 4rem;
}

.credentials-slider .h-timeline-card {
  background: rgba(60, 200, 255, 0.08);
  border: 1px solid rgba(60, 200, 255, 0.2);
  box-shadow: none;
  text-align: left;
  overflow: visible;
}

.credentials-slider .h-timeline-item:hover .h-timeline-card {
  background: rgba(60, 200, 255, 0.12);
  border-color: rgba(60, 200, 255, 0.6);
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(60, 200, 255, 0.5),
    0 0 50px rgba(60, 200, 255, 0.3);
}

.credentials-slider .h-timeline-card h4 {
  font-size: 1rem;
  color: #3cc8ff;
  margin: 0.8rem 0 0.4rem;
}

.credential-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.credential-media {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
}

.credential-lightbox {
  background: rgba(60, 200, 255, 0.08);
  border: 1px solid rgba(60, 200, 255, 0.2);
  padding: 0;
  cursor: pointer;
  appearance: none;
  outline: none;
  position: relative;
  display: block;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.credential-lightbox::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 32, 0.35);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.credential-lightbox::after {
  content: '';
  position: absolute;
  width: 44px;
  height: 44px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(10, 18, 32, 0.7)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233cc8ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='6'/><line x1='16' y1='16' x2='21' y2='21'/></svg>")
    no-repeat center;
  border: 1px solid rgba(60, 200, 255, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(60, 200, 255, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.credential-lightbox:hover {
  border-color: rgba(60, 200, 255, 0.6);
  box-shadow:
    0 0 20px rgba(60, 200, 255, 0.35),
    0 0 35px rgba(60, 200, 255, 0.2);
}

.credential-lightbox:hover::before,
.credential-lightbox:hover::after {
  opacity: 1;
}

.credential-lightbox:hover::after {
  transform: translate(-50%, -50%) scale(1.05);
}

.credential-lightbox img {
  transition: transform 0.3s ease;
}

.credential-lightbox:hover img {
  transform: scale(1.03);
}

.credential-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.credential-meta,
.credential-size {
  font-size: 0.85rem;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
}

.credential-size {
  color: #ffffff;
}

@media (max-width: 768px) {
  .credentials-slider .horizontal-timeline {
    height: 320px;
  }

  .credential-media {
    height: 120px;
  }
}

.hero-accreditation-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.hero--access-control .hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.hero-access-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  overflow: visible;
  position: relative;
}

.hero--access-control .mini-badge {
  width: 120px;
  height: 170px;
}

.hero--access-control .scanner-terminal {
  overflow: visible;
  position: relative;
  z-index: 2;
}

.hero--access-control .badge-holder {
  position: absolute;
  bottom: auto;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  z-index: 0;
}

.hero--access-control .scan-buttons-wrapper {
  position: absolute;
  bottom: -65px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 0;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.hero-accreditation-visual .carousel-badge {
  transform: scale(1.15);
}

.invite-hero-stage {
  position: relative;
  width: 340px;
  height: 460px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.invite-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(60, 200, 255, 0.35);
  animation: inviteRingPulse 5s ease-in-out infinite;
  pointer-events: none;
}

.ring-a {
  width: 240px;
  height: 240px;
}

.ring-b {
  width: 320px;
  height: 320px;
  animation-delay: 1.2s;
}

.ring-c {
  width: 400px;
  height: 400px;
  animation-delay: 2.4s;
}

.invite-hero-phone {
  position: relative;
  transform: rotateY(-18deg) rotateX(10deg);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  animation: invitePhoneFloat 6s ease-in-out infinite;
  pointer-events: auto;
}

.invite-hero-stage:hover .invite-hero-phone {
  transform: rotateY(-10deg) rotateX(6deg) translateY(-6px);
}

.invite-phone-frame {
  width: 240px;
  height: 460px;
  background: #000000;
  border-radius: 40px;
  border: 8px solid #1a1a1a;
  padding: 8px;
  box-shadow: 
    0 0 60px rgba(14, 154, 255, 0.45),
    0 0 40px rgba(14, 154, 255, 0.3),
    0 0 20px rgba(145, 244, 244, 0.2),
    0 25px 65px rgba(5, 12, 22, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -2px 10px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
}

.invite-phone-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(60, 200, 255, 0.1), transparent 60%);
  pointer-events: none;
  border-radius: 40px;
}

.invite-phone-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  border-radius: 40px;
}

.invite-phone-notch {
  width: 120px;
  height: 20px;
  background: #050709;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 16px 16px;
  box-shadow: 
    inset 0 2px 8px rgba(0, 0, 0, 0.8),
    0 1px 3px rgba(60, 200, 255, 0.2);
  z-index: 10;
}

.invite-phone-screen {
  width: 100%;
  height: 100%;
  position: relative;
  background:
    radial-gradient(120% 90% at 20% 0%, rgba(58, 138, 255, 0.35), transparent 60%),
    radial-gradient(90% 70% at 80% 20%, rgba(0, 225, 255, 0.2), transparent 65%),
    linear-gradient(160deg, #0b1424 0%, #0a0f1a 45%, #050810 100%);
  border-radius: 30px;
  padding: 24px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  overflow-x: hidden;
}

.invite-phone-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 40%);
  pointer-events: none;
  border-radius: 30px;
  opacity: 0.6;
  z-index: 0;
}

.invite-phone-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 50% at 50% 90%, rgba(14, 154, 255, 0.18), transparent 70%);
  pointer-events: none;
  border-radius: 30px;
  opacity: 0.7;
  z-index: 0;
}

.invite-phone-screen > * {
  position: relative;
  z-index: 1;
}

.invite-screen-title {
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.24rem;
  color: rgba(145, 244, 244, 0.8);
}

.invite-screen-card {
  background: #f5fbff;
  color: #0b1b2b;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 14px 30px rgba(4, 18, 32, 0.25);
  flex: 0 0 auto;
  max-height: none;
  overflow: visible;
  transition: all 0.4s ease;
}

.invite-screen-card h3 {
  font-size: 1.05rem;
  margin: 0.4rem 0 0.6rem;
}

.invite-screen-card p {
  font-size: 0.82rem;
  color: #2a3b50;
  line-height: 1.4;
}

.invite-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

.invite-chip {
  background: #0e9aff;
  color: #ffffff;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-weight: 600;
}

.invite-time {
  color: rgba(14, 21, 33, 0.6);
  font-weight: 600;
}

.invite-card-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.invite-screen-card.expanded {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(4, 18, 32, 0.22);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.invite-options-section {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 0.8rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease 0.2s;
}

.invite-options-section.show {
  opacity: 1;
  transform: translateY(0);
}

.invite-confirmation-section {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 0.8rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease 0.2s;
}

.invite-confirmation-section.show {
  opacity: 1;
  transform: translateY(0);
}

.confirmation-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.8rem;
  gap: 0.6rem;
}

.confirmation-message p {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0a1b2b;
  line-height: 1.3;
  margin: 0;
}

.invite-reminder-section {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 0.8rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease 0.2s;
}

.invite-reminder-section.show {
  opacity: 1;
  transform: translateY(0);
}

.invite-add-reminder {
  padding: 0.6rem 1rem;
  background: linear-gradient(135deg, #0e9aff, #00d4ff);
  border: none;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(14, 154, 255, 0.3);
}

.invite-add-reminder:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 154, 255, 0.45);
}

.invite-add-reminder:active {
  transform: translateY(0);
}

.invite-option-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(135deg, rgba(14, 154, 255, 0.1), rgba(145, 244, 244, 0.08));
  border: 1px solid rgba(14, 154, 255, 0.25);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0a1b2b;
  cursor: pointer;
  transition: all 0.3s ease;
}

.invite-option-btn:hover {
  background: linear-gradient(135deg, rgba(14, 154, 255, 0.2), rgba(145, 244, 244, 0.15));
  border-color: rgba(14, 154, 255, 0.5);
}

.invite-option-btn:active {
  transform: scale(0.95);
}

.invite-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 0.8rem;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #2a3b50;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.4rem;
}

.invite-close-btn:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
}

.invite-close-btn:active {
  transform: scale(0.95);
}

@keyframes inviteButtonBlink {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(14, 154, 255, 0.35), 0 2px 8px rgba(14, 154, 255, 0.2);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 0 8px 4px rgba(14, 154, 255, 0.4), 0 3px 10px rgba(14, 154, 255, 0.25);
    filter: brightness(1.03);
  }
}

@keyframes cardExpand {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}

.invite-action {
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  text-align: center;
}

.invite-action.accept {
  animation: inviteButtonBlink 2.4s ease-in-out infinite;
  background: #0e9aff;
  color: #ffffff;
  box-shadow: 0 0 6px rgba(14, 154, 255, 0.25);
}

.invite-action.accept:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(14, 154, 255, 0.7);
}

.invite-action.accept:active {
  transform: scale(0.95);
}

.invite-action.maybe {
  background: #e6edf5;
  color: #2a3b50;
}

.invite-action.maybe:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(42, 59, 80, 0.3);
}

.invite-action.maybe:active {
  transform: scale(0.95);
}

.invite-action.accepted {
  background: #22c55e;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.6);
}

.invite-action.declined {
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
}

@keyframes invitePhoneFloat {
  0%, 100% {
    transform: rotateY(-18deg) rotateX(10deg) translateY(0);
  }
  50% {
    transform: rotateY(-16deg) rotateX(8deg) translateY(-8px);
  }
}

@keyframes inviteRingPulse {
  0%, 100% {
    transform: scale(0.96);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.9;
  }
}

@media (max-width: 1024px) {
  .hero--einvites .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .hero--einvites .hero-copy {
    order: 2;
  }

  .hero--einvites .hero-actions {
    justify-content: center;
  }

  .hero-invite-visual {
    min-height: 420px;
    order: 1;
  }

  .invite-hero-phone {
    transform: rotateY(0deg) rotateX(0deg);
    scale: 0.9;
  }

  .invite-action {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }

  .hero--visitors-registration .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .hero--visitors-registration .hero-copy {
    order: 2;
  }

  .hero--visitors-registration .hero-actions {
    justify-content: center;
  }

  .hero--accreditation .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .hero--accreditation .hero-copy {
    order: 2;
  }

  .hero--accreditation .hero-actions {
    justify-content: center;
  }

  .hero-accreditation-visual {
    min-height: 300px;
    order: 1;
  }

  .hero--access-control .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .hero--access-control .hero-copy {
    order: 2;
  }

  .hero--access-control .hero-actions {
    justify-content: center;
  }

  .hero-access-visual {
    min-height: auto;
    order: 1;
    overflow: visible;
  }

  .hero--access-control .scanner-device {
    width: 260px !important;
    height: 360px !important;
  }

  .hero--access-control .scanner-screen {
    width: 220px !important;
    height: 130px !important;
  }

  .hero--access-control .scanner-reader {
    width: 220px !important;
    height: 150px !important;
  }

  .hero--access-control .badge-holder {
    position: absolute;
    transform: translateY(-50%);
    margin: 0;
    z-index: 0;
    right: -50px;
    top: 50%;
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .hero--access-control .badge-holder.scanning {
    right: 50%;
    top: 30%;
    transform: translateX(50%) translateY(-50%);
  }

  .hero--access-control .scan-buttons-wrapper {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    display: flex !important;
    flex-direction: row;
    margin-top: 1.5rem !important;
    gap: 1rem !important;
    justify-content: center;
  }

  .hero--access-control .scan-trigger-btn {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.75rem !important;
  }

  .hero--access-control .scan-trigger-btn svg {
    width: 16px !important;
    height: 16px !important;
  }

  .hero--access-control .device-shadow {
    display: none !important;
  }
}

/* Desktop: Optimize buttons positioning */
@media (min-width: 1025px) and (max-width: 1280px) {
  .hero--access-control .scan-buttons-wrapper {
    bottom: -55px !important;
  }

  .hero--access-control .scan-trigger-btn {
    padding: 0.55rem 1.2rem !important;
    font-size: 0.75rem !important;
  }

  .hero--access-control .scan-trigger-btn svg {
    width: 16px !important;
    height: 16px !important;
  }
}

@media (min-width: 1281px) {
  .hero--access-control .scan-buttons-wrapper {
    bottom: -65px !important;
  }

  .hero--access-control .scan-trigger-btn {
    padding: 0.65rem 1.5rem !important;
    font-size: 0.8rem !important;
  }

  .hero--access-control .scan-trigger-btn svg {
    width: 18px !important;
    height: 18px !important;
  }
}

@media (max-width: 640px) {
  .invite-hero-stage {
    width: 300px;
    height: 420px;
  }

  .invite-phone-frame {
    width: 240px;
    height: 440px;
    border-radius: 32px;
  }

  .invite-phone-screen {
    padding: 20px 16px;
    gap: 0.8rem;
  }

  .invite-screen-title {
    font-size: 0.62rem;
    letter-spacing: 0.2rem;
  }

  .invite-screen-card {
    padding: 0.9rem;
    border-radius: 14px;
  }

  .invite-screen-card h3 {
    font-size: 0.95rem;
    margin: 0.5rem 0;
  }

  .invite-screen-card p {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .invite-card-meta {
    gap: 0.5rem;
  }

  .invite-chip {
    font-size: 0.6rem;
    padding: 0.25rem 0.6rem;
  }

  .invite-time {
    font-size: 0.65rem;
  }

  .invite-card-actions {
    gap: 0.6rem;
    margin-top: 0.6rem;
  }

  .invite-action {
    padding: 0.45rem 1rem !important;
    font-size: 0.8rem !important;
  }

  .invite-options-section {
    padding: 0.6rem 0;
    gap: 0.5rem;
    margin-top: 0.6rem;
  }

  .invite-option-btn {
    padding: 0.55rem 0.75rem;
    font-size: 0.7rem;
    gap: 0.5rem;
  }

  .invite-close-btn {
    padding: 0.45rem 0.7rem;
    font-size: 0.68rem;
    margin-top: 0.3rem;
  }

  .invite-screen-card.expanded {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(4, 18, 32, 0.28);
  }

  @keyframes cardExpandMobile {
    from {
      opacity: 1;
    }
    to {
      opacity: 1;
    }
  }
}

.invite-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.invite-intro p {
  color: rgba(230, 238, 247, 0.78);
}

.planning-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  margin-bottom: 1.2rem;
}

.planning-icon img {
  max-width: 140px;
  max-height: 140px;
  width: auto;
  height: auto;
  display: block;
}
.custom-layouts--default .custom-layouts-list article {
  background: rgba(8, 14, 24, 0.65);
  border: 1px solid rgba(60, 200, 255, 0.35);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 0 18px rgba(60, 200, 255, 0.3), 0 12px 30px rgba(5, 12, 22, 0.35);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.planning-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin-bottom: 1rem;
}

.planning-icon img {
  max-width: 100px;
  max-height: 100px;
  width: auto;
  height: auto;
  display: block;
}

.planning-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
:root {
  color-scheme: light;
  --bg: #0b0f17;
  --bg-light: #121826;
  --card: #151c2d;
  --text: #eef2f6;
  --muted: #a1a8b3;
  --accent: #3cc8ff;
  --accent-soft: rgba(60, 200, 255, 0.18);
  --border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  scroll-behavior: smooth;
}

body {
  font-family: "Figtree", system-ui, sans-serif;
  background: #0b0b12;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

#webgl {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

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

.container {
  width: min(1400px, 92vw);
  margin: 0 auto;
  max-width: 100%;
}

@media (max-width: 768px) {
  .container {
    width: min(1400px, 90vw);
  }
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 50;
  backdrop-filter: none;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  width: 100%;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 14, 24, 0.65);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(60, 200, 255, 0.15);
  box-shadow: 0 8px 32px rgba(60, 200, 255, 0.08), inset 0 1px 0 rgba(60, 200, 255, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1.5rem;
  position: relative;
}

.header-social {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(60, 200, 255, 0.35);
  color: #cfe7ff;
  background: rgba(8, 14, 24, 0.35);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.social-link:hover,
.social-link:focus-visible {
  color: #ffffff;
  border-color: rgba(60, 200, 255, 0.7);
  background: rgba(60, 200, 255, 0.2);
  box-shadow: 0 0 12px rgba(60, 200, 255, 0.35);
  outline: none;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.logo img {
  height: 28px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-nav a,
.site-nav .nav-link {
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(196, 202, 214, 0.9);
  transition: all 0.25s ease;
  position: relative;
}

.site-nav a:hover,
.site-nav .nav-link:hover {
  color: #e0f7ff;
  transform: translateY(-2px);
}

.site-nav a::after,
.site-nav button::after,
.site-nav .nav-link::after,
.nav-dropdown .dropdown-toggle::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -8px !important;
  width: 100% !important;
  height: 2px !important;
  background: linear-gradient(90deg, rgba(60, 200, 255, 0), rgba(60, 200, 255, 1), rgba(60, 200, 255, 0)) !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  backface-visibility: hidden !important;
  transition: transform 0.3s ease !important;
  border-radius: 2px !important;
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav a:focus-visible::after,
.site-nav button:hover::after,
.site-nav button.is-active::after,
.site-nav .nav-link:hover::after,
.site-nav .nav-link.is-active::after,
.nav-dropdown.open .dropdown-toggle::after,
.dropdown-toggle.is-active::after {
  transform: scaleX(1) !important;
}

.dropdown-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font: inherit;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(196, 202, 214, 0.9);
  position: relative;
  transition: all 0.25s ease;
}

.dropdown-toggle:hover {
  color: #e0f7ff;
  transform: translateY(-2px);
}

.solutions-services .service-dropdown .dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(60, 200, 255, 0), rgba(60, 200, 255, 1), rgba(60, 200, 255, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.solutions-services .service-dropdown .dropdown-toggle:hover::after,
.solutions-services .service-dropdown .dropdown-toggle:focus-visible::after {
  transform: scaleX(1) !important;
}

.dropdown-toggle.is-active {
  color: #ffffff;
}

.dropdown-toggle.is-active .dropdown-caret {
  color: #3cc8ff;
}

.dropdown-caret {
  display: inline-block;
  font-size: 1.1rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: rotate(0deg);
}

.dropdown-toggle:focus-visible {
  outline: 2px solid rgba(60, 200, 255, 0.6);
  outline-offset: 4px;
  border-radius: 6px;
}

.dropdown-toggle:hover .dropdown-caret,
.dropdown-toggle:focus-visible .dropdown-caret,
.nav-dropdown.open .dropdown-caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 240px;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(10, 15, 25, 0.96) 0%, rgba(20, 30, 45, 0.96) 100%);
  backdrop-filter: blur(30px);
  border: 1.5px solid rgba(60, 200, 255, 0.5);
  box-shadow: 0 0 40px rgba(60, 200, 255, 0.3), 0 20px 60px rgba(5, 12, 22, 0.6), inset 0 1px 0 rgba(60, 200, 255, 0.2);
  align-items: stretch;
  opacity: 0;
  transform: translateY(-15px);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dropdown-menu a {
  display: block;
  padding: 0.95rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.dropdown-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(60, 200, 255, 1), rgba(60, 200, 255, 0.5));
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: #ffffff;
  background: rgba(60, 200, 255, 0.2);
  box-shadow: 0 0 20px rgba(60, 200, 255, 0.35), inset 0 0 10px rgba(60, 200, 255, 0.1);
  transform: translateX(6px);
  outline: none;
}

.dropdown-menu a:hover::before,
.dropdown-menu a:focus-visible::before {
  transform: scaleY(1);
}

.dropdown-menu a.is-active {
  color: #ffffff;
  background: rgba(60, 200, 255, 0.25);
  border-left: 4px solid #3cc8ff;
  box-shadow: 0 0 24px rgba(60, 200, 255, 0.4), inset 0 0 15px rgba(60, 200, 255, 0.1);
  font-weight: 600;
  padding-left: 1rem;
}

.dropdown-menu a.is-active::before {
  transform: scaleY(1);
}

.nav-dropdown.open .dropdown-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.service-dropdown {
  position: relative;
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.5rem;
  z-index: 20;
}

.service-dropdown .dropdown-menu {
  top: auto;
  bottom: calc(100% + 0.6rem);
  left: 0;
  min-width: 240px;
  z-index: 30;
  transform: translateY(6px);
  position: absolute;
}

.service-menu {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.6rem 1.6rem 1.7rem;
  width: min(88vw, 360px);
  min-width: 240px;
  max-width: 360px;
  border-radius: 8px;
  background: rgba(60, 200, 255, 0.08);
  border: 1px solid rgba(60, 200, 255, 0.2);
  box-shadow: 0 0 24px rgba(60, 200, 255, 0.15), inset 0 0 1px rgba(60, 200, 255, 0.1);
  transition: all 0.3s ease;
  align-items: center;
  text-align: center;
}

#service-menu-apps {
  gap: 0.4rem;
}

#service-menu-apps .service-menu-options {
  margin-bottom: 0;
}

#service-menu-apps .service-menu-description {
  margin-top: 0;
}

.service-menu:hover {
  background: rgba(60, 200, 255, 0.12);
  border-color: rgba(60, 200, 255, 0.35);
  box-shadow: 0 0 32px rgba(60, 200, 255, 0.2), inset 0 0 1px rgba(60, 200, 255, 0.15);
}

.service-menu-title {
  width: 100%;
  flex-basis: 100%;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.service-menu-description {
  width: 100%;
  flex-basis: 100%;
  margin: 0;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

.service-menu-speedometer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  padding: 1rem 0 0.4rem;
}

.service-menu-gauge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, 
      rgba(20, 40, 70, 0.95) 0%,
      rgba(15, 30, 55, 0.9) 40%,
      rgba(10, 20, 40, 0.85) 100%);
  box-shadow: 
    0 0 24px rgba(60, 200, 255, 0.5),
    inset 0 2px 8px rgba(100, 220, 255, 0.4),
    inset 0 -2px 8px rgba(10, 20, 40, 0.8);
  position: relative;
  display: grid;
  place-items: center;
  border: 2px solid rgba(60, 180, 255, 0.5);
}

@keyframes dotBlink {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.service-menu-gauge::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: conic-gradient(from 180deg,
    rgba(60, 200, 255, 0.15) 0deg,
    rgba(80, 220, 255, 0.35) 90deg,
    rgba(60, 180, 255, 0.2) 180deg);
  border: 1px solid rgba(60, 200, 255, 0.3);
  box-shadow: inset 0 0 10px rgba(60, 200, 255, 0.3);
}

.service-menu-gauge-number {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 700;
  color: #7fbfff;
  animation: numberBlink 1.5s ease-in-out infinite;
}

/* Position numbers around gauge arc - bottom-left to bottom-right */
.service-menu-gauge-number:nth-child(1) {
  left: -8px;
  bottom: -8px;
}

.service-menu-gauge-number:nth-child(2) {
  left: 2px;
  top: -8px;
}

.service-menu-gauge-number:nth-child(3) {
  right: 2px;
  top: -8px;
}

.service-menu-gauge-number:nth-child(4) {
  right: -8px;
  bottom: -8px;
}

@keyframes numberBlink {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.service-menu-gauge-needle {
  position: absolute;
  width: 3px;
  height: 40px;
  background: linear-gradient(to bottom, #ffffff 0%, #e0f7ff 30%, #60c8ff 100%);
  box-shadow: 0 0 10px rgba(60, 200, 255, 0.8);
  transform-origin: bottom center;
  transform: rotate(225deg) translateZ(0);
  border-radius: 2px;
  transition: transform 1.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  top: 50%;
  left: 50%;
  margin-left: -1.5px;
  margin-top: -40px;
}

.nav-dropdown.open .service-menu-gauge-needle {
  transform: rotate(495deg) translateZ(0);
}

.service-menu-gauge-needle::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 30% 30%, rgba(200, 230, 255, 0.8), rgba(60, 180, 255, 0.9));
  border: 2px solid rgba(60, 200, 255, 0.7);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(60, 200, 255, 0.6), inset 0 0 4px rgba(100, 220, 255, 0.5);
}

.service-menu-meter-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: center;
}

.service-menu-meter-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: #d9f2ff;
  text-shadow: 0 0 10px rgba(60, 200, 255, 0.6);
}

.service-menu-options {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6rem 0 0;
  min-height: 0;
}

#service-menu-events .option-visual {
  width: 100px;
  height: 100px;
}

#service-menu-events .option-network {
  border: 2px solid rgba(60, 180, 255, 0.55);
  background: radial-gradient(circle at 50% 50%, rgba(20, 40, 70, 0.95) 0%, rgba(10, 20, 40, 0.95) 70%);
  box-shadow: 0 0 24px rgba(60, 200, 255, 0.5), inset 0 2px 8px rgba(100, 220, 255, 0.35), inset 0 -2px 8px rgba(10, 20, 40, 0.8);
}

#service-menu-events .network-line {
  stroke-width: 2.4;
  opacity: 0.9;
}

.service-menu-option {
  position: relative;
  display: flex;
  justify-items: center;
  padding-top: 0.6rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 12px;
  border: 0;
  background: transparent;
  box-shadow: none;
  min-height: 0;
  z-index: 1;
}

.option-number {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #7fbfff;
  border: 1px solid rgba(60, 200, 255, 0.35);
  background: rgba(10, 20, 38, 0.8);
  box-shadow: 0 0 8px rgba(60, 200, 255, 0.3);
}

.option-label {
  font-size: 0.72rem;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
}

.option-visual {
  width: 130px;
  height: 90px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(60, 200, 255, 0.08);
  border: 1px solid rgba(60, 200, 255, 0.2);
  box-shadow: 0 0 16px rgba(60, 200, 255, 0.1);
  will-change: auto;
  contain: layout style paint;
  transition: all 0.3s ease;
}

.option-visual:hover {
  background: rgba(60, 200, 255, 0.12);
  border-color: rgba(60, 200, 255, 0.35);
  box-shadow: 0 0 24px rgba(60, 200, 255, 0.15);
}

#service-menu-apps .option-visual {
  height: auto;
  background: transparent;
  border: none;
  box-shadow: none;
}

.option-checklist {
  border-radius: 10px;
  border: 1px dashed rgba(96, 200, 255, 0.35);
  background: rgba(10, 20, 40, 0.55);
}

.option-checklist .check {
  position: absolute;
  width: 14px;
  height: 8px;
  border-left: 3px solid #60c8ff;
  border-bottom: 3px solid #60c8ff;
  transform: rotate(-45deg);
  opacity: 0.6;
  animation: checkPulse 2.2s ease-in-out infinite;
}

.option-checklist .check-1 {
  top: 10px;
  left: 12px;
  animation-delay: 0s;
}

.option-checklist .check-2 {
  top: 24px;
  left: 32px;
  animation-delay: 0.25s;
}

.option-checklist .check-3 {
  top: 38px;
  left: 18px;
  animation-delay: 0.5s;
}

.option-stream {
  border-radius: 10px;
  border: 1px dashed rgba(96, 200, 255, 0.35);
  background: rgba(10, 20, 40, 0.55);
  overflow: hidden;
}

.option-stream .stream {
  position: absolute;
  height: 2px;
  background: #60c8ff;
  opacity: 0.5;
  border-radius: 2px;
  animation: streamMove 2.4s linear infinite;
}

.option-stream .stream-1 {
  top: 10px;
  left: 8px;
  width: 40px;
  animation-delay: 0s;
}

.option-stream .stream-2 {
  top: 22px;
  left: 18px;
  width: 50px;
  animation-delay: 0.4s;
}

.option-stream .stream-3 {
  top: 34px;
  left: 6px;
  width: 28px;
  animation-delay: 0.8s;
}

.option-stream .stream-4 {
  top: 46px;
  left: 26px;
  width: 36px;
  animation-delay: 1.2s;
}

.option-arc {
  border-radius: 50%;
  background: conic-gradient(from 200deg, rgba(96, 200, 255, 0.1) 0deg, rgba(96, 200, 255, 0.8) 60deg, rgba(96, 200, 255, 0.1) 120deg, rgba(96, 200, 255, 0.7) 180deg, rgba(96, 200, 255, 0.1) 260deg);
  mask: radial-gradient(circle, transparent 52%, #000 53%);
  animation: arcSpin 3.6s linear infinite;
}

.option-minibars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 60px;
  width: 100%;
}

.option-minibars span {
  width: 7px;
  border-radius: 4px;
  background: linear-gradient(180deg, #ffffff 0%, #60c8ff 100%);
  box-shadow: 0 0 8px rgba(96, 200, 255, 0.6);
  animation: miniBar 1.6s ease-in-out infinite;
}

.option-minibars span:nth-child(1) {
  height: 16px;
  animation-delay: 0s;
}

.option-minibars span:nth-child(2) {
  height: 30px;
  animation-delay: 0.2s;
}

.option-minibars span:nth-child(3) {
  height: 22px;
  animation-delay: 0.4s;
}

.option-minibars span:nth-child(4) {
  height: 34px;
  animation-delay: 0.6s;
}

.option-network {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 1px solid rgba(96, 200, 255, 0.45);
  background: rgba(12, 24, 44, 0.95);
  box-shadow: inset 0 0 12px rgba(96, 200, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.option-network .network-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.option-network .network-line {
  stroke: #a7e4ff;
  stroke-width: 2.2;
  stroke-linecap: round;
  opacity: 0.75;
  filter: drop-shadow(0 0 6px rgba(96, 200, 255, 0.7));
  animation: linePulse 2.2s ease-in-out infinite;
}

.option-network .web-diagonal {
  stroke-width: 1.8;
  opacity: 0.6;
  animation-delay: 0.3s;
}

.option-network .web-center {
  stroke-width: 1.5;
  opacity: 0.5;
  animation-delay: 0.6s;
}

.option-network .web-inner {
  stroke-width: 1.2;
  opacity: 0.4;
  animation-delay: 0.9s;
}

.option-network .network-node {
  fill: #60c8ff;
  filter: drop-shadow(0 0 8px rgba(96, 200, 255, 0.9));
}

.option-network .node-center {
  fill: #60c8ff;
  filter: drop-shadow(0 0 6px rgba(96, 200, 255, 0.8));
}

.option-network .network-rotate {
  transform-origin: 50% 50%;
  animation: none;
}

/* Screen/Coding Animation */
.option-screen {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: none;
}

.screen-svg {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
}

.screen-bezel {
  fill: rgba(20, 30, 45, 0.9);
  stroke: #a7e4ff;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 3px rgba(96, 200, 255, 0.4));
}

.screen-display {
  fill: rgba(8, 15, 25, 0.95);
  stroke: #60c8ff;
  stroke-width: 0.8;
}

.screen-stand {
  fill: #4a6fa5;
  stroke: #a7e4ff;
  stroke-width: 0.5;
}

.screen-base {
  fill: #3a5f95;
  stroke: #a7e4ff;
  stroke-width: 0.5;
}

.code-char {
  fill: #60c8ff;
  filter: drop-shadow(0 0 3px rgba(96, 200, 255, 0.7));
  font-weight: 600;
  letter-spacing: 0.9px;
}

.type-mask {
  fill: #ffffff;
  transform: scaleX(0);
  transform-origin: left center;
  transform-box: fill-box;
  animation: typingMask 3.2s steps(14, end) infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.mask-2 {
  animation-delay: 1.1s;
}

.mask-3 {
  animation-delay: 2.2s;
}

.mask-4 {
  animation-delay: 3.3s;
}


@keyframes typingMask {
  0% {
    transform: scaleX(0);
  }
  40% {
    transform: scaleX(1);
  }
  70% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

@keyframes checkPulse {
  0%, 100% {
    transform: rotate(-45deg) scale(0.9);
    opacity: 0.4;
  }
  50% {
    transform: rotate(-45deg) scale(1.1);
    opacity: 1;
  }
}

@keyframes streamMove {
  0% {
    transform: translateX(-6px);
    opacity: 0.25;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: translateX(10px);
    opacity: 0.35;
  }
}

@keyframes arcSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes miniBar {
  0%, 100% {
    transform: scaleY(0.7);
    opacity: 0.6;
  }
  50% {
    transform: scaleY(1.2);
    opacity: 1;
  }
}

@keyframes nodePulse {
  0%, 100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes linePulse {
  0%, 100% {
    opacity: 0.4;
    filter: drop-shadow(0 0 6px rgba(96, 200, 255, 0.6));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(96, 200, 255, 1));
  }
}

@keyframes networkRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes gradientSwing {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

@keyframes gradientSwingFast {
  0% {
    background-position: 0% center;
  }
  25% {
    background-position: 100% center;
  }
  50% {
    background-position: 0% center;
  }
  75% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.service-menu-cog {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 0;
}

.service-menu-cog-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  position: relative;
  background:
    radial-gradient(circle at 50% 50%, rgba(8, 16, 30, 0.95) 0 28%, transparent 29%),
    repeating-conic-gradient(from 0deg, rgba(96, 200, 255, 0.95) 0 10deg, rgba(96, 200, 255, 0.2) 10deg 20deg),
    radial-gradient(circle at 50% 50%, rgba(10, 20, 40, 0.95) 0 62%, rgba(5, 12, 24, 0.95) 63%);
  box-shadow: 0 0 18px rgba(96, 200, 255, 0.45), inset 0 0 12px rgba(96, 200, 255, 0.35);
  animation: cogSpin 3.2s linear infinite, cogGlow 2.4s ease-in-out infinite;
  animation-play-state: paused;
}

.service-menu-cog-icon::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 2px solid rgba(96, 200, 255, 0.5);
  box-shadow: inset 0 0 8px rgba(96, 200, 255, 0.35);
}

.service-menu-cog-icon::after {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(200, 230, 255, 0.9), rgba(60, 180, 255, 0.8));
  box-shadow: 0 0 10px rgba(96, 200, 255, 0.6);
}

.nav-dropdown.open .service-menu-cog-icon {
  animation-play-state: running;
}

@keyframes cogSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes cogGlow {
  0%, 100% {
    filter: drop-shadow(0 0 6px rgba(96, 200, 255, 0.35));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(96, 200, 255, 0.7));
  }
}


.service-menu-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  width: 100%;
}

.service-menu-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(60, 200, 255, 0.35);
  color: #cfe7ff;
  background: transparent;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
  overflow: visible;
}

.service-menu-links a::before {
  display: none !important;
}

.service-menu-links a:hover,
.service-menu-links a:focus-visible {
  color: #ffffff;
  border-color: rgba(60, 200, 255, 0.7);
  background: linear-gradient(135deg, rgba(60, 200, 255, 0.35), rgba(30, 110, 255, 0.35));
  box-shadow: 0 0 12px rgba(60, 200, 255, 0.35);
  outline: none;
  transform: none;
}
/* Apply same style to forms creator, badge designer, notifications tabs */
.custom-layouts--forms .custom-layouts-list article,
.custom-layouts--badge .custom-layouts-list article,
.custom-layouts--notifications .custom-layouts-list article,
.custom-layouts--e-badges .custom-layouts-list article {
  background: rgba(8, 14, 24, 0.65);
  border: 1px solid rgba(60, 200, 255, 0.35);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 0 18px rgba(60, 200, 255, 0.3), 0 12px 30px rgba(5, 12, 22, 0.35);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.nav-dropdown.open .dropdown-menu {
  display: flex;
}

.site-nav a:hover,
.site-nav .nav-highlight {
  color: var(--text);
}

.site-nav a.is-active {
  color: var(--text);
}

.nav-highlight {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-cta {
  margin-left: auto;
}

.site-header.is-scrolled .nav-highlight {
  background: var(--accent);
  color: #0b0f17;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  background: transparent;
  border: 0;
  position: relative;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 100vh;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: max(80px, 6vh);
  scroll-snap-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  justify-items: start;
  text-align: left;
  width: min(1400px, 92vw);
  margin: 0 auto;
  padding: clamp(2rem, 5vh, 3rem) clamp(1rem, 4vw, 2rem);
}

.hero-copy {
  max-width: 820px;
  margin: 0;
  width: 100%;
  position: static;
}

.hero-stat-box {
  position: absolute;
  bottom: clamp(2rem, 5vw, 4rem);
  right: clamp(2rem, 5vw, 4rem);
  z-index: 10;
}

.hero-stat-mobile {
  display: none;
}

.hero-stat-desktop {
  display: block;
}

.typing-text {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #eef2f6;
  font-weight: 600;
  line-height: 1.3;
  text-align: right;
  white-space: nowrap;
  font-family: 'Courier New', 'Roboto Mono', monospace;
  letter-spacing: 0.05em;
}

.typing-text .highlight {
  color: #3cc8ff;
  text-shadow: 0 0 20px rgba(60, 200, 255, 0.6),
               0 0 40px rgba(60, 200, 255, 0.4),
               0 0 60px rgba(60, 200, 255, 0.2);
  text-transform: uppercase;
}

.typing-text::after {
  content: '|';
  color: #3cc8ff;
  animation: blink 1s step-end infinite;
  margin-left: 4px;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .hero-stat-desktop {
    display: none;
  }
  
  .hero-stat-mobile {
    display: block;
    position: static;
    margin-top: clamp(3rem, 10vw, 5rem);
    width: 100%;
  }
  
  .typing-text {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    text-align: left;
  }
}

.hero-video {
  margin-top: 4rem;
}

.media-card {
  position: relative;
  border-radius: 28px;
  padding: 0;
  background: #10131b;
    border: none !important;
    height: 320px !important;
    max-width: 100% !important;
    object-fit: contain !important;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(90, 210, 255, 0.45), 0 20px 50px rgba(4, 10, 18, 0.6);
}

.media-glow {
  display: none;
}

.media-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #02050a;
  box-shadow: 0 0 18px rgba(90, 210, 255, 0.55);
  animation: videoGlow 3.5s ease-in-out infinite;
}

.media-frame video,
.media-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.45) 0%, rgba(5, 7, 13, 0.75) 100%);
  pointer-events: none;
}

.hero-video-caption {
  margin-top: 6rem;
  color: #ffffff;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  text-transform: uppercase;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  letter-spacing: 0.15em;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
}

.eyebrow-icon {
  width: 24px;
  height: 24px;
  display: block;
}

h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  font-weight: 500;
  color: #f3f6ff;
  margin-bottom: clamp(1rem, 1.8vw, 2rem);
}

.lead {
  color: #ffffff;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
  line-height: 1.6;
}

.lead .highlight-blue {
  color: #3cc8ff;
  font-weight: 700;
  font-family: 'Roboto Mono', 'Courier New', monospace;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.85rem, 1.5vw, 1.2rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  justify-content: flex-start;
}

.experience-filters {
  padding: 0.5rem 0;
}

.experience-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.experience-intro h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.experience-intro p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.experience-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  justify-content: center;
  margin: 1.5rem 0 1.5rem;
  flex-direction: column;
  align-items: center;
}

.experience-tabs .tab {
  background: transparent;
  border: 0;
  color: #c4cad6;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  padding: 0.7rem 0;
  position: relative;
  cursor: pointer;
  transition: color 0.25s ease;
  font-weight: 600;
}

.experience-tabs .tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(60, 200, 255, 0), rgba(60, 200, 255, 0.9), rgba(60, 200, 255, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.experience-tabs .tab:hover,
.experience-tabs .tab.active {
  color: #ffffff;
}

.experience-tabs .tab:hover::after,
.experience-tabs .tab.active::after {
  transform: scaleX(1);
}

.tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  justify-content: center;
}

.filter-label {
  font-size: clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, #ffffff 0%, #00BCFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 2rem 0;
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
}

.experience-tags {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.tag-button {
  border-radius: 999px;
  border: 1px solid rgba(60, 200, 255, 0.35);
  padding: 0.35rem 0.9rem;
  background: transparent;
  color: #cfe7ff;
  cursor: pointer;
  font-size: 0.85rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.tag-button:hover,
.tag-button:focus-visible,
.tag-button[aria-pressed="true"] {
  color: #ffffff;
  border-color: lab(75.75% -19.04 -37.51 / 0.7);
  background: linear-gradient(135deg, rgba(60, 200, 255, 0.35), rgba(30, 110, 255, 0.35));
  box-shadow: 0 0 12px rgba(60, 200, 255, 0.35);
  outline: none;
}

.tag-button.clear {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.experience-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.experience-filters label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
  color: #c2c9d6;
  font-size: 0.85rem;
}
.experience-filters select {
  background: rgba(10, 30, 60, 0.35);
  border: 1px solid rgba(60, 200, 255, 0.35);
  color: #ffffff;
  border-radius: 10px;
  padding: 0.5rem 0.8rem;
}

.experience-filters select[multiple] {
  min-height: 140px;
}

.experience-projects {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}

.experience-filters.section {
  padding: 0.5rem 0;
}

.clients {
  position: relative;
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  .clients {
    padding-bottom: 50px;
  }
}

.clients .section-heading {
  text-align: center;
}

.clients-note {
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff !important;
  opacity: 1;
  margin-bottom: 0.4rem;
}

.logo-carousel {
  position: relative;
  overflow: hidden;
  padding: 0.02rem 0 0.15rem;
  margin: -80px 0 0 0;
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 1;
  pointer-events: none;
  background: transparent;
}

.logo-carousel::before {
  left: 0;
}

.logo-carousel::after {
  right: 0;
}

.logo-track {
  display: flex;
  gap: 0.1rem;
  align-items: center;
  width: max-content;
  animation: logoScroll 82.5s linear infinite;
  padding: 0.1rem 0;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 0.05rem 0.1rem;
  opacity: 0.7;
  transition: opacity 0.08s ease, transform 0.08s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
  will-change: opacity, transform;
}

.logo-item img {
  max-height: 100px;
  width: auto;
  pointer-events: auto;
  filter: grayscale(100%);
  transition: filter 0.08s ease;
}

.logo-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

.logo-item:hover img {
  filter: none;
}

.solutions {
  position: relative;
  overflow: visible;
  background: transparent;
  z-index: 1;
}

.solutions-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.solutions-intro h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: clamp(0.85rem, 1.2vw, 1.2rem) 0 clamp(1rem, 1.5vw, 1.5rem);
  line-height: 1.1;
  color: #ffffff;
}

.gradient-perfect {
  background: linear-gradient(135deg, #0e9aff 0%, #91f4f4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solutions-intro p {
  color: #ffffff;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.solutions-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 12px;
  border: 2px solid transparent;
  background-image: 
    linear-gradient(rgba(10, 30, 60, 0.5), rgba(10, 30, 60, 0.5)),
    linear-gradient(135deg, #00BCFF, #3cc8ff, #1e6eff, #00BCFF);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: #f3f6ff;
  font-size: 0.85rem;
  text-transform: none;
}

.who-we-are-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 5rem;
}

.who-we-are-title h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, #ffffff 0%, #00BCFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 2rem 0;
  display: none;
}

.who-we-are-title {
  margin-left: 8rem;
}

.gradient-text {
  background: linear-gradient(135deg, #0e9aff 0%, #91f4f4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.headline-primary {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.1;
  color: #ffffff;
}

.section-content {
  color: #ffffff;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.headline-secondary {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-transform: capitalize;
}

.expertise-content .headline-secondary {
  margin-bottom: 0.5rem;
}

.expertise-content .section-content {
  margin-bottom: 2.5rem;
}

.business-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
  justify-content: flex-start;
  align-content: center;
  max-width: 400px;
}

.values-hint {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(60, 200, 255, 0.6);
  font-style: italic;
  animation: floatHint 3s ease-in-out infinite;
}

@keyframes floatHint {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-3px);
    opacity: 0.9;
  }
}

.value-button {
  position: relative;
  padding: 0.6rem 1rem;
  border-radius: 20px;
  background: rgba(60, 200, 255, 0.15);
  border: 2px solid rgba(60, 200, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  animation: float 6s ease-in-out infinite;
}

.value-button:nth-child(1) {
  animation-delay: 0s;
}

.value-button:nth-child(2) {
  animation-delay: 0.5s;
}

.value-button:nth-child(3) {
  animation-delay: 1s;
}

.value-button:nth-child(4) {
  animation-delay: 1.5s;
}

.value-button:nth-child(5) {
  animation-delay: 2s;
}

.value-button:nth-child(6) {
  animation-delay: 2.5s;
}

.value-button span {
  color: #00BCFF;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.value-button::before {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-0.8rem);
  background: rgba(0, 188, 255, 0.95);
  color: #ffffff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 188, 255, 0.4);
  z-index: 10;
}

.value-button:hover {
  background: rgba(60, 200, 255, 0.3);
  border-color: rgba(60, 200, 255, 0.8);
  box-shadow: 0 0 20px rgba(60, 200, 255, 0.5), inset 0 0 10px rgba(60, 200, 255, 0.1);
  transform: translateY(-6px) scale(1.08);
}

.value-button:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-0.8rem);
}



.why-choose-us-wrapper {
  margin-bottom: 0;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  position: relative;
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #00BCFF 50%, transparent 100%);
  box-shadow: 0 0 20px rgba(0, 188, 255, 0.8);
}

.stat-item:first-child::after {
  content: none;
}

.stat-item:last-child::before {
  display: block;
}

.stat-item h3 {
  font-size: clamp(3.5rem, 5vw, 5rem);
  color: #ffffff;
  margin: 0;
  display: inline;
  font-weight: 700;
}

.stat-number {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  order: 2;
  margin-bottom: 1.5rem;
}

.stat-symbol {
  color: #00BCFF;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
}

.stat-description {
  order: 3;
}

.stat-item p {
  color: #ffffff;
  font-size: 0.95rem;
  margin: 0;
}

.stat-item .stat-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #00BCFF;
}

.stat-item h3::before {
  content: none;
}

.solutions-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.process-choose-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
}

.process-column,
.choose-column {
  padding: 2rem;
}

.process-column h3,
.choose-column h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  margin-top: 0;
  font-weight: 700;
}

.process-column p,
.choose-column p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: #ffffff;
  line-height: 1.6;
}

.why-choose-us-title h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #ffffff;
  margin: 0 0 0 0;
  margin-bottom: 0.5rem;
}

.gradient-resources {
  background: linear-gradient(135deg, #0e9aff 0%, #91f4f4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-business {
  background: linear-gradient(135deg, #0e9aff 0%, #91f4f4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.expertise-wrapper {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

.expertise-content .section-content {
  color: #ffffff;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.expertise-content .content-highlight {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  grid-auto-rows: 1fr;
  overflow: visible;
  padding-top: 1rem;
  margin-top: -1rem;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    grid-auto-rows: 1fr;
    overflow: visible;
    padding-top: 1rem;
    margin-top: -1rem;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    grid-auto-rows: auto;
    overflow: visible;
    padding-top: 1rem;
    margin-top: -1rem;
  }
}

.feature-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 8px;
  background: rgba(60, 200, 255, 0.08);
  border: 1px solid rgba(60, 200, 255, 0.2);
  transition: all 0.3s ease;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: start;
  text-align: left;
  height: 100%;
  margin-top: 0.25rem;
}

.feature-card::before {
  content: none;
}

.feature-card:hover {
  background: rgba(60, 200, 255, 0.12);
  border-color: rgba(60, 200, 255, 0.35);
  box-shadow: 0 0 20px rgba(60, 200, 255, 0.3);
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  color: #3cc8ff;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.feature-card p {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.core-modules-features .feature-card {
  text-align: left;
  align-items: flex-start;
}

.core-modules-features .module-flow-toggle {
  margin-top: 0.85rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #3cc8ff;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
  border-bottom: 1px dashed #3cc8ff;
  transition: opacity 0.3s ease, border-bottom-style 0.3s ease;
}

.core-modules-features .module-flow-toggle:hover,
.core-modules-features .module-flow-toggle:focus-visible {
  border-bottom-style: solid;
  opacity: 0.8;
  outline: none;
}

/* Module flow toggle for other tab sections */
.features-grid .module-flow-toggle {
  margin-top: 0.85rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #3cc8ff;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
  border-bottom: 1px dashed #3cc8ff;
  transition: opacity 0.3s ease, border-bottom-style 0.3s ease;
}

.features-grid .module-flow-toggle:hover,
.features-grid .module-flow-toggle:focus-visible {
  border-bottom-style: solid;
  opacity: 0.8;
  outline: none;
}

.core-module-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.core-module-modal.is-active {
  display: block;
}

.core-module-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 24, 0.45);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.2s ease;
}

.core-module-modal__content {
  width: min(80vw, 500px);
  max-height: 75vh;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(60, 200, 255, 0.08);
  border: 1px solid rgba(60, 200, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(60, 200, 255, 0.3), 0 0 80px rgba(60, 200, 255, 0.15);
  padding: 1.75rem 1.75rem 1.5rem;
  overflow-y: auto;
  overflow-x: hidden;
  animation: coreModulePop 0.25s ease;
}

.core-module-modal__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(60, 200, 255, 0.35);
  background: rgba(60, 200, 255, 0.12);
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.core-module-modal__close:hover,
.core-module-modal__close:focus-visible {
  background: rgba(60, 200, 255, 0.25);
  border-color: rgba(60, 200, 255, 0.7);
  transform: rotate(90deg);
  outline: none;
}

.core-module-modal__title {
  margin: 0 0 1.5rem 0;
  color: #3cc8ff;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

.core-module-modal__media {
  border-radius: 14px;
  background: rgba(8, 14, 24, 0.6);
  padding: 1rem;
}

.core-module-modal__media img {
  width: 100%;
  height: min(45vh, 350px);
  object-fit: contain;
  display: block;
}

@media (max-width: 1024px) {
  .core-module-modal__content {
    padding: 1.5rem 1.5rem 1.25rem;
    width: 85vw;
    max-height: 75vh;
  }

  .core-module-modal__media img {
    height: auto;
    max-height: 40vh;
  }
}

@media (max-width: 768px) {
  .core-module-modal__content {
    padding: 2rem 1.5rem 1.5rem;
    width: 95vw;
    max-height: 85vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .core-module-modal__media {
    padding: 0.75rem;
  }

  .core-module-modal__media img {
    height: auto;
    max-height: 45vh;
  }

  .core-module-modal__title {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }

  .core-module-modal__close {
    width: 36px;
    height: 36px;
    font-size: 1.6rem;
    top: 1rem;
    right: 1rem;
  }
}

@keyframes coreModulePop {
  from {
    opacity: 0;
    transform: translate(-50%, -46%) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

/* Performance/Speedometer animations */
.gauge-needle {
  animation: gaugeSwing 2s ease-in-out infinite;
  transform-origin: 50px 65px;
}

.gauge-pulse {
  animation: gaugePulse 2s ease-in-out infinite;
}

/* Support/Cog animations */
.cog-rotate {
  animation: cogSpin 3s linear infinite;
  transform-origin: 50px 50px;
}

/* Trust/Eye animations */
.pupil-move {
  animation: pupilWander 3s ease-in-out infinite;
}

.eye-rays {
  animation: raysFlash 1.5s ease-in-out infinite;
  opacity: 0.4;
}

@keyframes gaugeSwing {
  0%, 100% {
    transform: rotate(-35deg);
  }
  50% {
    transform: rotate(35deg);
  }
}

@keyframes gaugePulse {
  0%, 100% {
    r: 6;
    opacity: 0.6;
  }
  50% {
    r: 10;
    opacity: 0.2;
  }
}

@keyframes gaugeSwing {
  0%, 100% {
    transform: rotate(-35deg);
  }
  50% {
    transform: rotate(35deg);
  }
}

@keyframes cogSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes handshakeleft {
  0%, 100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}

@keyframes handshakeright {
  0%, 100% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
}

@keyframes supportleft {
  0%, 100% {
    transform: translateX(-2px) rotate(-2deg);
  }
  50% {
    transform: translateX(2px) rotate(2deg);
  }
}

@keyframes supportright {
  0%, 100% {
    transform: translateX(2px) rotate(2deg);
  }
  50% {
    transform: translateX(-2px) rotate(-2deg);
  }
}

@keyframes gripFlash {
  0%, 100% {
    stroke-width: 2.5;
    opacity: 0.6;
  }
  50% {
    stroke-width: 3.5;
    opacity: 1;
  }
}

@keyframes pulseGrow {
  0%, 100% {
    r: 16;
    opacity: 0.2;
  }
  50% {
    r: 24;
    opacity: 0;
  }
}

@keyframes borderGlow {
  0% {
    box-shadow: 0 0 5px rgba(60, 200, 255, 0.3), inset 0 0 20px rgba(60, 200, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 20px rgba(60, 200, 255, 0.6), 0 0 40px rgba(60, 200, 255, 0.3), inset 0 0 20px rgba(60, 200, 255, 0.1);
  }
}

@keyframes pupilWander {
  0%, 100% {
    cx: 50;
    cy: 50;
  }
  25% {
    cx: 58;
    cy: 50;
  }
  50% {
    cx: 50;
    cy: 58;
  }
  75% {
    cx: 42;
    cy: 50;
  }
}

@keyframes raysFlash {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.8;
  }
}

.feature-card:hover {
  border-color: rgba(60, 200, 255, 1);
  box-shadow: 0 0 20px rgba(60, 200, 255, 0.6), 0 0 40px rgba(60, 200, 255, 0.3);
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  color: #3cc8ff;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.feature-card p {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

.divider-line {
  width: 3px;
  height: 250px;
  background: linear-gradient(180deg, transparent 0%, #00BCFF 50%, transparent 100%);
  box-shadow: 0 0 20px rgba(0, 188, 255, 0.8);
}

.service-card {
  position: relative;
  border-radius: 16px;
  padding: 0;
  min-height: 500px;
  background: #1c1f2b;
  overflow: visible;
  z-index: 1;
  will-change: z-index;
}

.service-card:hover,
.service-card:focus-within {
  z-index: 60;
}

.service-card::before,
.service-card::after {
  content: '';
  position: absolute;
  background-image: conic-gradient(from var(--angle), transparent 90%, #00BCFF);
  inset: 0;
  margin: -1px;
  z-index: 1;
  border-radius: 20px;
  animation: spin 15s linear infinite;
  pointer-events: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.service-card::after {
  filter: blur(1.5rem);
  z-index: 0;
}

@keyframes spin {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}

.service-card-inner {
  position: relative;
  min-height: 500px;
  border-radius: 14px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  margin: 1px;
  z-index: 5;
  transform: none;
  background: #1c1f2b;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(25%);
  pointer-events: none;
  z-index: 1;
}

.service-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 50, 80, 0.2) 0%, rgba(5, 8, 15, 0.98) 100%);
  border-radius: 14px;
}

.service-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.service-media {
  display: none;
}

.service-card-content h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin: 0 0 1rem 0;
  color: #f3f6ff;
}

.service-card-content p {
  color: #ffffff;
  margin-bottom: 1.5rem;
  flex: 1;
}

@media (max-width: 1024px) {
  .solutions-services {
    grid-template-columns: 1fr;
  }

  .statistics-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    min-height: auto;
    padding: 1.5rem;
  }

  .stat-item::before {
    left: 1.5rem;
    right: 1.5rem;
  }

  .who-we-are-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .who-we-are-wrapper .who-we-are-title {
    order: 2;
    margin-left: 0;
    text-align: center;
  }
  
  .who-we-are-wrapper .who-we-are-title h2 {
    display: none;
  }
  
  .who-we-are-wrapper .who-we-are-content {
    order: 1;
    text-align: center;
  }
  
  .business-values {
    justify-content: center;
  }
  .process-choose-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .divider-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #00BCFF 50%, transparent 100%);
  }
}

.solution-content h3 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  margin: clamp(0.8rem, 1.1vw, 1rem) 0 clamp(0.7rem, 1vw, 0.9rem);
}

.solution-content .solution-pill {
  margin-bottom: 0.6rem;
}

.solution-content p {
  color: #c2c9d6;
  margin-bottom: 1.2rem;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.solution-tags a {
  font-family: 'Courier New', 'Roboto Mono', monospace !important;
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  color: #ffffff !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-right: 0.5rem !important;
  margin-bottom: 0 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
  display: inline !important;
}

.service-card-content .service-tags a {
  font-family: 'Courier New', 'Roboto Mono', monospace !important;
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  color: #ffffff !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-right: 0.5rem !important;
  margin-bottom: 0 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
  display: inline !important;
}

.solution-tags a:hover {
  color: #3cc8ff !important;
}

.service-button {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(60, 200, 255, 0.35);
  color: #cfe7ff;
  background: transparent;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.service-button:hover,
.service-button:focus-visible {
  color: #ffffff;
  border-color: rgba(60, 200, 255, 0.7);
  background: linear-gradient(135deg, rgba(60, 200, 255, 0.35), rgba(30, 110, 255, 0.35));
  box-shadow: 0 0 12px rgba(60, 200, 255, 0.35);
  outline: none;
}

@media (max-width: 960px) {
  .solutions-intro {
    text-align: left;
  }

  .solution-row {
    grid-template-columns: 1fr;
  }

  .solution-row.reverse {
    direction: ltr;
  }

  .solution-media img {
    max-width: 60%;
  }
}

@media (max-width: 640px) {
  .solutions-intro h2 {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .solution-content h3 {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .solution-tags {
    gap: 0.5rem;
  }
}

.work {
  background: transparent;
}

.work-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.work-left {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  padding-top: 2rem;
  position: sticky;
  top: 60px;
  height: fit-content;
  align-self: start;
}

.work-left h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  background: linear-gradient(135deg, #ffffff 0%, #3cc8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.work-left p {
  color: #c2c9d6;
  line-height: 1.75;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.work-right {
  position: relative;
  padding: 1rem;
}

.work-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.work-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, rgba(60, 200, 255, 0.3), rgba(60, 200, 255, 0.1));
  top: 0;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }

.timeline-left {
  flex-direction: row;
}

.timeline-left .timeline-card {
  text-align: right;
}

.timeline-right {
  flex-direction: row-reverse;
}

.timeline-right .timeline-card {
  text-align: left;
}

.timeline-card {
  flex: 1;
  background: linear-gradient(135deg, rgba(20, 35, 60, 0.8) 0%, rgba(7, 20, 40, 0.6) 100%);
  border: 1px solid rgba(60, 200, 255, 0.3);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(60, 200, 255, 0.8), rgba(0, 188, 255, 0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timeline-card:hover::before {
  opacity: 1;
}

.timeline-card:hover {
  border-color: rgba(60, 200, 255, 0.7);
  background: linear-gradient(135deg, rgba(20, 35, 60, 0.95) 0%, rgba(7, 20, 40, 0.8) 100%);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(60, 200, 255, 0.25);
}

.timeline-card h4 {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.project-year {
  color: #3cc8ff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 0.8rem 0;
}

.project-category {
  color: rgba(60, 200, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0.8rem 0;
}

.project-desc {
  color: #c2c9d6;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: rgba(60, 200, 255, 0.8);
  border: 3px solid rgba(12, 18, 30, 1);
  border-radius: 50%;
  top: 2.2rem;
  z-index: 10;
  transition: all 0.3s ease;
}

.timeline-item:hover::after {
  width: 16px;
  height: 16px;
  background: #3cc8ff;
  box-shadow: 0 0 12px rgba(60, 200, 255, 0.6);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes waveAnimation {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 200;
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes waveFlow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 500;
  }
}

/* Horizontal Timeline Styles */
.work-horizontal {
  padding-bottom: 0.5rem;
}

.work-header-horizontal {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.work-header-horizontal h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
 

.work-header-horizontal p {
  color: #ffffff;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.6;
} margin: clamp(0.85rem, 1.2vw, 1.2rem) 0 clamp(1rem, 1.5vw, 1.5rem);
  line-height: 1.1;
  color: #ffffff;
}

.gradient-experience {
  background: linear-gradient(135deg, #0e9aff 0%, #91f4f4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.work-header-horizontal p {
  color: #ffffff;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  font-weight: 400;
}

.horizontal-timeline-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.timeline-scroll-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(60, 200, 255, 0.15);
  border: 1px solid rgba(60, 200, 255, 0.4);
  color: #3cc8ff;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.timeline-scroll-btn:hover {
  background: rgba(60, 200, 255, 0.3);
  border-color: rgba(60, 200, 255, 0.8);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(60, 200, 255, 0.4);
}

.horizontal-timeline {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
}

.wave-line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  z-index: 1;
  pointer-events: none;
}

.wave-path {
  stroke: rgba(60, 200, 255, 0.2);
  stroke-width: 4;
  filter: drop-shadow(0 0 10px rgba(60, 200, 255, 0.15)) drop-shadow(0 0 20px rgba(60, 200, 255, 0.1));
  transform-origin: center;
  transition: transform 0.15s ease-out;
}

.horizontal-timeline-track {
  display: flex;
  gap: 2rem;
  padding: 0 2rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  position: relative;
  z-index: 2;
  height: 100%;
  align-items: center;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
}

.horizontal-timeline-track::-webkit-scrollbar {
  height: 0;
  display: none;
}

.horizontal-timeline-track {
  scrollbar-width: none;
}

.h-timeline-item {
  flex-shrink: 0;
  width: 260px;
  position: relative;
  animation: slideInFromLeft 0.8s ease forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.h-timeline-item:nth-child(1) { animation-delay: 0.1s; }
.h-timeline-item:nth-child(2) { animation-delay: 0.2s; }
.h-timeline-item:nth-child(3) { animation-delay: 0.3s; }
.h-timeline-item:nth-child(4) { animation-delay: 0.4s; }
.h-timeline-item:nth-child(5) { animation-delay: 0.5s; }
.h-timeline-item:nth-child(6) { animation-delay: 0.6s; }

.h-timeline-above {
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 5rem;
}

.h-timeline-above .h-timeline-card {
  margin-bottom: 0;
}

.h-timeline-below {
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 5rem;
}

.h-timeline-below .h-timeline-card {
  margin-top: 0;
}

.h-timeline-stagger-1 { display: none; }
.h-timeline-stagger-2 { display: none; }
.h-timeline-stagger-3 { display: none; }
.h-timeline-stagger-4 { display: none; }
.h-timeline-stagger-5 { display: none; }
.h-timeline-stagger-6 { display: none; }

.h-timeline-dot {
  width: 14px;
  height: 14px;
  background: rgba(60, 200, 255, 0.8);
  border: 3px solid rgba(12, 18, 30, 1);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.h-timeline-item:hover .h-timeline-dot {
  width: 18px;
  height: 18px;
  background: #3cc8ff;
  box-shadow: 0 0 15px rgba(60, 200, 255, 0.8);
}

.h-timeline-card {
  background: rgba(60, 200, 255, 0.08);
  border: 1px solid rgba(60, 200, 255, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  flex: 0 0 auto;
}

.h-timeline-item:hover .h-timeline-card {
  background: rgba(60, 200, 255, 0.12);
  border-color: rgba(60, 200, 255, 0.35);
}

.h-timeline-card h4 {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 700;
  margin: 0.5rem 0 0.5rem 0;
}

.card-logo {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.work-horizontal .project-year {
  color: #3cc8ff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0.4rem 0;
}

.work-horizontal .project-category {
  color: rgba(60, 200, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.work-horizontal .project-desc {
  display: none;
}

.work-horizontal .service-button {
  display: block;
  width: fit-content;
  margin: 2rem auto 0;
}

.work-card {
  position: relative;
  border: 1px solid rgba(60, 200, 255, 0.3);
  border-radius: 16px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.work-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  z-index: 0;
}

.work-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 40%, transparent 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

.work-card:hover::before {
  filter: grayscale(0%);
}

.work-card:hover::after {
  background: linear-gradient(to top, rgba(0, 60, 100, 0.95) 0%, rgba(60, 200, 255, 0.4) 50%, transparent 100%);
}

.work-card:hover {
  border-color: rgba(60, 200, 255, 0.7);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(60, 200, 255, 0.25);
}

.work-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.work-card-content h3 {
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.work-card-content .project-year {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0.2rem 0 0 0;
}

.work-card-content .project-scope {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.work-card-content .project-city {
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(60, 200, 255, 0.9);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.work-card-content .project-city::before {
  content: '📍';
  font-size: 0.85rem;
}

.work-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.slider-controls {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.slider-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(60, 200, 255, 0.1);
  border: 1px solid rgba(60, 200, 255, 0.35);
  color: #3cc8ff;
  font-size: 1.8rem;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
  padding-bottom: 2px;
}

.slider-btn:hover:not(:disabled) {
  background: rgba(60, 200, 255, 0.25);
  border-color: rgba(60, 200, 255, 0.6);
  transform: scale(1.08);
}

.slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pagination {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.pagination-btn {
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(60, 200, 255, 0.1);
  border: 1px solid rgba(60, 200, 255, 0.35);
  color: #c4cad6;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0 0.8rem;
}

.pagination-btn:hover:not(:disabled):not(.active) {
  background: rgba(60, 200, 255, 0.2);
  border-color: rgba(60, 200, 255, 0.6);
  color: #ffffff;
}

.pagination-btn.active {
  background: linear-gradient(135deg, rgba(60, 200, 255, 0.35), rgba(30, 110, 255, 0.35));
  border-color: rgba(60, 200, 255, 0.7);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(60, 200, 255, 0.35);
}

.pagination-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Project Modal Styles */
.project-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: visible;
}

.project-modal.active {
  display: block;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative;
  width: 95%;
  max-width: 1200px;
  max-height: 92vh;
  margin: 4vh auto;
  background: rgba(60, 200, 255, 0.08);
  border: 1px solid rgba(60, 200, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  animation: slideUp 0.4s ease;
  box-shadow: 0 0 32px rgba(60, 200, 255, 0.15), inset 0 0 1px rgba(60, 200, 255, 0.1);
  transition: all 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 45px;
  height: 45px;
  background: rgba(60, 200, 255, 0.1);
  border: 1px solid rgba(60, 200, 255, 0.35);
  border-radius: 50%;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(60, 200, 255, 0.2);
  border-color: rgba(60, 200, 255, 0.5);
  box-shadow: 0 0 12px rgba(60, 200, 255, 0.3);
  transform: rotate(90deg);
}

.modal-content:hover {
  background: rgba(60, 200, 255, 0.12);
  border-color: rgba(60, 200, 255, 0.35);
  box-shadow: 0 0 40px rgba(60, 200, 255, 0.2), inset 0 0 1px rgba(60, 200, 255, 0.15);
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 3rem;
  max-height: 92vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(60, 200, 255, 0.8) rgba(15, 25, 45, 0.3);
}

/* Webkit scrollbar styling (Chrome, Safari, Edge) */
.modal-body::-webkit-scrollbar {
  width: 10px;
}

.modal-body::-webkit-scrollbar-track {
  background: rgba(15, 25, 45, 0.3);
  border-radius: 5px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: rgba(60, 200, 255, 0.8);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(60, 200, 255, 0.6);
  transition: all 0.3s ease;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(60, 200, 255, 1);
  box-shadow: 0 0 20px rgba(60, 200, 255, 0.9);
}

@media (max-width: 1400px) {
  .modal-body {
    gap: 2rem;
    padding: 2rem;
  }
}

@media (max-width: 1024px) {
  .modal-body {
    gap: 2rem;
    padding: 2rem;
  }
}

.modal-gallery {
  width: 100%;
  display: block;
  visibility: visible;
}

.project-images-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1rem;
  width: 100%;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 200px;
  background: transparent;
}

.project-image-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(60, 200, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(60, 200, 255, 0.08);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  box-shadow: 0 0 16px rgba(60, 200, 255, 0.1);
}

.project-image-item:hover {
  border-color: rgba(60, 200, 255, 0.35);
  background: rgba(60, 200, 255, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(60, 200, 255, 0.15);
}

.project-image-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block !important;
  transition: transform 0.3s ease;
  visibility: visible !important;
  opacity: 1 !important;
}

.project-image-item:hover img {
  transform: scale(1.05);
}

.project-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image-item:hover .project-image-overlay {
  opacity: 1;
}

.project-image-overlay svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
  .project-images-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .project-images-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

.modal-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.modal-details h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}

.modal-meta {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin: 0.8rem 0;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(60, 200, 255, 0.3);
  flex-wrap: wrap;
}

.meta-section {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex-shrink: 0;
  padding: 1rem;
  background: rgba(60, 200, 255, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(60, 200, 255, 0.2);
  transition: all 0.3s ease;
}

.meta-section:hover {
  background: rgba(60, 200, 255, 0.12);
  border-color: rgba(60, 200, 255, 0.35);
  box-shadow: 0 0 16px rgba(60, 200, 255, 0.1);
}

.meta-value {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
}

.meta-item {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-item::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #3cc8ff;
  border-radius: 50%;
}

.modal-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 1.05rem;
}

.modal-description p {
  margin: 0 0 1rem 0;
}

.modal-description p:last-child {
  margin-bottom: 0;
}

.modal-description ul,
.modal-description ol {
  margin: 0 0 1rem 1.5rem;
  padding: 0;
}

.modal-description li {
  margin: 0.5rem 0;
}

.modal-description strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.modal-description em {
  font-style: italic;
}

.modal-description a {
  color: #3cc8ff;
  text-decoration: underline;
}

.modal-description a:hover {
  color: #ffffff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .modal-body {
    gap: 2rem;
    padding: 2rem;
  }

  .modal-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }
}

@media (max-width: 640px) {
  .modal-content {
    width: 95%;
    max-height: 95vh;
    margin: 2.5vh auto;
  }

  .modal-body {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .modal-details h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .work-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .work-slider-track {
    grid-template-columns: 1fr;
  }
}

/* Modal Navigation Arrows */
.modal-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: rgba(60, 200, 255, 0.08);
  border: 1px solid rgba(60, 200, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
  opacity: 1;
  box-shadow: 0 0 16px rgba(60, 200, 255, 0.1);
}

.modal-nav:hover {
  background: rgba(60, 200, 255, 0.12);
  border-color: rgba(60, 200, 255, 0.35);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 24px rgba(60, 200, 255, 0.15);
}

.modal-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.modal-nav svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.modal-nav-prev {
  left: calc((100vw - 1200px) / 2 - 80px);
}

.modal-nav-next {
  right: calc((100vw - 1200px) / 2 - 80px);
}



/* Image Lightbox */
.image-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999 !important;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  pointer-events: none;
}

.image-lightbox.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  cursor: pointer;
  z-index: 999998 !important;
  pointer-events: auto;
}

.lightbox-image,
#lightboxImage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  z-index: 999999 !important;
  max-width: 80vw;
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  cursor: grab;
  pointer-events: auto;
  background: none !important;
  border: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  transition: opacity 0.15s ease;
}

.lightbox-image.dragging,
#lightboxImage.dragging {
  cursor: grabbing;
}

.lightbox-close-button {
  position: absolute;
  top: 6rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  background: rgba(20, 30, 50, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(60, 200, 255, 0.25);
  border-radius: 50%;
  color: #3cc8ff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000001 !important;
  pointer-events: auto;
}

.lightbox-close-button:hover {
  background: rgba(255, 60, 60, 0.2);
  border-color: rgba(255, 60, 60, 0.5);
  box-shadow: 0 0 12px rgba(255, 60, 60, 0.3);
  transform: rotate(90deg);
}

.lightbox-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  background: rgba(20, 30, 50, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(60, 200, 255, 0.25);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 1000000 !important;
  pointer-events: auto;
}

.lightbox-control-btn {
  width: 36px;
  height: 36px;
  background: rgba(60, 200, 255, 0.1);
  border: 1px solid rgba(60, 200, 255, 0.3);
  border-radius: 50%;
  color: #3cc8ff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lightbox-control-btn:hover {
  background: rgba(60, 200, 255, 0.2);
  border-color: rgba(60, 200, 255, 0.5);
  box-shadow: 0 0 12px rgba(60, 200, 255, 0.3);
}

.lightbox-control-btn svg {
  pointer-events: none;
}

.zoom-display {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.zoom-percentage {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3cc8ff;
  min-width: 50px;
  text-align: center;
}

.zoom-slider {
  width: 150px;
  height: 4px;
  background: rgba(60, 200, 255, 0.2);
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.zoom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: #3cc8ff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(60, 200, 255, 0.6);
  transition: all 0.2s ease;
}

.zoom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(60, 200, 255, 0.8);
}

.zoom-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #3cc8ff;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 8px rgba(60, 200, 255, 0.6);
  transition: all 0.2s ease;
}

.zoom-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(60, 200, 255, 0.8);
}

@media (max-width: 1024px) {
  .lightbox-image {
    max-width: 85vw;
    max-height: 70vh;
  }
}

@media (max-width: 768px) {
  .lightbox-image {
    max-width: 90vw;
    max-height: 65vh;
  }
  
  .lightbox-controls {
    bottom: 1rem;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }
  
  .zoom-slider {
    width: 100px;
  }
  
  .lightbox-control-btn {
    width: 32px;
    height: 32px;
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(255, 60, 60, 0.8);
  border-color: rgba(255, 60, 60, 0.7);
  transform: rotate(90deg) scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(20, 30, 50, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(60, 200, 255, 0.25);
  border-radius: 50%;
  color: #3cc8ff;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 5;
}

.lightbox-nav:hover {
  background: rgba(60, 200, 255, 0.3);
  border-color: rgba(60, 200, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 16px rgba(60, 200, 255, 0.4);
}

.lightbox-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.lightbox-nav svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.lightbox-nav-prev {
  left: 30px;
}

.lightbox-nav-next {
  right: 30px;
}

.lightbox-counter {
  padding: 10px 20px;
  background: rgba(20, 30, 50, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(60, 200, 255, 0.25);
  border-radius: 20px;
  color: #3cc8ff;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .lightbox-image,
  #lightboxImage {
    max-width: 85vw;
    max-height: 70vh;
  }
  
  .lightbox-nav {
    width: 50px;
    height: 50px;
  }
  
  .lightbox-nav-prev {
    left: 15px;
  }
  
  .lightbox-nav-next {
    right: 15px;
  }
  
  .lightbox-close-button {
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
  }
  
  .zoom-slider {
    width: 100px;
  }
}

@media (max-width: 768px) {
  .lightbox-image,
  #lightboxImage {
    max-width: 90vw;
    max-height: 65vh;
  }
  
  .lightbox-bottom-controls {
    bottom: 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .lightbox-controls {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }
  
  .zoom-slider {
    width: 80px;
  }
  
  .lightbox-nav {
    width: 44px;
    height: 44px;
  }
  
  .lightbox-nav-prev {
    left: 10px;
  }
  
  .lightbox-nav-next {
    right: 10px;
  }
}

/* Modal Transition Effect */
.project-modal .modal-content.transitioning {
  opacity: 0.5;
  pointer-events: none;
}

/* Responsive Adjustments for Modal Navigation */
@media (max-width: 1750px) {
  .modal-nav-prev {
    left: 20px;
  }
  
  .modal-nav-next {
    right: 20px;
  }
}

@media (max-width: 1400px) {
  .modal-content {
    max-width: 1100px;
    margin: 5vh auto;
  }
}

@media (max-width: 1200px) {
  .modal-content {
    max-width: 95%;
    margin: 5vh auto;
  }
  
  .modal-nav-prev {
    left: 15px;
  }
  
  .modal-nav-next {
    right: 15px;
  }
}

@media (max-width: 1024px) {
  .modal-content {
    max-width: 90%;
    max-height: 95vh;
  }
  
  .modal-body {
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .modal-nav {
    width: 40px;
    height: 40px;
  }
  
  .modal-nav svg {
    width: 20px;
    height: 20px;
  }
  
  .modal-meta {
    gap: 1.5rem;
  }
  
  .image-zoom-btn {
    width: 38px;
    height: 38px;
    bottom: 10px;
    right: 10px;
  }
  
  .image-zoom-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .lightbox-nav {
    width: 50px;
    height: 50px;
  }
  
  .lightbox-nav-prev {
    left: 15px;
  }
  
  .lightbox-nav-next {
    right: 15px;
  }
  
  .lightbox-close {
    width: 44px;
    height: 44px;
    top: 15px;
    right: 15px;
    font-size: 1.7rem;
  }
  
  .lightbox-counter {
    bottom: 20px;
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .modal-nav-prev,
  .modal-nav-next {
    display: none;
  }
  
  .lightbox-nav {
    width: 44px;
    height: 44px;
  }
  
  .lightbox-nav-prev {
    left: 10px;
  }
  
  .lightbox-nav-next {
    right: 10px;
  }
}

.stats {
  background: transparent;
}

.stats-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

.stats-copy h2 {
  font-size: clamp(1.6rem, 3.5vw, 3.2rem);
  margin-bottom: clamp(0.85rem, 1.5vw, 1.5rem);
}

.stats-copy p {
  color: #c2c9d6;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.stats-cards article {
  background: linear-gradient(135deg, rgba(60, 200, 255, 0.35), rgba(30, 110, 255, 0.35));
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 0 22px rgba(60, 200, 255, 0.4), 0 20px 40px rgba(2, 12, 24, 0.35);
}

.stats-cards h3 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
}

.stat-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stats-cards p {
  color: #d7deea;
}

.testimonials {
  background: transparent;
}

.testimonial-carousel {
  backdrop-filter: none;
  position: relative;
  display: flex;
  background: transparent;
}

.testimonial-track {
  flex: 1;
  display: flex;
  justify-content: center;
}

.testimonial-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(60, 200, 255, 0.18);
  border: 1px solid rgba(60, 200, 255, 0.35);
  margin-bottom: 1rem;
}

.testimonial-quote {
  color: #d7deea;
  margin-bottom: 1.2rem;
}

.testimonial-name {
  font-weight: 600;
  color: #ffffff;
}

.testimonial-role {
  color: #c2c9d6;
  font-size: 0.9rem;
}

.testimonial-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(60, 200, 255, 0.35);
  background: rgba(10, 30, 60, 0.4);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-arrow:hover {
  background: linear-gradient(135deg, rgba(60, 200, 255, 0.35), rgba(30, 110, 255, 0.35));
  border-color: rgba(60, 200, 255, 0.7);
  box-shadow: 0 0 12px rgba(60, 200, 255, 0.35);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

.testimonial-dots .dot.active {
  background: rgba(60, 200, 255, 0.9);
}

@media (max-width: 960px) {
  .work-header,
  .stats-grid {
    flex-direction: column;
  }

  .work-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .work-card {
    min-height: 300px;
  }

  .stats-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .work-cards {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .work-card {
    min-height: 280px;
  }

  .testimonial-carousel {
    flex-direction: column;
  }
}

@keyframes borderSwirl {
  0% {
    box-shadow: 
      0 -6px 12px rgba(60, 200, 255, 0.4),
      0 0 8px rgba(60, 200, 255, 0.2);
  }
  6.25% {
    box-shadow: 
      4.2px -4.2px 12px rgba(60, 200, 255, 0.4),
      0 0 8px rgba(60, 200, 255, 0.2);
  }
  12.5% {
    box-shadow: 
      6px -6px 12px rgba(60, 200, 255, 0.4),
      0 0 8px rgba(60, 200, 255, 0.2);
  }
  18.75% {
    box-shadow: 
      6px -3px 12px rgba(30, 110, 255, 0.4),
      0 0 8px rgba(60, 200, 255, 0.2);
  }
  25% {
    box-shadow: 
      6px 0px 12px rgba(30, 110, 255, 0.4),
      0 0 8px rgba(60, 200, 255, 0.2);
  }
  31.25% {
    box-shadow: 
      6px 3px 12px rgba(60, 200, 255, 0.4),
      0 0 8px rgba(60, 200, 255, 0.2);
  }
  37.5% {
    box-shadow: 
      4.2px 4.2px 12px rgba(60, 200, 255, 0.4),
      0 0 8px rgba(60, 200, 255, 0.2);
  }
  43.75% {
    box-shadow: 
      0 6px 12px rgba(30, 110, 255, 0.4),
      0 0 8px rgba(60, 200, 255, 0.2);
  }
  50% {
    box-shadow: 
      0 6px 12px rgba(30, 110, 255, 0.4),
      0 0 8px rgba(60, 200, 255, 0.2);
  }
  56.25% {
    box-shadow: 
      -4.2px 4.2px 12px rgba(60, 200, 255, 0.4),
      0 0 8px rgba(60, 200, 255, 0.2);
  }
  62.5% {
    box-shadow: 
      -6px 3px 12px rgba(60, 200, 255, 0.4),
      0 0 8px rgba(60, 200, 255, 0.2);
  }
  68.75% {
    box-shadow: 
      -6px 0px 12px rgba(30, 110, 255, 0.4),
      0 0 8px rgba(60, 200, 255, 0.2);
  }
  75% {
    box-shadow: 
      -6px -3px 12px rgba(30, 110, 255, 0.4),
      0 0 8px rgba(60, 200, 255, 0.2);
  }
  81.25% {
    box-shadow: 
      -6px -6px 12px rgba(60, 200, 255, 0.4),
      0 0 8px rgba(60, 200, 255, 0.2);
  }
  87.5% {
    box-shadow: 
      -4.2px -4.2px 12px rgba(60, 200, 255, 0.4),
      0 0 8px rgba(60, 200, 255, 0.2);
  }
  93.75% {
    box-shadow: 
      0 -3px 12px rgba(30, 110, 255, 0.4),
      0 0 8px rgba(60, 200, 255, 0.2);
  }
  100% {
    box-shadow: 
      0 -6px 12px rgba(60, 200, 255, 0.4),
      0 0 8px rgba(60, 200, 255, 0.2);
  }
}

@keyframes bgSmooth {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  font-weight: 500;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: linear-gradient(135deg, rgba(60, 200, 255, 0.3) 0%, rgba(60, 200, 255, 0.65) 100%);
  color: #3cc8ff;
  border: 2px solid #3cc8ff;
  animation: borderSwirl 5s linear infinite;
  background-size: 300% 300%;
  box-shadow: 0 0 8px rgba(60, 200, 255, 0.2);
  transition: color 1.2s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 1.2s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 1.2s cubic-bezier(0.4, 0, 0.2, 1),
              background 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn.primary::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 8px;
  background: linear-gradient(90deg, transparent, #3cc8ff, transparent);
  filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn.primary:hover {
  background: linear-gradient(135deg, #00BCFF 0%, #116482 50%, #00BCFF 100%);
  background-size: 300% 300%;
  color: #ffffff;
  border-color: #00BCFF;
  animation: borderSwirl 5s linear infinite, bgSmooth 8s ease-in-out infinite;
  box-shadow: 0 0 0 2px rgba(0, 188, 255, 0.4),
              0 0 15px rgba(0, 188, 255, 0.6),
              0 0 30px rgba(0, 188, 255, 0.4);
}

.btn.primary:hover::after {
  opacity: 1;
}

.btn-arrow {
  margin-left: 0.45rem;
  font-size: 1.05em;
  transform: translateY(-1px);
  display: inline-block;
}

.section {
  padding: 4rem 0;
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
}
.section.reduce-gap {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.section.why-choose-us.reduce-gap {
  padding-top: 2rem;
  padding-bottom: 0;
}

.section.expertise-section.reduce-gap {
  padding-top: 0.5rem;
  padding-bottom: 0;
}

.section.expertise-features {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (max-width: 768px) {
  .section.reduce-gap {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .section.why-choose-us.reduce-gap {
    padding-top: 1.5rem;
    padding-bottom: 0;
  }
  
  .section.expertise-section.reduce-gap {
    padding-top: 0.5rem;
    padding-bottom: 0;
  }

  .section.expertise-features {
    padding-top: 0;
    padding-bottom: 2rem;
  }
  
  .expertise-wrapper {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .expertise-content .content-highlight {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 1rem;
  }
  
  .expertise-content .content-rest {
    font-size: clamp(0.95rem, 3.5vw, 1.05rem);
  }
}

.section.alt {
  background: transparent;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 3.5vw, 3.2rem);
  margin-bottom: clamp(0.65rem, 1vw, 1rem);
}

.section-heading p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cards article {
  background: var(--card);
  padding: 1.6rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.cards h3 {
  margin-bottom: clamp(0.5rem, 0.8vw, 0.75rem);
}

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

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.accreditation-hover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.hover-card {
  flex: 1;
  transition: all 0.4s ease;
  opacity: 0.65;
  transform: scale(0.92);
  filter: brightness(0.85);
  cursor: pointer;
}

.hover-card:hover,
.hover-card.active {
  opacity: 1;
  transform: scale(1);
  filter: brightness(1);
  z-index: 10;
}

.hover-card:hover ~ .hover-card,
.accreditation-hover-grid:has(.hover-card.active) .hover-card:not(.active) {
  opacity: 0.5;
  transform: scale(0.85);
  filter: brightness(0.7);
}

.hover-card .container.split {
  flex-direction: column;
  gap: 1rem;
}

.hover-card .intro-media {
  width: 100%;
  margin-bottom: 0.5rem;
}

.hover-card .intro-media img {
  width: 100%;
  height: auto;
  display: block;
}

.accreditation-carousel {
  padding-top: 0;
  margin-top: -8rem;
}

@media (max-width: 768px) {
  .accreditation-carousel {
    padding-top: 2rem;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .accreditation-carousel {
    padding-top: 2.5rem;
    margin-top: 2rem;
  }
}

.accreditation-system {
  padding-top: 0;
  margin-top: 2rem;
  overflow: visible;
  margin-bottom: 0.5rem;
}

.accreditation-features {
  padding-top: 0.75rem;
}

.visitors-system {
  padding-top: 0;
  margin-top: 2rem;
  overflow: visible;
  margin-bottom: 0.5rem;
}

.visitors-features {
  padding-top: 2rem;
}

.visitors-features .container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "tabs"
    "content";
  gap: 2rem;
  overflow: visible;
  perspective: 1000px;
}

.visitors-features .feature-tabs {
  grid-area: tabs;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 0.8rem;
  margin: 0 0 2rem 0;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(60, 200, 255, 0.3) transparent;
}

.visitors-features .feature-tabs::-webkit-scrollbar {
  height: 4px;
}

.visitors-features .feature-tabs::-webkit-scrollbar-track {
  background: transparent;
}

.visitors-features .feature-tabs::-webkit-scrollbar-thumb {
  background: rgba(60, 200, 255, 0.3);
  border-radius: 2px;
}

.visitors-features .feature-tab {
  flex-shrink: 0;
  min-width: 200px;
  text-align: center;
  white-space: nowrap;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  transition: all 0.25s ease;
  font-size: 0.85rem;
  font-weight: 400;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.7);
}

.visitors-features .feature-tab::after {
  display: none;
}

.visitors-features .feature-tab .button-label {
  display: block;
}

.visitors-features .feature-tab .button-description {
  display: none;
}

.visitors-features .feature-tab:hover,
.visitors-features .feature-tab.is-active {
  background: rgba(60, 200, 255, 0.15);
  border-color: rgba(60, 200, 255, 0.4);
  color: #3cc8ff;
}

.visitors-features .tab-panel {
  grid-area: content;
  display: none;
  overflow: visible;
}

.visitors-features .tab-panel.is-active {
  display: block;
}

.visitors-features .tab-panel .section-heading {
  display: none;
}

.visitors-features .section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.visitors-features .features-grid {
  overflow: visible;
  padding-top: 1rem;
  margin-top: -1rem;
}

@media (max-width: 768px) {
  .visitors-features .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    overflow: visible;
    padding-top: 1rem;
    margin-top: -1rem;
  }
}

@media (min-width: 1024px) {
  .visitors-features .container {
    grid-template-columns: 280px 1fr;
    grid-template-areas:
      "tabs content";
    gap: 2rem 3rem;
  }

  .visitors-features .feature-tabs {
    flex-direction: column;
    overflow-x: visible;
    overflow-y: visible;
    gap: 0.8rem;
    padding-bottom: 0;
    position: sticky;
    top: 100px;
    align-self: flex-start;
  }

  .visitors-features .feature-tab {
    text-align: left;
    width: 100%;
    min-width: auto;
    white-space: normal;
    padding: 0.4rem 0.5rem;
    border-radius: 0;
    font-size: 1rem;
    background: transparent;
    border: none;
    align-items: flex-start;
    gap: 0.75rem;
    display: flex;
    flex-direction: row;
  }

  .visitors-features .feature-tab .button-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    line-height: 1;
  }

  .visitors-features .feature-tab .button-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
    position: relative;
  }

  .visitors-features .feature-tab .button-label {
    display: block;
    font-size: 1rem;
    font-weight: 400;
  }

  .visitors-features .feature-tab .button-description {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    line-height: 1.3;
    text-align: left;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, color 0.25s ease;
  }

  .visitors-features .feature-tab .button-content::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    display: block;
    background: linear-gradient(90deg, rgba(60, 200, 255, 0.9) 0%, rgba(60, 200, 255, 0) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }

  .visitors-features .feature-tab:hover {
    background: transparent;
    border-color: transparent;
    transform: translateX(0);
  }

  .visitors-features .feature-tab.is-active {
    background: transparent;
    border-color: transparent;
    transform: translateX(0);
  }

  .visitors-features .feature-tab:hover .button-content::after {
    transform: scaleX(0.5);
    opacity: 0.5;
  }

  .visitors-features .feature-tab.is-active .button-content::after {
    transform: scaleX(1);
  }

  .visitors-features .feature-tab.is-active .button-description {
    max-height: 100px;
    opacity: 1;
    color: rgba(60, 200, 255, 0.7);
  }

  .visitors-features .feature-tab::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero--visitors-registration {
    position: relative;
    z-index: 1;
    display: block !important;
  }

  .hero--visitors-registration .hero-copy {
    order: 2 !important;
    display: block !important;
  }

  .hero-registration-visual {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 450px !important;
    order: 1 !important;
  }

  .registration-tablet-stage {
    max-width: 100% !important;
    width: 90vw !important;
    height: 400px !important;
    margin-left: 5vw !important;
    margin-right: 5vw !important;
    display: grid !important;
  }

  .tablet-frame {
    max-width: 100% !important;
    height: 320px !important;
    display: flex !important;
  }

  .registration-tablet {
    transform: none !important;
    scale: 0.9 !important;
  }
}

@media (max-width: 480px) {
  .accreditation-system {
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  
  .visitors-system {
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
}

.system-shell {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.system-viewport {
  position: relative;
  width: 100%;
  perspective: 1400px;
  perspective-origin: center;
  padding-block: clamp(1rem, 2vw, 2rem);
  -webkit-perspective: 1400px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.system-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

.system-content {
  width: 100%;
  max-width: none;
  text-align: center;
}

.system-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: clamp(0.85rem, 1.2vw, 1.2rem) 0 clamp(1rem, 1.5vw, 1.5rem);
  line-height: 1.1;
  color: #ffffff;
}

.system-content .section-content {
  color: #ffffff;
  margin-bottom: 0;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-shell {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  overflow: visible;
  pointer-events: auto;
  cursor: grab;
}

.carousel-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
  perspective: 1400px;
  perspective-origin: center;
  padding-block: clamp(0.25rem, 1.5vw, 0.85rem);
  pointer-events: auto;
  -webkit-perspective: 1400px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.carousel-track {
  position: relative;
  min-height: clamp(360px, 50vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-origin: center center;
  transition: transform 1.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.carousel-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(760px, 82vw);
  padding: 0.85rem 0.75rem;
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
  opacity: 0.7;
  transition: opacity 0.6s ease;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-orb {
  position: relative;
  width: clamp(160px, 28vw, 260px);
  height: clamp(160px, 28vw, 260px);
  display: grid;
  place-items: center;
}

.carousel-badge {
  position: relative;
  width: clamp(240px, 28vw, 320px);
  height: clamp(290px, 35vw, 420px);
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  animation: badgeFloat 6s ease-in-out infinite;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: visible;
}

@media (max-width: 768px) {
  .carousel-badge {
    width: clamp(220px, 30vw, 280px);
    height: clamp(270px, 38vw, 360px);
  }
}

@media (max-width: 480px) {
  .carousel-badge {
    width: 240px;
    height: 300px;
  }
}

.badge-face,
.badge-edge,
.badge-glow,
.badge-shine,
.badge-back {
  position: absolute;
  border-radius: 18px;
}

.badge-face {
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  gap: 0.4rem;
  padding: 0.7rem 0.6rem 0.8rem;
  text-align: center;
  color: #0b111d;
  width: 72%;
  height: 78%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(120, 220, 255, 0.45));
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  transform: translateZ(35px);
  box-shadow: 
    0 22px 50px rgba(4, 10, 20, 0.65),
    0 0 40px rgba(60, 200, 255, 0.75),
    0 0 60px rgba(60, 200, 255, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

@media (max-width: 768px) {
  .badge-face {
    width: 75%;
    height: 80%;
    padding: 0.45rem 0.5rem 0.55rem;
    gap: 0.25rem;
    transform: translateZ(28px);
  }
}

@media (max-width: 480px) {
  .badge-face {
    width: 78%;
    height: 82%;
    padding: 0.4rem 0.45rem 0.5rem;
    gap: 0.2rem;
    transform: translateZ(25px);
  }
}

.badge-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

@media (max-width: 768px) {
  .badge-header {
    font-size: 0.5rem;
    gap: 0.35rem;
  }
}

@media (max-width: 480px) {
  .badge-header {
    font-size: 0.48rem;
    gap: 0.28rem;
    letter-spacing: 0.12em;
  }
}

.badge-chip {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  background: linear-gradient(135deg, #0b111d, #3cc8ff);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .badge-chip {
    width: 11px;
    height: 7px;
  }
}

@media (max-width: 480px) {
  .badge-chip {
    width: 10px;
    height: 7px;
  }
}

.badge-title {
  font-weight: 700;
  white-space: nowrap;
}

.badge-media {
  display: flex;
  align-items: center;
  gap: 1.0rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .badge-media {
    gap: 0.2rem;
  }
}

@media (max-width: 480px) {
  .badge-media {
    gap: 0.25rem;
  }
}

.badge-photo {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  background: linear-gradient(140deg, rgba(12, 18, 32, 0.85), rgba(60, 200, 255, 0.35));
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .badge-photo {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 480px) {
  .badge-photo {
    width: 48px;
    height: 48px;
    border-radius: 5px;
  }
}

.badge-info {
  display: grid;
  gap: 0.2rem;
  text-align: center;
  min-width: 0;
}

@media (max-width: 768px) {
  .badge-info {
    gap: 0.12rem;
  }
}

@media (max-width: 480px) {
  .badge-info {
    gap: 0.1rem;
  }
}

.badge-name {
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .badge-name {
    font-size: 0.52rem;
  }
}

@media (max-width: 480px) {
  .badge-name {
    font-size: 0.5rem;
  }
}

.badge-role {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(8, 12, 20, 0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .badge-role {
    font-size: 0.42rem;
  }
}

@media (max-width: 480px) {
  .badge-role {
    font-size: 0.4rem;
    letter-spacing: 0.06em;
  }
}

.badge-company {
  font-size: 0.6rem;
  color: rgba(8, 12, 20, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .badge-company {
    font-size: 0.38rem;
  }
}

@media (max-width: 480px) {
  .badge-company {
    font-size: 0.36rem;
  }
}

.badge-zones {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
}

@media (max-width: 768px) {
  .badge-zones {
    gap: 0.15rem;
  }
}

@media (max-width: 480px) {
  .badge-zones {
    gap: 0.12rem;
  }
}

.badge-zones span {
  font-size: 0.55rem;
  padding: 0.15rem 0.38rem;
  border-radius: 999px;
  background: rgba(12, 18, 32, 0.12);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.4em;
}

@media (max-width: 768px) {
  .badge-zones span {
    font-size: 0.38rem;
    padding: 0.1rem 0.25rem;
    min-height: 1.3em;
  }
}

@media (max-width: 480px) {
  .badge-zones span {
    font-size: 0.35rem;
    padding: 0.1rem 0.22rem;
    min-height: 1.3em;
  }
}

.badge-validity {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(8, 12, 20, 0.75);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .badge-validity {
    font-size: 0.4rem;
  }
}

@media (max-width: 480px) {
  .badge-validity {
    font-size: 0.38rem;
  }
}

.badge-qr-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-id {
  position: absolute;
  right: -0.6rem;
  font-size: 0.52rem;
  font-weight: 600;
  color: rgba(8, 12, 20, 0.8);
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .badge-id {
    font-size: 0.4rem;
    right: -0.5rem;
  }
}

@media (max-width: 480px) {
  .badge-id {
    font-size: 0.35rem;
    right: -0.4rem;
  }
}

.badge-qr {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  object-fit: cover;
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .badge-qr {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 480px) {
  .badge-qr {
    width: 48px;
    height: 48px;
    border-radius: 5px;
  }
}

@media (max-width: 768px) {
  .badge-qr {
    height: 52px;
  }
}

@media (max-width: 480px) {
  .badge-qr {
    height: 48px;
    border-radius: 5px;
  }
}

.badge-back {
  width: 74%;
  height: 80%;
  border: 2px solid rgba(60, 200, 255, 0.35);
  background: linear-gradient(145deg, rgba(200, 220, 240, 0.3), rgba(150, 190, 220, 0.25));
  transform: translateZ(-15px) rotateY(2deg) rotateX(-1deg);
  box-shadow: 
    0 12px 40px rgba(4, 10, 20, 0.35),
    inset 0 0 25px rgba(60, 200, 255, 0.2);
}

.badge-edge {
  width: 78%;
  height: 84%;
  border: 2.5px solid rgba(60, 200, 255, 0.5);
  background: linear-gradient(160deg, rgba(180, 210, 230, 0.25), rgba(140, 180, 210, 0.2));
  transform: translateZ(8px) rotateX(-2deg);
  box-shadow: 
    inset 0 0 20px rgba(60, 200, 255, 0.25),
    0 8px 25px rgba(4, 10, 20, 0.25);
}

@media (max-width: 768px) {
  .badge-back {
    width: 76%;
    height: 82%;
    transform: translateZ(-12px) rotateY(1.5deg) rotateX(-0.5deg);
  }
  
  .badge-edge {
    width: 80%;
    height: 85%;
    border-width: 2px;
    transform: translateZ(6px) rotateX(-1deg);
  }
}

@media (max-width: 480px) {
  .badge-back {
    width: 78%;
    height: 84%;
    transform: translateZ(-10px) rotateY(1deg) rotateX(-0.5deg);
  }
  
  .badge-edge {
    width: 82%;
    height: 86%;
    border-width: 2px;
    transform: translateZ(5px) rotateX(-1deg);
  }
}

.badge-glow {
  width: 106%;
  height: 106%;
  background: linear-gradient(145deg, 
    rgba(60, 200, 255, 0.38) 0%, 
    rgba(60, 200, 255, 0.25) 30%,
    rgba(60, 200, 255, 0.18) 50%,
    rgba(60, 200, 255, 0.05) 100%);
  filter: blur(22px);
  will-change: filter;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: none;
  opacity: 0.65;
}

@media (max-width: 768px) {
  .badge-glow {
    width: 104%;
    height: 104%;
    filter: blur(14px);
    opacity: 0.6;
  }
}

@media (max-width: 480px) {
  .badge-glow {
    width: 103%;
    height: 103%;
    filter: blur(12px);
    opacity: 0.55;
  }
}

.badge-shine {
  width: 72%;
  height: 78%;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.12) 35%,
    rgba(255, 255, 255, 0) 50%);
  transform: translateZ(38px);
  opacity: 0.8;
  pointer-events: none;
}

@media (max-width: 768px) {
  .badge-shine {
    width: 75%;
    height: 80%;
    transform: translateZ(30px);
    opacity: 0.75;
  }
}

@media (max-width: 480px) {
  .badge-shine {
    width: 78%;
    height: 82%;
    transform: translateZ(26px);
    opacity: 0.7;
  }
}

.carousel-flow {
  position: relative;
  width: min(100%, 95vw);
  height: clamp(180px, 32vw, 240px);
  transform-style: preserve-3d;
  display: grid;
  place-items: center;
}

.flow-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flow-icon {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flow-icon::before {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  filter: drop-shadow(0 2px 6px rgba(60, 200, 255, 0.35));
}

.flow-label {
  font-size: clamp(0.55rem, 0.9vw, 0.7rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

/* Icon Positioning */
.flow-icon--ticket {
  top: 18%;
  left: 12%;
  animation: floatSmooth1 4.5s ease-in-out infinite;
}

.flow-icon--barcode {
  top: 22%;
  left: 38%;
  animation: floatSmooth2 5s ease-in-out infinite;
}

.flow-icon--stadium {
  top: 15%;
  right: 28%;
  animation: floatSmooth3 5.3s ease-in-out infinite;
}

.flow-icon--gate {
  top: 20%;
  right: 10%;
  animation: floatSmooth4 4.8s ease-in-out infinite;
}

.flow-icon--scan {
  bottom: 20%;
  left: 8%;
  animation: floatSmooth5 5.2s ease-in-out infinite;
}

.flow-icon--badge {
  bottom: 18%;
  left: 32%;
  animation: floatSmooth6 4.7s ease-in-out infinite;
}

.flow-icon--calendar {
  bottom: 22%;
  right: 30%;
  animation: floatSmooth7 5.1s ease-in-out infinite;
}

.flow-icon--shield {
  bottom: 18%;
  right: 8%;
  animation: floatSmooth8 4.9s ease-in-out infinite;
}

/* Icon Specific Styles */
.flow-icon--ticket::before {
  content: '🎫';
}

.flow-icon--barcode::before {
  content: '▐▐▌';
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  letter-spacing: 1px;
  color: rgba(60, 200, 255, 0.95);
  text-shadow: 0 0 8px rgba(60, 200, 255, 0.5);
}

.flow-icon--stadium::before {
  content: '🏟️';
}

.flow-icon--gate::before {
  content: '🚪';
}

.flow-icon--scan::before {
  content: '📱';
}

.flow-icon--badge::before {
  content: '🪪';
}

.flow-icon--calendar::before {
  content: '📅';
}

.flow-icon--shield::before {
  content: '🛡️';
}

/* Smooth Floating Animations */
@keyframes floatSmooth1 {
  0%, 100% { transform: translateY(0) translateZ(10px); }
  50% { transform: translateY(-10px) translateZ(16px); }
}

@keyframes floatSmooth2 {
  0%, 100% { transform: translateY(0) translateZ(12px); }
  50% { transform: translateY(-12px) translateZ(18px); }
}

@keyframes floatSmooth3 {
  0%, 100% { transform: translateY(0) translateZ(8px); }
  50% { transform: translateY(-9px) translateZ(14px); }
}

@keyframes floatSmooth4 {
  0%, 100% { transform: translateY(0) translateZ(11px); }
  50% { transform: translateY(-11px) translateZ(17px); }
}

@keyframes floatSmooth5 {
  0%, 100% { transform: translateY(0) translateZ(13px); }
  50% { transform: translateY(-10px) translateZ(19px); }
}

@keyframes floatSmooth6 {
  0%, 100% { transform: translateY(0) translateZ(9px); }
  50% { transform: translateY(-9px) translateZ(15px); }
}

@keyframes floatSmooth7 {
  0%, 100% { transform: translateY(0) translateZ(14px); }
  50% { transform: translateY(-12px) translateZ(20px); }
}

@keyframes floatSmooth8 {
  0%, 100% { transform: translateY(0) translateZ(10px); }
  50% { transform: translateY(-11px) translateZ(16px); }
}

/* Mobile Responsive Styles for Flow Icons */
@media (max-width: 768px) {
  .flow-icon::before {
    font-size: 1.5rem;
  }
  
  .flow-label {
    font-size: 0.5rem;
  }
  
  .flow-icon--barcode::before {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .carousel-flow {
    height: clamp(140px, 28vw, 180px);
  }
  
  .flow-icon::before {
    font-size: 1.3rem;
  }
  
  .flow-label {
    font-size: 0.45rem;
  }
  
  .flow-icon--barcode::before {
    font-size: 1rem;
  }
  
  /* Adjust positions for mobile */
  .flow-icon--ticket { top: 12%; left: 8%; }
  .flow-icon--barcode { top: 15%; left: 35%; }
  .flow-icon--stadium { top: 10%; right: 25%; }
  .flow-icon--gate { top: 15%; right: 5%; }
  .flow-icon--scan { bottom: 15%; left: 5%; }
  .flow-icon--badge { bottom: 12%; left: 30%; }
  .flow-icon--calendar { bottom: 18%; right: 28%; }
  .flow-icon--shield { bottom: 15%; right: 5%; }
}

.carousel-brand {
  position: relative;
  width: clamp(200px, 28vw, 320px);
  height: clamp(150px, 22vw, 260px);
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.brand-monitor {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  animation: monitorFloat 6s ease-in-out infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.monitor-bezel {
  position: absolute;
  width: 100%;
  height: 85%;
  background: linear-gradient(145deg, rgba(245, 248, 250, 0.65), rgba(235, 240, 245, 0.7));
  border-radius: 8px;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.15),
    0 8px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 2px rgba(0, 0, 0, 0.05),
    inset 2px 0 3px rgba(0, 0, 0, 0.03),
    inset -2px 0 3px rgba(0, 0, 0, 0.03);
  transform: translateZ(20px) rotateX(6deg);
  overflow: hidden;
  border: 1px solid rgba(220, 228, 235, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.monitor-bezel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.4) 0%, 
    rgba(255, 255, 255, 0.1) 30%, 
    rgba(0, 0, 0, 0.02) 70%, 
    rgba(0, 0, 0, 0.05) 100%);
  border-radius: 8px;
  pointer-events: none;
}

.monitor-bezel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8%;
  background: linear-gradient(180deg, rgba(235, 240, 245, 0.7), rgba(225, 232, 240, 0.75));
  border-radius: 0 0 8px 8px;
  border-top: 1px solid rgba(215, 222, 230, 0.8);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.monitor-screen {
  position: absolute;
  width: 94%;
  height: 82%;
  top: 3%;
  left: 3%;
  background: 
    linear-gradient(180deg, 
      rgba(248, 250, 252, 1) 0%, 
      rgba(252, 253, 254, 1) 50%, 
      rgba(248, 250, 252, 1) 100%),
    repeating-linear-gradient(0deg, 
      rgba(0, 0, 0, 0.01) 0px, 
      rgba(0, 0, 0, 0.01) 1px, 
      transparent 1px, 
      transparent 2px);
  border-radius: 2px;
  overflow: hidden;
  border: 2px solid rgba(220, 225, 230, 0.9);
  box-shadow: 
    inset 0 0 25px rgba(0, 0, 0, 0.08),
    inset 0 2px 4px rgba(0, 0, 0, 0.05),
    inset 0 0 80px rgba(0, 0, 0, 0.03),
    0 0 0 1px rgba(255, 255, 255, 0.5);
}

.monitor-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(255, 255, 255, 0.15), transparent 40%),
    radial-gradient(ellipse at center, transparent 60%, rgba(0, 0, 0, 0.02) 100%);
  pointer-events: none;
  z-index: 10;
}

.monitor-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.08) 50%, 
    transparent 100%);
  animation: screenGlare 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 11;
}

@keyframes screenGlare {
  0%, 100% { opacity: 0; transform: translateX(-100%); }
  50% { opacity: 1; transform: translateX(100%); }
}

.screen-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 8%;
  display: flex;
  flex-direction: column;
  gap: 5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  z-index: 5;
  background: transparent;
}

.design-header {
  display: flex;
  align-items: center;
  gap: 6%;
  border-bottom: 2px solid rgba(220, 228, 235, 0.8);
  padding-bottom: 4%;
}

.logo-sample {
  width: 20%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.12));
  border-radius: 4px;
  border: 1.5px solid rgba(99, 102, 241, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: rgba(79, 70, 229, 0.9);
  letter-spacing: 1.5px;
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.brand-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2%;
}

.brand-name {
  font-size: 12px;
  font-weight: 800;
  color: rgba(30, 41, 59, 0.95);
  letter-spacing: 0.8px;
  text-shadow: none;
}

.brand-tagline {
  font-size: 8px;
  color: rgba(100, 116, 139, 0.9);
  letter-spacing: 0.5px;
  font-weight: 600;
  text-shadow: none;
}

.design-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4%;
  flex: 1;
}

.showcase-section {
  display: flex;
  flex-direction: column;
  gap: 3%;
  padding: 3%;
  background: rgba(248, 250, 252, 0.6);
  border-radius: 4px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 8px;
  font-weight: 700;
  color: rgba(71, 85, 105, 0.9);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-shadow: none;
}

.type-heading {
  font-size: 10px;
  font-weight: 800;
  color: rgba(30, 41, 59, 0.95);
  text-shadow: none;
}

.type-body {
  font-size: 7px;
  color: rgba(100, 116, 139, 0.9);
}

.palette-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2%;
}

.color-dot {
  width: 100%;
  height: 16px;
  border-radius: 3px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.color-dot.primary {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.85), rgba(37, 99, 235, 0.9));
}

.color-dot.secondary {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.85), rgba(5, 150, 105, 0.9));
}

.color-dot.accent {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.85), rgba(249, 115, 22, 0.9));
}

.color-dot.neutral {
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.7), rgba(100, 116, 139, 0.75));
}

.design-footer {
  display: flex;
  align-items: center;
  gap: 4%;
  border-top: 2px solid rgba(220, 228, 235, 0.8);
  padding-top: 3%;
}

.code-sample {
  flex: 1;
  font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
  font-size: 7px;
  line-height: 1.5;
  color: rgba(51, 65, 85, 0.95);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: rgba(241, 245, 249, 0.5);
  padding: 4%;
  border-radius: 3px;
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.code-line {
  letter-spacing: 0.3px;
}

.code-line.indent {
  margin-left: 10%;
  color: rgba(71, 85, 105, 0.8);
}

.bracket {
  color: rgba(100, 116, 139, 0.95);
  font-weight: 600;
}

.tag {
  color: rgba(79, 70, 229, 0.9);
  font-weight: 700;
}

.attr {
  color: rgba(220, 38, 38, 0.85);
  font-weight: 600;
}

.brand-badge {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.15));
  border: 1.5px solid rgba(99, 102, 241, 0.3);
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.badge-shine {
  position: absolute;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent);
  border-radius: 50%;
  top: 15%;
  left: 15%;
  filter: blur(2px);
}

.design-body {
  display: flex;
  gap: 8%;
  flex: 1;
}

.color-palette {
  display: flex;
  flex-direction: column;
  gap: 4%;
  flex: 0.5;
}

.color-swatch {
  width: 100%;
  height: 28%;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.color-swatch.primary {
  background: rgba(60, 200, 255, 0.4);
}

.color-swatch.secondary {
  background: rgba(0, 255, 136, 0.3);
}

.color-swatch.accent {
  background: rgba(255, 122, 92, 0.3);
}

.layout-sample {
  display: flex;
  flex-direction: column;
  gap: 4%;
  flex: 1;
}

.sample-line {
  height: 20%;
  background: rgba(227, 239, 255, 0.15);
  border-radius: 2px;
}

.sample-line.short {
  width: 65%;
}

.monitor-stand {
  position: absolute;
  bottom: -8%;
  left: 50%;
  transform: translateX(-50%) translateZ(10px);
  width: 20%;
  height: 14%;
  background: linear-gradient(180deg, 
    rgba(240, 245, 248, 0.7) 0%, 
    rgba(230, 237, 242, 0.75) 50%, 
    rgba(225, 232, 238, 0.8) 100%);
  border-radius: 0 0 3px 3px;
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 2px 0 2px rgba(0, 0, 0, 0.03),
    inset -2px 0 2px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(220, 228, 235, 0.9);
  transform-style: preserve-3d;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.monitor-stand::before {
  content: '';
  position: absolute;
  bottom: -35%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 25%;
  background: linear-gradient(180deg, 
    rgba(235, 242, 247, 0.7), 
    rgba(225, 232, 240, 0.75));
  border-radius: 50%;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(220, 228, 235, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.monitor-stand::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    rgba(0, 0, 0, 0.03) 0%, 
    transparent 20%, 
    transparent 80%, 
    rgba(0, 0, 0, 0.03) 100%);
  border-radius: 0 0 3px 3px;
}

.brand-glow {
  position: absolute;
  width: 130%;
  height: 130%;
  top: -15%;
  left: -15%;
  border-radius: 12px;
  background: radial-gradient(ellipse at center, 
    rgba(60, 200, 255, 0.45) 0%, 
    rgba(60, 200, 255, 0.3) 30%, 
    rgba(60, 200, 255, 0.18) 50%, 
    rgba(60, 200, 255, 0.08) 70%,
    transparent 85%);
  filter: blur(20px);
  animation: brandGlowPulse 3.5s ease-in-out infinite;
  pointer-events: none;
  will-change: filter;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@keyframes monitorFloat {
  0%, 100% {
    transform: translateZ(0) rotateY(-8deg) rotateX(6deg) rotateZ(0deg);
  }
  50% {
    transform: translateZ(-10px) rotateY(8deg) rotateX(-4deg) rotateZ(1.5deg);
  }
}

@keyframes brandGlowPulse {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.orb-core,
.orb-ring,
.orb-glow {
  position: absolute;
  border-radius: 50%;
}

.orb-core {
  width: 46%;
  height: 46%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #7de1ff 45%, rgba(60, 200, 255, 0.2) 70%);
  box-shadow: 0 0 24px rgba(60, 200, 255, 0.75), 0 0 80px rgba(60, 200, 255, 0.45);
  animation: orbPulse 4.5s ease-in-out infinite;
}

.orb-ring {
  width: 82%;
  height: 82%;
  border: 2px solid rgba(99, 220, 255, 0.6);
  box-shadow: 0 0 28px rgba(60, 200, 255, 0.5), inset 0 0 18px rgba(60, 200, 255, 0.25);
  animation: orbSpin 10s linear infinite;
}

.orb-glow {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(60, 200, 255, 0.35), rgba(60, 200, 255, 0) 70%);
  filter: blur(8px);
  animation: orbGlow 6s ease-in-out infinite;
}

.carousel-content {
  width: 100%;
  max-width: none;
  margin: -2rem auto 1.75rem;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform-origin: center top;
}

.carousel-content.is-transitioning {
  opacity: 0.1;
  transform: rotateX(8deg) translateY(6px);
}

.carousel-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: clamp(0.85rem, 1.2vw, 1.2rem) 0 clamp(0.75rem, 1.2vw, 1.1rem);
  line-height: 1.1;
  color: #ffffff;
}

.carousel-content .section-content {
  color: #ffffff;
  margin-bottom: 0;
}


.carousel-progress {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  justify-content: center;
  align-items: flex-end;
  margin-top: 0.5rem;
}

.progress-item {
  background: transparent;
  border: none;
  color: #ffffff;
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 0;
}

.progress-item .progress-word {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.progress-item.is-active .progress-word {
  color: #3cc8ff;
  text-shadow: 0 0 10px rgba(60, 200, 255, 0.7);
}

.progress-bar {
  position: relative;
  width: clamp(64px, 10vw, 120px);
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.progress-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(60, 200, 255, 0.2), rgba(60, 200, 255, 0.95));
  box-shadow: 0 0 10px rgba(60, 200, 255, 0.8);
}

.progress-bar.is-animating::after {
  animation: progressFill 8s linear;
}

.accreditation-carousel.is-paused .progress-bar.is-animating::after {
  animation-play-state: paused;
}

.carousel-controls {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: 0.75rem;
}

.control-btn {
  background: transparent;
  border: 1.5px solid rgba(60, 200, 255, 0.4);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: rgba(60, 200, 255, 0.7);
  position: relative;
}

.control-btn:hover {
  border-color: rgba(60, 200, 255, 0.8);
  color: rgba(60, 200, 255, 1);
  background: rgba(60, 200, 255, 0.05);
  box-shadow: 0 0 12px rgba(60, 200, 255, 0.3);
}

.control-btn:active {
  transform: scale(0.95);
}

.pause-icon,
.play-icon {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pause-icon::before,
.pause-icon::after {
  content: '';
  width: 3px;
  height: 10px;
  background: currentColor;
  border-radius: 1px;
}

.pause-icon::before {
  margin-right: 4px;
}

.pause-icon::after {
  margin-left: 4px;
}

.play-icon::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 8px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

@keyframes flowSpin {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes brandPulse {
  0%, 100% {
    transform: translateY(0) rotateX(6deg);
  }
  50% {
    transform: translateY(-8px) rotateX(-4deg);
  }
}

@keyframes flowFloat {
  0%, 100% {
    transform: translateY(0) rotateX(6deg);
  }
  50% {
    transform: translateY(-10px) rotateX(-4deg);
  }
}

@keyframes pillPulse {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.35);
  }
}

@keyframes flowGlow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes progressFill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes orbPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes orbSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes orbGlow {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

@keyframes badgeGlow {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes badgeShine {
  0% {
    transform: translateZ(40px) translateX(-30%) rotateZ(18deg);
    opacity: 0.15;
  }
  50% {
    transform: translateZ(40px) translateX(10%) rotateZ(18deg);
    opacity: 0.8;
  }
  100% {
    transform: translateZ(40px) translateX(40%) rotateZ(18deg);
    opacity: 0.15;
  }
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0) rotateX(8deg) rotateY(-10deg) rotateZ(0deg);
  }
  50% {
    transform: translateY(-12px) rotateX(-6deg) rotateY(10deg) rotateZ(2deg);
  }
}

@media (max-width: 900px) {
  .carousel-controls {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    transition: none;
  }
  .orb-core,
  .orb-ring,
  .orb-glow {
    animation: none;
  }
}

.accreditation-timeline {
  display: none;
}

.timeline-marker {
  display: none;
}

.timeline-card {
  display: none;
}

@media (max-width: 1024px) {
  .accreditation-hover-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .accreditation-hover-grid {
    grid-template-columns: 1fr;
  }

  .hover-card {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }

  .hover-card:hover {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }
}

.accreditation-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 8px;
  background: rgba(60, 200, 255, 0.08);
  border: 1px solid rgba(60, 200, 255, 0.2);
  transition: all 0.3s ease;
  overflow: visible;
  margin-bottom: 2rem;
}

.accreditation-card:hover {
  background: rgba(60, 200, 255, 0.12);
  border-color: rgba(60, 200, 255, 0.35);
  box-shadow: none;
  transform: none;
}

.accreditation-intro h2 {
  font-size: clamp(1.6rem, 3.5vw, 3.2rem);
  margin-bottom: clamp(0.85rem, 1.5vw, 1.5rem);
}

.accreditation-intro p {
  color: #ffffff;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.accreditation-intro .intro-media img {
  width: 100%;
  border-radius: 22px;
  display: block;
}

.accreditation-intro--image-left .intro-media {
  order: -1;
}

.accreditation-areas .section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.accreditation-areas .section-heading p {
  color: var(--muted);
}

.areas-media {
  margin: 0;
  padding: 0;
}

.areas-media img {
  width: min(100%, 500px);
  display: block;
  margin: 0 auto;
}

.accreditation-features .section-heading,
.access-features .section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.access-features .feature-tabs {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 0.8rem;
  margin: 0 0 2rem 0;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(60, 200, 255, 0.3) transparent;
}

.access-features .feature-tabs::-webkit-scrollbar {
  height: 4px;
}

.access-features .feature-tabs::-webkit-scrollbar-track {
  background: transparent;
}

.access-features .feature-tabs::-webkit-scrollbar-thumb {
  background: rgba(60, 200, 255, 0.3);
  border-radius: 2px;
}

.access-features .feature-tab {
  text-align: center;
  min-width: auto;
  white-space: nowrap;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  transition: all 0.25s ease;
  font-size: 0.85rem;
  font-weight: 400;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.access-features .feature-tab::after {
  display: none;
}

.access-features .feature-tab .button-label {
  display: block;
}

.access-features .feature-tab .button-description {
  display: none;
}

.access-features .feature-tab:hover,
.access-features .feature-tab.is-active {
  background: rgba(60, 200, 255, 0.15);
  border-color: rgba(60, 200, 255, 0.4);
  color: #3cc8ff;
}

.access-features .tab-panel {
  display: none;
}

.access-features .tab-panel.is-active {
  display: block;
}

.access-features .tab-panel .section-heading {
  display: none;
}

.access-features .container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "intro"
    "tabs"
    "content";
  gap: 2rem;
}

.access-features {
  padding-top: 0.75rem;
}

.access-features .features-intro {
  grid-area: intro;
  text-align: center;
}

@media (min-width: 1024px) {
  .access-features .container {
    grid-template-columns: 280px 1fr;
    grid-template-areas:
      "intro intro"
      "tabs content";
    gap: 2rem 3rem;
  }

  .access-features .features-intro {
    text-align: center;
  }

  .access-features .feature-tabs {
    grid-area: tabs;
    flex-direction: column;
    overflow-x: visible;
    overflow-y: visible;
    gap: 0.8rem;
    padding-bottom: 0;
    position: sticky;
    top: 100px;
    align-self: flex-start;
  }

  .access-features .feature-tab {
    text-align: left;
    width: 100%;
    min-width: auto;
    white-space: normal;
    padding: 0.4rem 0.5rem;
    border-radius: 0;
    font-size: 1rem;
    background: transparent;
    border: none;
    align-items: flex-start;
    gap: 0.75rem;
    display: flex;
    flex-direction: row;
  }

  .access-features .feature-tab .button-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    line-height: 1;
  }

  .access-features .feature-tab .button-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
    position: relative;
  }

  .access-features .feature-tab .button-label {
    display: block;
    font-size: 1rem;
    font-weight: 400;
  }

  .access-features .feature-tab .button-description {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    line-height: 1.3;
    text-align: left;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, color 0.25s ease;
  }

  .access-features .feature-tab .button-content::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    display: block;
    background: linear-gradient(90deg, rgba(60, 200, 255, 0.9) 0%, rgba(60, 200, 255, 0) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }

  .access-features .feature-tab:hover {
    background: transparent;
    border-color: transparent;
    transform: translateX(0);
  }

  .access-features .feature-tab.is-active {
    background: transparent;
    border-color: transparent;
    transform: translateX(0);
  }

  .access-features .feature-tab:hover .button-content::after {
    transform: scaleX(0.5);
    opacity: 0.5;
  }

  .access-features .feature-tab.is-active .button-content::after {
    transform: scaleX(1);
  }

  .access-features .feature-tab.is-active .button-description {
    max-height: 100px;
    opacity: 1;
    color: rgba(60, 200, 255, 0.7);
  }

  .access-features .tab-panel {
    grid-area: content;
  }
}

.accreditation-features .section-heading + .areas-media,
.accreditation-features .section-heading + .security-grid {
  margin-top: 0;
}

.features-intro {
  text-align: center;
  margin-bottom: 1.5rem;
}

.features-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: #f3f6ff;
  margin: 0;
}

.accreditation-features h2.features-subtitle,
.accreditation-features .features-intro h2,
.accreditation-features .features-subtitle {
  color: #ffffff !important;
  font-size: clamp(1.6rem, 3.5vw, 3.2rem) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin: 0 0 clamp(0.85rem, 1.5vw, 1.5rem) 0 !important;
}

.accreditation-features h2.features-subtitle .gradient-text,
.accreditation-features .features-subtitle .gradient-text {
  display: inline !important;
  background: linear-gradient(135deg, #0e9aff 0%, #91f4f4 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

.accreditation-features .container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "intro"
    "tabs"
    "content";
  gap: 2rem;
}

.accreditation-features .features-intro {
  grid-area: intro;
  text-align: left;
}

.accreditation-features .feature-tabs {
  grid-area: tabs;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 0.8rem;
  margin: 0;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(60, 200, 255, 0.3) transparent;
}

.accreditation-features .feature-tabs::-webkit-scrollbar {
  height: 4px;
}

.accreditation-features .feature-tabs::-webkit-scrollbar-track {
  background: transparent;
}

.accreditation-features .feature-tabs::-webkit-scrollbar-thumb {
  background: rgba(60, 200, 255, 0.3);
  border-radius: 2px;
}

.accreditation-features .feature-tab {
  text-align: center;
  min-width: auto;
  white-space: nowrap;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  transition: all 0.25s ease;
  font-size: 0.85rem;
  font-weight: 400;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.accreditation-features .feature-tab::after {
  display: none;
}

.accreditation-features .feature-tab .button-label {
  display: block;
}

.accreditation-features .feature-tab .button-description {
  display: none;
}

.accreditation-features .feature-tab:hover,
.accreditation-features .feature-tab.is-active {
  background: rgba(60, 200, 255, 0.15);
  border-color: rgba(60, 200, 255, 0.4);
  color: #3cc8ff;
}

.accreditation-features .tab-panel {
  grid-area: content;
}

.accreditation-features .tab-panel .section-heading {
  display: none;
}

@media (min-width: 1024px) {
  .accreditation-features .container {
    grid-template-columns: 280px 1fr;
    grid-template-areas:
      "intro intro"
      "tabs content";
    gap: 2rem 3rem;
  }

  .accreditation-features .features-intro {
    text-align: center;
  }

  .accreditation-features .feature-tabs {
    flex-direction: column;
    overflow-x: visible;
    overflow-y: visible;
    gap: 0.8rem;
    padding-bottom: 0;
    position: sticky;
    top: 100px;
    align-self: flex-start;
  }

  .accreditation-features .feature-tab {
    text-align: left;
    width: 100%;
    min-width: auto;
    white-space: normal;
    padding: 0.4rem 0.5rem;
    border-radius: 0;
    font-size: 1rem;
    background: transparent;
    border: none;
    align-items: flex-start;
    gap: 0.75rem;
    display: flex;
    flex-direction: row;
  }

  .accreditation-features .feature-tab .button-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    line-height: 1;
  }

  .accreditation-features .feature-tab .button-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
    position: relative;
  }

  .accreditation-features .feature-tab .button-label {
    display: block;
    font-size: 1rem;
    font-weight: 400;
  }

  .accreditation-features .feature-tab .button-description {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    line-height: 1.3;
    text-align: left;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, color 0.25s ease;
  }

  .accreditation-features .feature-tab .button-content::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    display: block;
    background: linear-gradient(90deg, rgba(60, 200, 255, 0.9) 0%, rgba(60, 200, 255, 0) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }

  .accreditation-features .feature-tab:hover {
    background: transparent;
    border-color: transparent;
    transform: translateX(0);
  }

  .accreditation-features .feature-tab.is-active {
    background: transparent;
    border-color: transparent;
    transform: translateX(0);
  }

  .accreditation-features .feature-tab:hover .button-content::after {
    transform: scaleX(0.5);
    opacity: 0.5;
  }

  .accreditation-features .feature-tab.is-active .button-content::after {
    transform: scaleX(1);
  }

  .accreditation-features .feature-tab.is-active .button-description {
    max-height: 100px;
    opacity: 1;
    color: rgba(60, 200, 255, 0.7);
  }
}

  .einvites-features .section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .einvites-features {
    padding-top: 0.75rem;
  }

  .einvites-features .container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "tabs"
      "content";
    gap: 2rem;
  }

  .einvites-features .feature-tabs {
    grid-area: tabs;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0.8rem;
    margin: 0 0 2rem 0;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(60, 200, 255, 0.3) transparent;
  }

  .einvites-features .feature-tabs::-webkit-scrollbar {
    height: 4px;
  }

  .einvites-features .feature-tabs::-webkit-scrollbar-track {
    background: transparent;
  }

  .einvites-features .feature-tabs::-webkit-scrollbar-thumb {
    background: rgba(60, 200, 255, 0.3);
    border-radius: 2px;
  }

  .einvites-features .feature-tab {
    text-align: center;
    min-width: auto;
    white-space: nowrap;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    transition: all 0.25s ease;
    font-size: 0.85rem;
    font-weight: 400;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }

  .einvites-features .feature-tab::after {
    display: none;
  }

  .einvites-features .feature-tab .button-label {
    display: block;
  }

  .einvites-features .feature-tab .button-description {
    display: none;
  }

  .einvites-features .feature-tab:hover,
  .einvites-features .feature-tab.is-active {
    background: rgba(60, 200, 255, 0.15);
    border-color: rgba(60, 200, 255, 0.4);
    color: #3cc8ff;
  }

  .einvites-features .tab-panel {
    grid-area: content;
  }

  .einvites-features .tab-panel .section-heading {
    display: none;
  }


  @media (min-width: 1024px) {
    .einvites-features .container {
      grid-template-columns: 280px 1fr;
      grid-template-areas:
        "intro intro"
        "tabs content";
      gap: 2rem 3rem;
    }

    .einvites-features .feature-tabs {
      flex-direction: column;
      overflow-x: visible;
      overflow-y: visible;
      gap: 0.8rem;
      padding-bottom: 0;
      position: sticky;
      top: 100px;
      align-self: flex-start;
    }

    .einvites-features .feature-tab {
      text-align: left;
      width: 100%;
      min-width: auto;
      white-space: normal;
      padding: 0.4rem 0.5rem;
      border-radius: 0;
      font-size: 1rem;
      background: transparent;
      border: none;
      align-items: flex-start;
      gap: 0.75rem;
      display: flex;
      flex-direction: row;
    }

    .einvites-features .feature-tab .button-icon {
      flex-shrink: 0;
      font-size: 1.2rem;
      line-height: 1;
    }

    .einvites-features .feature-tab .button-content {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      flex: 1;
      position: relative;
    }

    .einvites-features .feature-tab .button-label {
      display: block;
      font-size: 1rem;
      font-weight: 400;
    }

    .einvites-features .feature-tab .button-description {
      display: block;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 300;
      line-height: 1.3;
      text-align: left;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, opacity 0.3s ease, color 0.25s ease;
    }

    .einvites-features .feature-tab .button-content::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 100%;
      height: 2px;
      display: block;
      background: linear-gradient(90deg, rgba(60, 200, 255, 0.9) 0%, rgba(60, 200, 255, 0) 100%);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s ease;
    }

    .einvites-features .feature-tab:hover,
    .einvites-features .feature-tab.is-active {
      background: transparent;
      border-color: transparent;
      transform: translateX(0);
    }

    .einvites-features .feature-tab:hover .button-content::after {
      transform: scaleX(0.5);
      opacity: 0.5;
    }

    .einvites-features .feature-tab.is-active .button-content::after {
      transform: scaleX(1);
    }

    .einvites-features .feature-tab.is-active .button-description {
      max-height: 100px;
      opacity: 1;
      color: rgba(60, 200, 255, 0.7);
    }
  }

.tab-subheadline {
  color: #ffffff;
}

.feature-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.5rem;
  margin: 1.5rem 0 2.5rem;
  justify-content: center;
}

.feature-tab {
  background: transparent;
  border: 0;
  color: #c4cad6;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  padding: 0.45rem 0;
  position: relative;
  cursor: pointer;
  transition: color 0.25s ease;
  font-weight: 600;
}

.feature-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(60, 200, 255, 0), rgba(60, 200, 255, 0.9), rgba(60, 200, 255, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.feature-tab:hover,
.feature-tab:focus-visible,
.feature-tab.is-active {
  color: #ffffff;
}

.feature-tab:hover::after,
.feature-tab:focus-visible::after,
.feature-tab.is-active::after {
  transform: scaleX(1);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.custom-layouts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
  margin-top: 2.5rem;
}

.custom-layouts-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .custom-layouts-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .custom-layouts-list {
    grid-template-columns: 1fr;
  }
}

.custom-layouts-list article {
  position: relative;
  padding: 1.5rem;
  border-radius: 8px;
  background: rgba(60, 200, 255, 0.08);
  border: 1px solid rgba(60, 200, 255, 0.2);
  transition: all 0.3s ease;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.custom-layouts-list article::before {
  content: none;
}

.custom-layouts-list article:hover {
  background: rgba(60, 200, 255, 0.12);
  border-color: rgba(60, 200, 255, 0.35);
  box-shadow: 0 0 20px rgba(60, 200, 255, 0.3);
}

.custom-layouts-list .feature-icon + h3, .custom-layouts-list .feature-icon + h3 + p {
  display: block;
}
.custom-layouts-list .feature-icon + div {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-icon {
  width: 100px;
  height: 100px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  margin-right: 1.2rem;
  float: left;
  box-sizing: border-box;
}

.feature-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
}

.custom-layouts-list h3 {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  color: #3cc8ff;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.custom-layouts-list p {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.custom-layouts-list .module-flow-toggle {
  margin-top: 0.85rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #3cc8ff;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
  border-bottom: 1px dashed #3cc8ff;
  transition: opacity 0.3s ease, border-bottom-style 0.3s ease;
}

.custom-layouts-list .module-flow-toggle:hover,
.custom-layouts-list .module-flow-toggle:focus-visible {
  border-bottom-style: solid;
  opacity: 0.8;
  outline: none;
}

.custom-layouts-media img {
  width: 100%;
  border-radius: 22px;
  display: block;
}


.custom-layouts--dashboard .custom-layouts-list {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .custom-layouts--dashboard .custom-layouts-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .custom-layouts--dashboard .custom-layouts-list {
    grid-template-columns: 1fr;
  }
}

.core-modules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.core-modules-grid article {
  background: #10131b;
  border: 1px solid rgba(60, 200, 255, 0.35);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 0 22px rgba(60, 200, 255, 0.35), 0 10px 24px rgba(5, 12, 22, 0.35);
}

.core-module-media {
  margin: -1.6rem -1.6rem 1.2rem;
  border-radius: 16px 16px 12px 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #10131b;
  padding: 1.5rem 0;
}

.core-module-media img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  display: block;
  border: none !important;
}

.core-modules-grid h3 {
  margin-bottom: clamp(0.2rem, 0.5vw, 0.3rem);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

.core-modules-grid p {
  color: var(--muted);
}

@media (max-width: 720px) {
  .feature-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .features-intro {
    text-align: left;
  }
}

@media (max-width: 980px) {
  .custom-layouts {
    grid-template-columns: 1fr;
  }

  .custom-layouts-media {
    order: -1;
  }
}

@media (max-width: 980px) {
  .core-modules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .core-modules-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .accreditation-intro .intro-media {
    order: -1;
  }

}

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

.security-grid article {
  background: rgba(8, 14, 24, 0.65);
  border: 1px solid rgba(60, 200, 255, 0.35);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 0 18px rgba(60, 200, 255, 0.3), 0 12px 30px rgba(5, 12, 22, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.security-grid h3 {
  margin-bottom: clamp(0.2rem, 0.5vw, 0.3rem);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
}

.security-grid p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.feature-grid article {
  position: relative;
  padding: 1.5rem;
  border-radius: 8px;
  background: rgba(60, 200, 255, 0.08);
  border: 1px solid rgba(60, 200, 255, 0.2);
  transition: all 0.3s ease;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  height: 100%;
  gap: 0.75rem;
}

.feature-grid article::before {
  content: none;
}

.feature-grid article:hover {
  background: rgba(60, 200, 255, 0.12);
  border-color: rgba(60, 200, 255, 0.35);
  box-shadow: none;
}

.feature-grid h3 {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  color: #3cc8ff;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.feature-grid p {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 700px) {
  .security-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.accreditation-planning {
  padding: 3rem 0;
}

.accreditation-planning .system-shell {
  text-align: center;
  margin-bottom: 2.5rem;
  align-items: center;
}

.accreditation-planning .system-content {
  max-width: 1400px;
}

.accreditation-planning .system-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: clamp(0.85rem, 1.2vw, 1.2rem) 0 clamp(1rem, 1.5vw, 1.5rem);
  line-height: 1.1;
  color: #ffffff;
}

.accreditation-planning .system-content .section-content {
  color: #ffffff;
  margin-bottom: 0;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.planning-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.planning-grid article {
  background: rgba(8, 14, 24, 0.65);
  border: 1px solid rgba(60, 200, 255, 0.35);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 0 18px rgba(60, 200, 255, 0.3), 0 12px 30px rgba(5, 12, 22, 0.35);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.planning-icon-css {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

/* Plan icon */
.plan-icon {
  background: url('../../assets/images/accreditation/plan-icon.svg') center/contain no-repeat;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

/* Configure icon */
.configure-icon {
  background: url('../../assets/images/accreditation/configure-icon.svg') center/contain no-repeat;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

/* Run icon */
.run-icon {
  background: url('../../assets/images/accreditation/run-icon.svg') center/contain no-repeat;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

/* Accreditation icon - Badge/Credential */
.accreditation-icon {
  background: linear-gradient(135deg, rgba(60, 200, 255, 0.2), rgba(145, 244, 244, 0.1));
  border: 2px solid rgba(60, 200, 255, 0.5);
  border-radius: 10px;
  position: relative;
  box-shadow: inset 0 0 8px rgba(60, 200, 255, 0.2);
}

.accreditation-icon::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 22px;
  border: 2.5px solid rgba(60, 200, 255, 0.8);
  border-radius: 1px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 8px 0 -6px rgba(60, 200, 255, 0.5);
}

.accreditation-icon::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background: rgba(60, 200, 255, 0.7);
  border-radius: 50%;
  left: 50%;
  top: 38%;
  transform: translateX(-50%);
  box-shadow: 0 8px 0 -2px rgba(60, 200, 255, 0.6), 0 14px 0 -2px rgba(60, 200, 255, 0.5);
}

/* Ticketing icon - Ticket */
.ticketing-icon {
  background: linear-gradient(135deg, rgba(60, 200, 255, 0.2), rgba(145, 244, 244, 0.1));
  border: 2px solid rgba(60, 200, 255, 0.5);
  border-radius: 6px;
  position: relative;
  box-shadow: inset 0 0 8px rgba(60, 200, 255, 0.2);
}

.ticketing-icon::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 16px;
  border: 2.5px solid rgba(60, 200, 255, 0.8);
  border-radius: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ticketing-icon::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 1px;
  background: rgba(60, 200, 255, 0.8);
  left: 50%;
  top: 45%;
  transform: translateX(-50%);
  box-shadow: 0 5px 0 rgba(60, 200, 255, 0.7), 0 10px 0 rgba(60, 200, 255, 0.6);
}

/* Vehicles icon - Car/Vehicle */
.vehicles-icon {
  background: linear-gradient(135deg, rgba(60, 200, 255, 0.2), rgba(145, 244, 244, 0.1));
  border: 2px solid rgba(60, 200, 255, 0.5);
  border-radius: 8px;
  position: relative;
  box-shadow: inset 0 0 8px rgba(60, 200, 255, 0.2);
}

.vehicles-icon::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 12px;
  border: 2.5px solid rgba(60, 200, 255, 0.8);
  border-radius: 4px;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.vehicles-icon::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 2px;
  background: rgba(60, 200, 255, 0.7);
  left: 50%;
  top: 58%;
  transform: translateX(-50%);
  border-radius: 1px;
  box-shadow: -8px 6px 0 -2px rgba(60, 200, 255, 0.5), 8px 6px 0 -2px rgba(60, 200, 255, 0.5);
}


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

@media (max-width: 640px) {
  .planning-grid {
    grid-template-columns: 1fr;
  }
}


.panel {
  background: var(--card);
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.panel-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.panel ul {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--muted);
}

.panel ul li::before {
  content: "✓";
  color: #6be2a7;
  margin-right: 0.5rem;
}

.text-link {
  color: var(--accent);
  display: inline-flex;
  margin-top: 1rem;
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: transparent;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.footer-title {
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer a {
  display: block;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.site-footer a:hover {
  color: var(--text);
}

.copyright {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 860px) {
  .site-header {
    z-index: 102;
  }

  .nav-group {
    width: 100%;
    justify-content: space-between;
    flex: 1 1 100%;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(8, 14, 24, 0.98) 0%, rgba(15, 25, 40, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 0;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    display: none;
    overflow-y: auto;
    z-index: 100;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
    animation: fadeInMenu 0.3s ease forwards;
  }

  @keyframes fadeInMenu {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .site-nav .nav-link {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.25s ease;
    transform: translateX(0);
    position: relative;
  }

  .site-nav .nav-link:hover {
    background: rgba(60, 200, 255, 0.1);
    transform: translateX(8px) translateY(0);
  }

  .nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-dropdown .dropdown-toggle {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 12px;
    text-align: left;
    justify-content: space-between;
    transition: all 0.25s ease;
    transform: translateX(0);
  }

  .nav-dropdown .dropdown-toggle:hover {
    background: rgba(60, 200, 255, 0.1);
    transform: translateX(8px) translateY(0);
  }

  .nav-dropdown .dropdown-caret {
    transition: transform 0.3s ease;
  }

  .nav-dropdown.open .dropdown-caret {
    transform: rotate(180deg);
  }

  .site-nav .dropdown-menu {
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    border-left: 2px solid rgba(60, 200, 255, 0.4) !important;
    box-shadow: none !important;
    margin-left: 1.5rem !important;
    padding-left: 1rem !important;
    transform: none !important;
    display: flex !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease !important;
    top: auto !important;
    left: auto !important;
  }

  .site-nav .nav-dropdown.open .dropdown-menu {
    max-height: 500px !important;
    opacity: 1 !important;
    padding: 0.5rem 0 !important;
    padding-left: 1rem !important;
    pointer-events: auto !important;
  }

  .solutions-services .service-dropdown .dropdown-menu {
    position: absolute !important;
    top: auto !important;
    bottom: calc(100% + 0.6rem) !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(6px) !important;
    width: min(92vw, 360px) !important;
    max-width: calc(100vw - 2rem) !important;
    margin: 0 !important;
    padding: 0 !important;
    background: linear-gradient(135deg, rgba(10, 15, 25, 0.88) 0%, rgba(20, 30, 45, 0.88) 100%) !important;
    background-color: rgba(10, 15, 25, 0.88) !important;
    backdrop-filter: blur(32px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(32px) saturate(140%) !important;
    border: 1.5px solid rgba(60, 200, 255, 0.45) !important;
    border-left: none !important;
    box-shadow: 0 0 40px rgba(60, 200, 255, 0.3), 0 20px 60px rgba(5, 12, 22, 0.6), inset 0 1px 0 rgba(60, 200, 255, 0.2) !important;
    max-height: none !important;
    overflow: visible !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    right: auto !important;
    isolation: isolate !important;
  }

  .solutions-services .nav-dropdown.open .dropdown-menu {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
    max-height: none !important;
    padding: 0 !important;
  }

  .solutions-services .dropdown-menu.service-menu {
    width: min(92vw, 360px) !important;
    max-width: calc(100vw - 2rem) !important;
    padding: 1.6rem 1.6rem 1.7rem !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, rgba(10, 15, 25, 0.88) 0%, rgba(20, 30, 45, 0.88) 100%) !important;
    background-color: rgba(10, 15, 25, 0.88) !important;
    backdrop-filter: blur(32px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(32px) saturate(140%) !important;
    border: 1.5px solid rgba(60, 200, 255, 0.45) !important;
    box-shadow: 0 0 40px rgba(60, 200, 255, 0.3), 0 20px 60px rgba(5, 12, 22, 0.6), inset 0 1px 0 rgba(60, 200, 255, 0.2) !important;
  }

  .solutions-services .service-menu-speedometer,
  .solutions-services .service-menu-options {
    padding-top: 1.4rem;
    padding-bottom: 0.4rem;
  }

  .solutions-services .service-menu-description {
    padding: 0.3rem 0.2rem 0.4rem;
  }

  .solutions-services .service-menu-links {
    padding-top: 0.2rem;
    padding-bottom: 1rem;
  }

  .solutions-services .service-menu {
    background: linear-gradient(135deg, rgba(10, 15, 25, 0.96) 0%, rgba(20, 30, 45, 0.96) 100%) !important;
    backdrop-filter: blur(28px) !important;
    -webkit-backdrop-filter: blur(28px) !important;
  }

  .site-nav .dropdown-menu a {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    transform: translateX(0);
    transition: all 0.25s ease;
  }

  .site-nav .dropdown-menu a:hover {
    background: rgba(60, 200, 255, 0.15);
    transform: translateX(8px);
  }

  .header-cta {
    margin-left: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(60, 200, 255, 0.2);
  }
  50% {
    box-shadow: 0 12px 35px rgba(60, 200, 255, 0.45);
  }
}

@keyframes sweepGlow {
  0% {
    transform: translateY(-20px);
    opacity: 0.4;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-20px);
    opacity: 0.4;
  }
}

@keyframes heroDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes videoGlow {
  0%,
  100% {
    box-shadow: 0 0 14px rgba(90, 210, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 26px rgba(90, 210, 255, 0.7);
  }
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes heroSweep {
  0% {
    transform: translateX(-60%);
  }
  100% {
    transform: translateX(60%);
  }
}

@media (max-width: 540px) {
  .hero {
    min-height: 100dvh;
    padding-top: clamp(8rem, 13vh, 10.5rem);
  }
}

#scrollToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 54px;
  height: 54px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2) 0%, rgba(0, 188, 255, 0.15) 40%, rgba(5, 15, 30, 0.9) 100%),
              linear-gradient(135deg, rgba(0, 188, 255, 0.9) 0%, rgba(0, 136, 204, 0.95) 100%);
  border: 1px solid rgba(60, 200, 255, 0.45);
  border-radius: 16px;
  color: #ffffff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, background 0.25s ease;
  z-index: 999;
  box-shadow: 0 10px 24px rgba(5, 12, 22, 0.45), 0 0 18px rgba(60, 200, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

#scrollToTop svg {
  width: 22px;
  height: 22px;
}

#scrollToTop svg circle {
  fill: none;
}

#scrollToTop svg path {
  stroke: #e9f6ff;
  stroke-width: 2.6;
}

@media (max-width: 768px) {
  #scrollToTop {
    bottom: 1.5rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}

#scrollToTop.show {
  opacity: 1;
  visibility: visible;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#scrollToTop:hover {
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28) 0%, rgba(0, 188, 255, 0.2) 40%, rgba(8, 18, 36, 0.92) 100%),
              linear-gradient(135deg, rgba(0, 188, 255, 1) 0%, rgba(0, 150, 225, 0.95) 100%);
  box-shadow: 0 14px 28px rgba(5, 12, 22, 0.5), 0 0 24px rgba(60, 200, 255, 0.55);
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(60, 200, 255, 0.75);
}

#scrollToTop:active {
  transform: translateY(-2px) scale(0.99);
}

#scrollToTop:focus-visible {
  outline: 2px solid rgba(60, 200, 255, 0.7);
  outline-offset: 4px;
}

/* Testimonials Slider */
.testimonials {
  padding: 100px 0 100px;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
}

.testimonials .container {
  overflow: visible;
}

.testimonials .section-heading {
  margin-bottom: 40px;
}

.testimonials .why-choose-us-title {
  margin-bottom: 0;
}

.testimonials-slider {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  border-radius: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 8px;
  padding-left: 8px;
}

.testimonials-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 18px 0;
  overflow: visible;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
}

.testimonials-progress {
  position: relative;
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.testimonials-progress .progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: #3cc8ff;
  transition: width 0.5s ease;
}

.testimonials-counter {
  font-size: 0.95rem;
  color: #ffffff;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.testimonials-counter .divider {
  opacity: 0.5;
  margin: 0 6px;
}

.testimonials-track {
  position: relative;
  width: 100%;
  max-width: 1260px;
  height: 520px;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: visible;
}

.testimonial-card {
  position: absolute;
  width: 100%;
  max-width: 1260px;
  height: 520px;
  top: 0;
  left: 0;
  transform: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
  border: none;
  background: transparent;
  box-shadow: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: absolute;
  left: 0;
  visibility: visible;
}

.testimonial-card.exit-left {
  opacity: 0;
  transform: none;
  position: absolute;
  visibility: hidden;
}

.testimonial-content {
  border-radius: 0;
  padding: 60px 36px;
  position: relative;
  box-shadow: none;
  backdrop-filter: none;
  margin: 0;
  z-index: 5;
  background: transparent;
  height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.testimonial-badge {
  display: none;
}


.testimonial-quote {
  margin-bottom: 25px;
  display: flex;
  justify-content: flex-start;
  opacity: 0.8;
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.testimonial-text {
  font-size: 1.35rem;
  line-height: 1.8;
  color: #e8ecf0;
  margin-bottom: 16px;
  font-weight: 400;
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.testimonial-author {
  border-top: 1px solid rgba(60, 200, 255, 0.15);
  padding-top: 12px;
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.author-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-image {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(60, 200, 255, 0.4);
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}

.author-info h4 {
  font-size: 1.3rem;
  color: #3cc8ff;
  margin-bottom: 6px;
  font-weight: 600;
}

.author-info p {
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 400;
}

.testimonials-navigation {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: visible;
  z-index: 10;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 8px;
}

.testimonial-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(60, 200, 255, 0.4);
  background: rgba(30, 40, 60, 0.4);
  color: #3cc8ff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  overflow: visible;
  transform-origin: center center;
}

.testimonial-nav-btn:hover {
  background: rgba(60, 200, 255, 0.2);
  border-color: #3cc8ff;
  box-shadow: 0 0 20px rgba(60, 200, 255, 0.4);
  transform: scale(1.1);
  overflow: visible;
}

.testimonial-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.testimonial-nav-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

.testimonials-dots {
  display: none;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(60, 200, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: #3cc8ff;
  box-shadow: 0 0 15px rgba(60, 200, 255, 0.6);
  transform: scale(1.2);
}

.testimonial-dot:hover {
  background: rgba(60, 200, 255, 0.6);
}

/* Responsive Testimonials */
@media (max-width: 768px) {
  .testimonials {
    padding: 80px 0 100px;
    overflow-x: hidden;
    overflow-y: visible;
  }

  .testimonials .section-heading {
    margin-bottom: 50px;
  }

  .testimonials .why-choose-us-title {
    margin-bottom: 0;
  }

  .testimonials-slider {
    padding: 0;
    max-width: 100%;
  }

  .testimonials-track {
    max-width: 100%;
    height: 420px;
    margin-bottom: 0;
  }

  .testimonial-card {
    max-width: 100%;
  }

  .testimonial-content {
    padding: 40px 28px;
    background-attachment: scroll;
    height: 420px;
    width: 100%;
  }

  .testimonial-card {
    height: 420px;
  }

  .testimonial-quote,
  .testimonial-text,
  .testimonial-author {
    max-width: 100%;
  }

  .testimonials-navigation {
    left: 0;
    right: auto;
    gap: 14px;
  }

  .testimonial-text {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 25px;
  }

  .author-image {
    width: 50px;
    height: 50px;
  }

  .author-info h4 {
    font-size: 1.05rem;
  }

  .author-info p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 60px 0 80px;
    overflow-x: hidden;
    overflow-y: visible;
  }

  .testimonial-card {
    max-width: 100%;
  }

  .testimonial-content {
    padding: 28px 22px;
    background-attachment: scroll;
    min-height: 300px;
  }

  .testimonials-slider {
    padding: 0 8px;
  }

  .testimonial-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .testimonial-quote svg {
    width: 36px;
    height: 36px;
  }

  .author-image {
    width: 48px;
    height: 48px;
  }

  .author-profile {
    gap: 12px;
  }

  .author-info h4 {
    font-size: 1rem;
  }

  .author-info p {
    font-size: 0.85rem;
  }

  .testimonials-track {
    max-width: 100%;
    min-height: 540px;
    margin-bottom: 30px;
  }
  
  .testimonials .section-heading h2 {
    font-size: 1.8rem;
  }
  
  .testimonials .section-heading p {
    font-size: 1.05rem;
  }
}

/* CTA Footer Section */
.cta-footer-section {
  position: relative;
  background: transparent;
  padding: 5rem 0 0.5rem;
  margin-top: 2rem;
  overflow: hidden;
}

.cta-glow-effect {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #0066CC, #00BCFF, #0066CC, transparent);
  filter: blur(1px);
  box-shadow: 0 0 30px rgba(0, 188, 255, 0.6), 0 0 60px rgba(0, 102, 204, 0.4);
}

.footer-redesigned {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-top-section {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 2rem;
}

.footer-get-in-touch {
  display: inline-block;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  background: linear-gradient(90deg, #ffffff 0%, #e0f7ff 25%, #3cc8ff 50%, #e0f7ff 75%, #ffffff 100%);
  background-size: 200% 100%;
  background-position: 50% center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  margin-bottom: 2rem;
  line-height: 1;
  letter-spacing: -3px;
  max-width: 100%;
  word-break: break-word;
  width: 100%;
  filter: drop-shadow(0 8px 25px rgba(60, 200, 255, 0.4));
}

.footer-get-in-touch:hover {
  transform: scale(1.08) translateY(-5px);
  filter: drop-shadow(0 15px 40px rgba(0, 188, 255, 0.6));
  animation: gradientSwing 10s ease-in-out infinite;
  -webkit-text-stroke: 1.2px #3cc8ff;
}

@keyframes gradientSwing {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.footer-statement {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 900px;
  font-weight: 400;
  margin: 0 0 1.5rem 0;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.footer-contact-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0 1rem 0;
}

.footer-contact-items {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #3cc8ff;
}

.contact-divider {
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid #3cc8ff;
  background: transparent;
  flex-shrink: 0;
}

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.social-button {
  position: relative;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(60, 200, 255, 0.1) 0%, rgba(60, 200, 255, 0.15) 100%);
  border: 2px solid rgba(60, 200, 255, 0.45);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.social-button svg {
  width: 28px;
  height: 28px;
  fill: #3cc8ff;
  color: #3cc8ff;
  transition: transform 0.3s ease, fill 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 0px rgba(60, 200, 255, 0.2));
}

.social-button::before {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-0.9rem);
  background: rgba(60, 200, 255, 0.95);
  color: #ffffff;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(60, 200, 255, 0.4);
  z-index: 10;
  font-weight: 500;
}

.social-button:hover {
  background: rgba(60, 200, 255, 0.25);
  border-color: rgba(60, 200, 255, 0.75);
  box-shadow: 0 0 24px rgba(60, 200, 255, 0.55), inset 0 0 12px rgba(60, 200, 255, 0.12);
  transform: scale(1.1) translateY(-2px);
}

.social-button:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-0.9rem);
}

.social-button:hover svg {
  transform: scale(1.2);
  fill: #3cc8ff;
  filter: drop-shadow(0 0 8px rgba(60, 200, 255, 0.6));
}

.footer-gradient-line {
  width: 80%;
  max-width: 1200px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(60, 200, 255, 0.6) 20%, rgba(60, 200, 255, 0.8) 50%, rgba(60, 200, 255, 0.6) 80%, transparent 100%);
  box-shadow: 0 0 20px rgba(60, 200, 255, 0.5);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.footer-bottom-section {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

/* Left Section: Contact Info */
.footer-left-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.footer-contact-item {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.footer-contact-item a:hover {
  color: #ffffff;
  border-bottom-color: #00BCFF;
}

.footer-address {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Center Section: Links */
.footer-center {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  justify-self: center;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-links-column h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-links-column h4::after {
  content: '';
  display: none;
}

.footer-links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.footer-links-column a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  display: inline-block;
}

.footer-links-column a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}



/* Footer Bottom Wrapper */
.footer-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  margin-top: 1.5rem;
  flex-wrap: nowrap;
  width: calc(100% - 18rem);
  margin-left: 9rem;
  margin-right: 9rem;
}

/* Footer Bottom Line */
.footer-bottom-line {
  text-align: left;
  padding-top: 0.5rem;
  border-top: none;
  display: flex;
  justify-content: flex-start;
  flex: 0 0 auto;
  margin-top: 0;
  margin-bottom: 0;
}

.footer-bottom-line p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin: 0;
  font-weight: 400;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.footer-link {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #3cc8ff;
}

.footer-link::after {
  display: none;
}

.footer-link:hover::after {
  transform: scaleX(0);
}

.footer-link-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(60, 200, 255, 0.6);
  display: inline-block;
}

/* Minimal footer layout */
.cta-footer-section.footer-minimal {
  background: transparent;
  color: #e6eef7;
  padding: 8rem 0 3rem;
  margin-top: 5rem;
  border-top: 1px solid rgba(60, 200, 255, 0.15);
}

.footer-minimal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
}

.footer-column-title {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 1.5rem 0;
}

.footer-minimal-left {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.footer-minimal-center {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.footer-center-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-center-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.15;
  transition: all 0.3s ease;
  width: fit-content;
}

.footer-center-links a:hover {
  color: #3cc8ff;
  transform: translateX(5px);
}

.footer-communicate-link {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem 0;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  width: fit-content;
}

.footer-communicate-link:hover {
  color: #3cc8ff;
  transform: translateX(5px);
}

.footer-left-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-left-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.15;
  transition: all 0.3s ease;
  width: fit-content;
}

.footer-left-links a:hover {
  color: #3cc8ff;
  transform: translateX(5px);
}

.footer-minimal-right {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
}

.footer-minimal-dots {
  display: flex;
  gap: 0.8rem;
}

.footer-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(60, 200, 255, 0.15);
  border: 2px solid rgba(60, 200, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.footer-dot svg {
  width: 24px;
  height: 24px;
  fill: #3cc8ff;
  color: #3cc8ff;
}

.footer-dot:hover {
  background: rgba(60, 200, 255, 0.3);
  border-color: rgba(60, 200, 255, 0.7);
  box-shadow: 0 0 20px rgba(60, 200, 255, 0.4);
  transform: scale(1.05);
}

.footer-minimal-contact {
  text-align: right;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.8;
}

.footer-minimal-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(60, 200, 255, 0.4) 50%, transparent 100%);
  margin-top: 4rem;
}

.footer-minimal-bottom {
  text-align: center;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  font-weight: 400;
  color: #ffffff;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-minimal-bottom p {
  margin: 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.footer-legal-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #3cc8ff;
}

.footer-legal-separator {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .footer-minimal-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-minimal-right {
    align-items: flex-start;
  }

  .footer-minimal-links {
    text-align: left;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-bottom-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-left-contact {
    align-items: center;
    text-align: center;
  }

  .footer-center {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-self: auto;
  }

  .footer-links-column {
    align-items: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .footer-get-in-touch {
    font-size: clamp(3rem, 10vw, 6rem);
  }

  .footer-bottom-wrapper {
    width: calc(100% - 8rem);
    margin-left: 4rem;
    margin-right: 4rem;
  }
}

@media (max-width: 768px) {
  .cta-footer-section {
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
  }

  .footer-top-section {
    padding-bottom: 1.5rem;
  }

  .footer-bottom-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-get-in-touch {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 1.5rem;
  }

  .footer-statement {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .footer-center {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-links-column h4 {
    font-size: 1rem;
  }

  .footer-links-column a {
    font-size: 0.9rem;
  }

  .footer-contact-info {
    gap: 1rem;
  }

  .footer-contact-item {
    font-size: 0.9rem;
  }

  .social-button {
    width: 45px;
    height: 45px;
  }

  .social-button svg {
    width: 22px;
    height: 22px;
  }

  .footer-bottom-line {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }

  .footer-bottom-wrapper {
    width: calc(100% - 4rem);
    margin-left: 2rem;
    margin-right: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .footer-bottom-line {
    order: 1;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    order: 2;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cta-footer-section {
    padding: 2rem 0 1rem;
    margin-top: 3rem;
  }

  .footer-top-section {
    padding-bottom: 1.5rem;
  }

  .footer-bottom-section {
    gap: 1.5rem;
  }

  .footer-get-in-touch {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1rem;
    letter-spacing: -2px;
  }

  .footer-statement {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .footer-center {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-links-column h4 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .footer-links-column a {
    font-size: 0.85rem;
  }

  .footer-contact-info {
    gap: 0.8rem;
  }

  .footer-contact-item {
    font-size: 0.85rem;
  }

  .footer-left-contact {
    align-items: center;
  }

  .footer-center {
    align-items: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-social-icons {
    justify-content: center;
    gap: 0.8rem;
  }

  .social-button {
    width: 40px;
    height: 40px;
    padding: 0.6rem;
    min-width: 40px;
  }

  .social-button svg {
    width: 20px;
    height: 20px;
  }

  .footer-bottom-line p {
    font-size: 0.75rem;
  }

  .footer-bottom-wrapper {
    width: calc(100% - 4rem);
    margin-left: 2rem;
    margin-right: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .footer-bottom-line {
    order: 1;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    order: 2;
    width: 100%;
    justify-content: center;
  }
}

/* Success and Error Messages in Forms */
.success-message,
.error-message {
  margin-top: 40px;
  margin-bottom: 30px;
  padding: 16px 20px;
  border-radius: 10px;
  font-weight: 500;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.success-message {
  background: rgba(46, 213, 115, 0.12);
  border: 1px solid rgba(46, 213, 115, 0.5);
  color: #2ed573;
}

.error-message {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #ef4444;
}

/* Access Planning Section Styling */
.access-planning {
  padding: 3rem 0;
}

.access-planning .section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.access-planning .benefits-gradient {
  background: linear-gradient(135deg, #0e9aff 0%, #91f4f4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.access-planning .planning-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.access-planning .planning-grid article {
  background: rgba(8, 14, 24, 0.65);
  border: 1px solid rgba(60, 200, 255, 0.35);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 0 18px rgba(60, 200, 255, 0.3), 0 12px 30px rgba(5, 12, 22, 0.35);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.access-planning .planning-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.access-planning .planning-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .access-planning .planning-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .access-planning .planning-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Staffing Page Styling */
.staffing-intro {
  padding: 4rem 0;
  text-align: center;
}

.staffing-statement h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #ffffff;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

.staffing-services {
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  grid-auto-rows: 1fr;
  overflow: visible;
  padding-top: 1rem;
  margin-top: -1rem;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    grid-auto-rows: auto;
  }
}

.staffing-service-card {
  position: relative;
  background: rgba(60, 200, 255, 0.08);
  border: 1px solid rgba(60, 200, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 0.25rem;
}

.staffing-service-card:hover {
  background: rgba(60, 200, 255, 0.12);
  border-color: rgba(60, 200, 255, 0.6);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(60, 200, 255, 0.5),
    0 0 50px rgba(60, 200, 255, 0.3),
    inset 0 0 40px rgba(60, 200, 255, 0.08);
  transform: translateY(-4px);
}

.service-image {
  width: 100%;
  height: 210px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(60, 200, 255, 0.1);
  border-bottom: 1px solid rgba(60, 200, 255, 0.2);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.staffing-service-card h3 {
  font-size: 1.1rem;
  color: #3cc8ff;
  margin: 0;
  font-weight: 600;
}

.staffing-service-card p {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

.staffing-talent {
  padding: 5rem 0;
}

.talent-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.talent-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #ffffff;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

.talent-items {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  max-width: 900px;
  margin: 0 auto;
}

.talent-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
}

.talent-item:nth-child(even) {
  flex-direction: row-reverse;
}

.talent-shape {
  flex-shrink: 0;
  width: 240px;
  height: 240px;
  perspective: 1200px;
  position: relative;
  cursor: default;
  overflow: visible;
  transition: transform 0.3s ease;
}

.talent-shape--clickable {
  cursor: pointer;
}

.talent-shape:hover {
  transform: scale(1.05);
}

.talent-shape:active {
  transform: scale(0.98);
}

/* 3D Stack of Profile Cards */
.shape-stack {
  width: 200px;
  height: 240px;
  position: relative;
  margin: 0 auto;
  transform-style: preserve-3d;
  overflow: visible;
  transition: transform 0.4s ease;
}

.profile-card {
  position: absolute;
  width: 180px;
  height: 100px;
  background: linear-gradient(135deg, rgba(10, 18, 32, 0.95) 0%, rgba(20, 35, 55, 0.95) 50%, rgba(10, 18, 32, 0.95) 100%);
  border: 2px solid rgba(60, 200, 255, 0.6);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(60, 200, 255, 0.3),
    inset 0 0 30px rgba(60, 200, 255, 0.05);
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  cursor: pointer;
  will-change: transform, opacity;
}

.profile-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(20, 30, 50, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.profile-info {
  flex: 1;
  min-width: 0;
}

.profile-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-trigger {
  position: absolute;
  top: -6px;
  right: -6px;
  padding: 4px 10px 4px 26px;
  border-radius: 999px;
  border: 1px solid rgba(60, 200, 255, 0.7);
  background: rgba(8, 14, 24, 0.92);
  color: #3cc8ff;
  font-size: 0.7rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 0 18px rgba(60, 200, 255, 0.45);
  cursor: pointer;
  z-index: 20;
  transform: none;
  animation: interactPulse 1.6s ease-in-out infinite;
}

.profile-trigger::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3cc8ff;
  animation: interactDot 1.6s ease-in-out infinite;
}

.shape-stack:hover .profile-trigger {
  border-color: rgba(60, 200, 255, 1);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45), 0 0 32px rgba(60, 200, 255, 0.75);
}

@keyframes interactPulse {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

@keyframes interactDot {
  0%, 100% {
    opacity: 0.5;
    box-shadow: 0 0 8px rgba(60, 200, 255, 0.6);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 12px rgba(60, 200, 255, 1);
  }
}

/* Card positioning - stacked */
.card-1 {
  z-index: 4;
  transform: translateZ(40px) translateY(0px);
}

.card-2 {
  z-index: 3;
  transform: translateZ(20px) translateY(15px);
  opacity: 0.9;
}

.card-3 {
  z-index: 2;
  transform: translateZ(0px) translateY(30px);
  opacity: 0.8;
}

.card-4 {
  z-index: 1;
  transform: translateZ(-20px) translateY(45px);
  opacity: 0.7;
}

/* Scatter effect on hover */
.shape-stack:hover .card-1 {
  transform: translateZ(50px) translateX(-40px) translateY(-30px) rotate(-8deg);
  opacity: 1;
}

.shape-stack:hover .card-2 {
  transform: translateZ(45px) translateX(40px) translateY(-15px) rotate(5deg);
  opacity: 1;
}

.shape-stack:hover .card-3 {
  transform: translateZ(40px) translateX(-30px) translateY(20px) rotate(3deg);
  opacity: 1;
}

.shape-stack:hover .card-4 {
  transform: translateZ(35px) translateX(35px) translateY(35px) rotate(-5deg);
  opacity: 1;
}

.shape-stack:hover .profile-card {
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 0 35px rgba(60, 200, 255, 0.6),
    inset 0 0 40px rgba(60, 200, 255, 0.1);
  border-color: rgba(60, 200, 255, 1);
}

/* 3D Stack of Training Flyers (A4 Paper Style) */
.shape-flyers {
  width: 180px;
  height: 280px;
  position: relative;
  margin: 0 auto;
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
  overflow: visible;
}

.training-flyer {
  position: absolute;
  width: 150px;
  height: 212px;
  background: linear-gradient(135deg, rgba(10, 18, 32, 0.95) 0%, rgba(20, 35, 55, 0.95) 50%, rgba(10, 18, 32, 0.95) 100%);
  border: 2px solid rgba(60, 200, 255, 0.6);
  border-radius: 6px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(60, 200, 255, 0.3),
    inset 0 0 30px rgba(60, 200, 255, 0.05);
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  cursor: pointer;
  will-change: transform, opacity;
}

.flyer-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  margin-top: 8px;
}

.flyer-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.flyer-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.flyer-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
  line-height: 1.4;
}

/* Flyer positioning - stacked */
.flyer-1 {
  z-index: 5;
  transform: translateZ(40px) translateY(0px);
}

.flyer-2 {
  z-index: 4;
  transform: translateZ(20px) translateY(10px);
  opacity: 0.9;
}

.flyer-3 {
  z-index: 3;
  transform: translateZ(0px) translateY(20px);
  opacity: 0.8;
}

.flyer-4 {
  z-index: 2;
  transform: translateZ(-20px) translateY(30px);
  opacity: 0.7;
}

.flyer-5 {
  z-index: 1;
  transform: translateZ(-40px) translateY(40px);
  opacity: 0.6;
}

/* Scatter effect on hover */
.shape-flyers:hover .flyer-1 {
  transform: translateZ(60px) translateX(-45px) translateY(-35px) rotate(-8deg);
  opacity: 1;
}

.shape-flyers:hover .flyer-2 {
  transform: translateZ(55px) translateX(45px) translateY(-18px) rotate(6deg);
  opacity: 1;
}

.shape-flyers:hover .flyer-3 {
  transform: translateZ(50px) translateX(-30px) translateY(10px) rotate(3deg);
  opacity: 1;
}

.shape-flyers:hover .flyer-4 {
  transform: translateZ(45px) translateX(35px) translateY(30px) rotate(-5deg);
  opacity: 1;
}

.shape-flyers:hover .flyer-5 {
  transform: translateZ(40px) translateX(0px) translateY(55px) rotate(1deg);
  opacity: 1;
}

.shape-flyers:hover .training-flyer {
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 0 35px rgba(60, 200, 255, 0.6),
    inset 0 0 40px rgba(60, 200, 255, 0.1);
  border-color: rgba(60, 200, 255, 1);
}

/* 3D Floating Award Circles */
.shape-awards {
  width: 220px;
  height: 220px;
  position: relative;
  margin: 20px auto;
  transform-style: preserve-3d;
  perspective: 1200px;
}

.award-badge {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(10, 18, 32, 0.95) 0%, rgba(20, 35, 55, 0.95) 50%, rgba(10, 18, 32, 0.95) 100%);
  border: 2px solid rgba(60, 200, 255, 0.7);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(60, 200, 255, 0.5),
    0 0 50px rgba(60, 200, 255, 0.3),
    inset 0 0 40px rgba(60, 200, 255, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.badge-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.badge-content {
  text-align: center;
}

.badge-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 2px;
}

.hero-accreditation-visual .badge-title,
.carousel-badge .badge-title {
  color: #0b111d;
}

.badge-desc {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.2;
  display: none;
}

/* Badge positioning - floating arrangement */
.badge-1 {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation-name: float1;
}

.badge-2 {
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  animation-name: float2;
  animation-delay: 0.75s;
}

.badge-3 {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation-name: float3;
  animation-delay: 1.5s;
}

.badge-4 {
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  animation-name: float4;
  animation-delay: 2.25s;
}

/* Floating animations */
@keyframes float1 {
  0%, 100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-12px);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translateY(-50%) translateX(0px);
  }
  50% {
    transform: translateY(-50%) translateX(12px);
  }
}

@keyframes float3 {
  0%, 100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(12px);
  }
}

@keyframes float4 {
  0%, 100% {
    transform: translateY(-50%) translateX(0px);
  }
  50% {
    transform: translateY(-50%) translateX(-12px);
  }
}

/* Hover effect - expand and glow */
.badge-1:hover,
.badge-3:hover {
  transform: translateX(-50%) scale(1.4) translateZ(20px) !important;
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.5),
    0 0 45px rgba(60, 200, 255, 0.8),
    0 0 70px rgba(60, 200, 255, 0.5),
    inset 0 0 50px rgba(60, 200, 255, 0.15);
  border-color: rgba(60, 200, 255, 1);
  z-index: 10;
  animation-play-state: paused !important;
}

.badge-2:hover,
.badge-4:hover {
  transform: translateY(-50%) scale(1.4) translateZ(20px) !important;
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.5),
    0 0 45px rgba(60, 200, 255, 0.8),
    0 0 70px rgba(60, 200, 255, 0.5),
    inset 0 0 50px rgba(60, 200, 255, 0.15);
  border-color: rgba(60, 200, 255, 1);
  z-index: 10;
  animation-play-state: paused !important;
}

.award-badge:hover .badge-desc {
  display: block;
}

.shape-awards:hover .award-badge {
  animation-play-state: paused;
}

/* 3D Diamond Gem with Facets */
.shape-diamond {
  width: 180px;
  height: 200px;
  position: relative;
  margin: 20px auto;
  transform-style: preserve-3d;
  animation: diamondRotate 10s linear infinite;
  transition: all 0.4s ease;
  will-change: transform;
}

.shape-diamond:hover {
  animation-play-state: paused;
  transform: scale(1.1);
}

/* Diamond Table (Top Facet) */
.diamond-facet.facet-top {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%) translateZ(40px);
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 50px solid rgba(60, 200, 255, 0.95);
  box-shadow: 0 0 30px rgba(60, 200, 255, 0.7);
}

/* Left Crown Facet */
.diamond-facet.facet-left {
  position: absolute;
  top: 40px;
  left: 10px;
  width: 0;
  height: 0;
  border-top: 50px solid rgba(60, 200, 255, 0.8);
  border-right: 50px solid transparent;
  border-bottom: 80px solid rgba(60, 200, 255, 0.7);
  transform: rotateY(-25deg) translateZ(20px);
  box-shadow: 0 0 25px rgba(60, 200, 255, 0.6);
}

/* Right Crown Facet */
.diamond-facet.facet-right {
  position: absolute;
  top: 40px;
  right: 10px;
  width: 0;
  height: 0;
  border-top: 50px solid rgba(60, 200, 255, 0.8);
  border-left: 50px solid transparent;
  border-bottom: 80px solid rgba(60, 200, 255, 0.7);
  transform: rotateY(25deg) translateZ(20px);
  box-shadow: 0 0 25px rgba(60, 200, 255, 0.6);
}

/* Bottom Pavilion Facet */
.diamond-facet.facet-bottom {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateZ(-10px);
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-top: 90px solid rgba(60, 200, 255, 0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Diamond Shine/Sparkle Effect */
.diamond-shine {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%) translateZ(45px);
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 0.8) 0%, 
    rgba(255, 255, 255, 0.4) 40%, 
    transparent 70%);
  border-radius: 50%;
  animation: diamondSparkle 2s ease-in-out infinite;
  pointer-events: none;
}

.shape-diamond:hover .diamond-shine {
  animation: diamondSparkle 1s ease-in-out infinite;
  width: 50px;
  height: 50px;
}

@keyframes diamondRotate {
  0% { transform: rotateY(0deg) rotateX(10deg); }
  100% { transform: rotateY(360deg) rotateX(10deg); }
}

@keyframes diamondSparkle {
  0%, 100% { 
    opacity: 0.5;
  }
  50% { 
    opacity: 1;
  }
}

/* Enhanced hover effects for all facets */
.shape-diamond:hover .diamond-facet.facet-top {
  border-bottom-color: rgba(60, 200, 255, 1);
  box-shadow: 0 0 40px rgba(60, 200, 255, 0.9);
}

.shape-diamond:hover .diamond-facet.facet-left,
.shape-diamond:hover .diamond-facet.facet-right {
  box-shadow: 0 0 30px rgba(60, 200, 255, 0.8);
}

.shape-diamond:hover .diamond-facet.facet-bottom {
  border-top-color: rgba(60, 200, 255, 0.85);
}


.talent-content {
  flex: 1;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(60, 200, 255, 0.4);
  background: rgba(60, 200, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.talent-content h3 {
  font-size: 1.8rem;
  color: #3cc8ff;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.talent-content p {
  font-size: 1.1rem;
  color: #e8ecf0;
  line-height: 1.8;
  margin: 0;
  margin-bottom: 1rem;
}

.recruiting-reference-link {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: #3cc8ff;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px dashed #3cc8ff;
  transition: opacity 0.3s ease, border-bottom-style 0.3s ease;
}

.recruiting-reference-link:hover,
.recruiting-reference-link:focus {
  border-bottom-style: solid;
  opacity: 0.8;
  outline: none;
}

/* Responsive Staffing */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .service-image {
    height: 180px;
  }

  .staffing-service-card h3 {
    font-size: 1rem;
  }

  .staffing-service-card p {
    font-size: 0.9rem;
  }

  .talent-items {
    gap: 4rem;
  }

  .talent-item {
    gap: 2rem;
  }

  .talent-shape {
    width: 200px;
    height: 200px;
  }

  .shape-stack {
    width: 140px;
    height: 180px;
  }

  .profile-card {
    width: 130px;
    height: 85px;
    padding: 12px;
    gap: 10px;
  }

  .profile-avatar {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .profile-name {
    font-size: 0.85rem;
  }

  .profile-role {
    font-size: 0.7rem;
  }

  .shape-flyers {
    width: 140px;
    height: 220px;
  }

  .training-flyer {
    width: 120px;
    height: 170px;
    padding: 12px 10px;
    gap: 8px;
  }

  .flyer-icon {
    font-size: 1.8rem;
  }

  .flyer-title {
    font-size: 0.8rem;
  }

  .flyer-desc {
    font-size: 0.7rem;
  }

  .shape-awards {
    width: 180px;
    height: 180px;
  }

  .award-badge {
    width: 80px;
    height: 80px;
    padding: 6px;
    gap: 3px;
  }

  .badge-icon {
    font-size: 1.8rem;
  }

  .badge-title {
    font-size: 0.65rem;
  }

  .badge-desc {
    font-size: 0.55rem;
  }

  .talent-content h3 {
    font-size: 1.5rem;
  }

  .talent-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .staffing-intro {
    padding: 3rem 0;
  }

  .staffing-services {
    padding: 3rem 0;
  }

  .staffing-talent {
    padding: 3rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-image {
    height: 170px;
  }

  .staffing-service-card h3 {
    font-size: 0.95rem;
  }

  .staffing-service-card p {
    font-size: 0.85rem;
  }

  .talent-items {
    gap: 3rem;
  }

  .talent-item {
    flex-direction: column !important;
    gap: 1.5rem;
    text-align: center;
  }

  .talent-shape {
    width: 160px;
    height: 160px;
  }

  .shape-stack {
    width: 110px;
    height: 140px;
  }

  .profile-card {
    width: 100px;
    height: 75px;
    padding: 10px;
    gap: 8px;
  }

  .profile-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .profile-name {
    font-size: 0.75rem;
  }

  .profile-role {
    font-size: 0.65rem;
  }

  .shape-flyers {
    width: 110px;
    height: 180px;
  }

  .training-flyer {
    width: 95px;
    height: 134px;
    padding: 10px 8px;
    gap: 6px;
  }

  .flyer-icon {
    font-size: 1.4rem;
  }

  .flyer-title {
    font-size: 0.7rem;
  }

  .flyer-desc {
    font-size: 0.62rem;
  }

  .shape-awards {
    width: 150px;
    height: 150px;
  }

  .award-badge {
    width: 65px;
    height: 65px;
    padding: 5px;
    gap: 2px;
  }

  .badge-icon {
    font-size: 1.4rem;
  }

  .badge-title {
    font-size: 0.58rem;
  }

  .badge-desc {
    font-size: 0.48rem;
  }

  .talent-content h3 {
    font-size: 1.4rem;
  }

  .talent-content p {
    font-size: 1rem;
  }

  .staffing-service-card {
    padding: 1.5rem;
  }

  .talent-heading h2,
  .staffing-statement h2 {
    font-size: 1.8rem;
  }
}

/* Training Modal Styles */
.training-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 10, 20, 0.85);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.training-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.training-modal-content {
  position: relative;
  background: rgba(60, 200, 255, 0.18);
  border: 1px solid rgba(60, 200, 255, 0.4);
  border-radius: 8px;
  padding: 0;
  width: min(1100px, 92vw);
  max-height: 85vh;
  overflow: hidden;
  box-shadow: 0 0 32px rgba(60, 200, 255, 0.15), inset 0 0 1px rgba(60, 200, 255, 0.1);
  animation: modalSlideIn 0.3s ease-out;
  transition: all 0.3s ease;
}

.training-modal-content:hover {
  background: rgba(60, 200, 255, 0.22);
  border-color: rgba(60, 200, 255, 0.5);
  box-shadow: 0 0 40px rgba(60, 200, 255, 0.2), inset 0 0 1px rgba(60, 200, 255, 0.15);
}

@keyframes modalSlideIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.training-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(60, 200, 255, 0.15);
}

.training-modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 600;
}

.training-modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(60, 200, 255, 0.2);
  background: rgba(60, 200, 255, 0.08);
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
  padding: 0;
}

.training-modal-close:hover {
  background: rgba(60, 200, 255, 0.15);
  border-color: rgba(60, 200, 255, 0.4);
  box-shadow: 0 0 12px rgba(60, 200, 255, 0.2);
  transform: rotate(90deg);
}

.training-modal-body {
  padding: 1.5rem 2rem;
  overflow-y: auto;
  max-height: calc(85vh - 100px);
  color: #ffffff;
  line-height: 1.6;
}

.training-programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.training-program-card {
  background: linear-gradient(135deg, rgba(10, 18, 32, 0.9) 0%, rgba(20, 35, 55, 0.9) 50%, rgba(10, 18, 32, 0.9) 100%);
  border: 1px solid rgba(60, 200, 255, 0.5);
  border-radius: 12px;
  padding: 1.75rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.3),
    0 0 15px rgba(60, 200, 255, 0.2);
}

.training-program-card:hover {
  background: linear-gradient(135deg, rgba(15, 25, 42, 1) 0%, rgba(25, 40, 60, 1) 50%, rgba(15, 25, 42, 1) 100%);
  border-color: rgba(60, 200, 255, 0.8);
  transform: translateY(-4px);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(60, 200, 255, 0.5);
}

.training-program-card .program-icon {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.training-program-card h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 600;
}

.training-program-card p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 1);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .training-modal-content {
    width: 95vw;
    max-height: 90vh;
  }

  .training-modal-header {
    padding: 1.5rem;
  }

  .training-modal-header h2 {
    font-size: 1.4rem;
  }

  .training-modal-body {
    padding: 1.5rem;
  }

  .training-programs-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .training-program-card {
    padding: 1.5rem;
  }
}

/* Radio & Dispatch Page Styles */
.hero--radio {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.radio-intro {
  padding: 5rem 0;
}

.intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #ffffff;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

.intro-content > p {
  font-size: 1.05rem;
  color: #e8ecf0;
  line-height: 1.8;
  margin: 0;
}

.intro-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.intro-highlights li {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
  padding-left: 1.8rem;
  position: relative;
}

.intro-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3cc8ff;
  font-weight: 700;
  font-size: 1.1rem;
}

.intro-media {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(60, 200, 255, 0.3);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(60, 200, 255, 0.2);
}

.intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.radio-services {
  padding: 3rem 0;
}

.radio-services {
  padding: 3rem 0;
}

.radio-benefits {
  padding: 5rem 0;
}

.benefits-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #ffffff;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: rgba(60, 200, 255, 0.08);
  border: 1px solid rgba(60, 200, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.benefit-card:hover {
  background: rgba(60, 200, 255, 0.12);
  border-color: rgba(60, 200, 255, 0.6);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(60, 200, 255, 0.5),
    0 0 50px rgba(60, 200, 255, 0.3),
    inset 0 0 40px rgba(60, 200, 255, 0.08);
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.benefit-card h3 {
  font-size: 1.1rem;
  color: #3cc8ff;
  margin: 0;
  font-weight: 600;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Radio & Dispatch */
@media (max-width: 1024px) {
  .hero--radio {
    padding: 4rem 0;
  }

  .radio-intro {
    padding: 3rem 0;
  }

  .intro-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-content h2 {
    font-size: 1.5rem;
  }

  .intro-content > p {
    font-size: 1rem;
  }

  .intro-media {
    height: 300px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero--radio {
    padding: 3rem 0;
  }

  .hero--radio .hero-copy h1 {
    font-size: 1.8rem;
  }

  .radio-intro {
    padding: 2rem 0;
  }

  .intro-content h2 {
    font-size: 1.3rem;
  }

  .intro-content > p {
    font-size: 0.95rem;
  }

  .intro-media {
    height: 250px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* 3D Radio in Hero - REMOVED */

/* Guest Experience Page */
.hero--guest {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.guest-intro {
  padding: 5rem 0;
}

.guest-services {
  padding: 4rem 0;
}

.services-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.guest-why {
  padding: 5rem 0;
}

.why-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.why-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #ffffff;
  margin: 0 0 1rem 0;
  font-weight: 600;
  line-height: 1.3;
}

.why-subtitle {
  font-size: 1.05rem;
  color: #e8ecf0;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: rgba(60, 200, 255, 0.08);
  border: 1px solid rgba(60, 200, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.why-card:hover {
  background: rgba(60, 200, 255, 0.12);
  border-color: rgba(60, 200, 255, 0.6);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(60, 200, 255, 0.5),
    0 0 50px rgba(60, 200, 255, 0.3),
    inset 0 0 40px rgba(60, 200, 255, 0.08);
  transform: translateY(-4px);
}

.why-card h3 {
  font-size: 1.1rem;
  color: #3cc8ff;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.why-card p {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Guest Experience */
@media (max-width: 1024px) {
  .services-grid-6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

@media (max-width: 768px) {
  .services-grid-6 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* Transportation Services Page */
.hero--transportation {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.transportation-intro {
  padding: 5rem 0;
}

.transportation-services {
  padding: 4rem 0;
}

