/* ===== COMPONENTS - MirrorG Premium ===== */

/* ===== BUTTONS - Premium Design ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--border-radius-lg);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: var(--transition-all-smooth);
}

/* Shine effect overlay */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out-expo);
  z-index: 1;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: var(--shadow-primary-sm);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary-lg);
}

.btn--primary:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary-md);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: inset 0 0 0 0 var(--color-primary);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-primary-md);
  transform: translateY(-2px);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.btn--white:hover,
.btn--white:focus-visible {
  background-color: var(--color-off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--accent {
  background: var(--gradient-accent);
  color: var(--color-text-primary);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(255, 203, 5, 0.3);
}

.btn--accent:hover,
.btn--accent:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 203, 5, 0.4);
}

/* Ghost button - minimal style */
.btn--ghost {
  background: transparent;
  color: var(--color-text-primary);
  border-color: transparent;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--color-bg-section);
  color: var(--color-primary);
}

.btn--lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--font-size-md);
  border-radius: var(--border-radius-xl);
}

.btn--sm {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--font-size-sm);
  border-radius: var(--border-radius-md);
}

.btn--full {
  width: 100%;
}

/* Icon in button */
.btn__icon {
  width: 1.25em;
  height: 1.25em;
  transition: transform 0.3s var(--ease-out-expo);
}

.btn:hover .btn__icon {
  transform: translateX(-3px);
}

[dir="rtl"] .btn:hover .btn__icon {
  transform: translateX(3px);
}

/* WhatsApp Button - Premium */
.btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ===== HEADER CTA ===== */
.header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header__cta .btn--whatsapp {
  padding: var(--space-sm);
  border-radius: var(--border-radius-full);
  width: 36px;
  height: 36px;
}

.nav__mobile-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  margin-top: var(--space-lg);
  border-top: 1px solid var(--color-border-light);
}

/* ===== HEADER CTA BUTTONS ===== */
.header__cta-buttons {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  position: absolute;
  left: 0;
}

.header__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--border-radius-pill);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  transition: var(--transition-all-fast);
  white-space: nowrap;
}

.header__btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.header__btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary-md);
}

.header__btn--whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
}

.header__btn--whatsapp:hover {
  background: var(--color-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.header__btn svg {
  flex-shrink: 0;
}

/* Hide header buttons on mobile - show in mobile menu instead */
@media (max-width: 768px) {
  .header__cta-buttons {
    display: none;
  }
}

/* ===== CARDS - Premium Design ===== */
.card {
  background: var(--color-white);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
  transition: var(--transition-all-smooth);
}

/* Subtle gradient overlay on hover */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-card-shine);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.card__image-wrapper {
  position: relative;
  overflow: hidden;
}

.card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.card:hover .card__image {
  transform: scale(1.08);
}

.card__content {
  padding: var(--space-xl);
  position: relative;
  z-index: 2;
}

.card__eyebrow {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  margin-bottom: var(--space-sm);
}

.card__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
  transition: color 0.3s ease;
}

.card:hover .card__title {
  color: var(--color-primary);
}

.card__text {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.card__link {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: var(--transition-all-fast);
}

.card__link::after {
  content: '\2190';
  transition: transform 0.3s var(--ease-out-expo);
}

[dir="rtl"] .card__link::after {
  content: '\2192';
}

.card__link:hover {
  color: var(--color-primary-dark);
  gap: var(--space-md);
}

.card__link:hover::after {
  transform: translateX(-4px);
}

[dir="rtl"] .card__link:hover::after {
  transform: translateX(4px);
}

/* Service Card with Image - Premium */
.service-card {
  text-align: right;
  border: none;
  background: var(--color-white);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
}

.service-card .card__image-wrapper {
  position: relative;
}

.service-card .card__image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .card__image-wrapper::after {
  opacity: 1;
}

.service-card .card__image {
  aspect-ratio: 16/10;
}

.service-card .card__content {
  padding: var(--space-xl);
}

.service-card__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
  transition: color 0.3s ease;
}

.service-card:hover .service-card__title {
  color: var(--color-primary);
}

.service-card__text {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

/* Service Card without Image (icon variant) - Premium */
.service-card--icon {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  background: var(--gradient-light);
  border: 1px solid var(--color-border-light);
}

.service-card--icon:hover {
  border-color: var(--color-primary-light);
  background: var(--color-white);
}

.service-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  color: var(--color-primary);
  background: var(--color-primary-pale);
  border-radius: var(--border-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-all-smooth);
}

.service-card--icon:hover .service-card__icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
  box-shadow: var(--shadow-primary-md);
}

/* Glass Card variant */
.card--glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur-lg));
  -webkit-backdrop-filter: blur(var(--blur-lg));
  border: 1px solid var(--glass-border);
}

/* Featured Card - highlighted */
.card--featured {
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-primary-sm);
}

.card--featured:hover {
  box-shadow: var(--shadow-primary-lg);
}

/* ===== NAVIGATION - Premium ===== */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: var(--z-sticky);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--blur-lg));
  -webkit-backdrop-filter: blur(var(--blur-lg));
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  padding: var(--space-md) var(--space-xl);
}

/* Transparent header - over hero section */
.header--transparent {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

/* Ensure nav links are always dark/black in transparent header */
.header--transparent .nav__link {
  color: #1a1a2e !important;
}

.header--transparent .nav__link:hover {
  color: var(--color-primary) !important;
}

.header--transparent .header__btn--primary {
  background: var(--color-primary) !important;
  color: #fff !important;
}

/* Scrolled header - white background */
.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(var(--blur-lg));
  -webkit-backdrop-filter: blur(var(--blur-lg));
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.header__logo {
  position: absolute;
  right: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.header__logo img {
  height: 50px;
  width: auto;
}

.header__logo.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
}

.nav--desktop {
  display: flex;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger__line:nth-child(1) {
  margin-bottom: 6px;
}

.hamburger__line:nth-child(3) {
  margin-top: 6px;
}

/* Hamburger active state - X shape */
.hamburger.active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
  background-color: var(--color-primary);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
  background-color: var(--color-primary);
}

/* Ensure hamburger is above mobile nav */
.hamburger.active {
  z-index: 1002;
}

/* ===== MOBILE NAVIGATION - Premium Full Screen ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* Dynamic viewport for mobile */
  z-index: 1000;
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.mobile-nav.active {
  right: 0;
}

/* Background with Hero Image */
.mobile-nav__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.mobile-nav__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.88) 30%,
    rgba(248, 249, 250, 0.9) 70%,
    rgba(240, 245, 250, 0.95) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Content Container */
.mobile-nav__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 80px 24px 40px;
  box-sizing: border-box;
}

/* Logo Header */
.mobile-nav__header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s ease 0.2s;
}

.mobile-nav.active .mobile-nav__header {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav__logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 137, 188, 0.15));
}

/* Navigation Menu */
.mobile-nav__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
  padding: 0 16px;
}

.mobile-nav__link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
  background: transparent;
  border: none;
  min-width: 200px;
  text-align: center;
  opacity: 0;
  transform: translateX(30px);
}

/* Staggered animation for links */
.mobile-nav.active .mobile-nav__link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav.active .mobile-nav__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav__link:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active .mobile-nav__link:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.active .mobile-nav__link:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav.active .mobile-nav__link:nth-child(7) { transition-delay: 0.4s; }

.mobile-nav__link::before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.mobile-nav__link:hover {
  color: var(--color-primary);
}

/* Active page - just underline, no box */
.mobile-nav__link--active {
  color: var(--color-primary);
  background: transparent !important;
  border: none !important;
  position: relative;
}

.mobile-nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

.mobile-nav__link:hover::before {
  width: 40%;
}

/* Dropdown Container */
.mobile-nav__dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Parent link with arrow - completely clean, no box */
.mobile-nav__link--parent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Remove the underline pseudo-element for parent link */
.mobile-nav__link--parent::before {
  display: none !important;
}

.mobile-nav__arrow {
  font-size: 0.75rem;  /* 12px - Google minimum */
  transition: transform 0.3s ease;
  color: var(--color-primary);
}

.mobile-nav__link--parent[aria-expanded="true"] .mobile-nav__arrow {
  transform: rotate(180deg);
}

/* Submenu - hidden by default */
.mobile-nav__submenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
  padding: 0;
}

/* Submenu open state */
.mobile-nav__submenu.open {
  max-height: 500px;
  opacity: 1;
  margin-top: 8px;
  padding: 8px 0;
}

/* Sub-links styling - clean text, no boxes */
.mobile-nav__link--sub {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 24px;
  min-width: 180px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  color: var(--color-text-secondary);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.mobile-nav__submenu.open .mobile-nav__link--sub {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav__submenu.open .mobile-nav__link--sub:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav__submenu.open .mobile-nav__link--sub:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav__submenu.open .mobile-nav__link--sub:nth-child(3) { transition-delay: 0.15s; }

/* Small dot indicator for sub-links */
.mobile-nav__link--sub::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* Remove default ::before from sub-links */
.mobile-nav__link--sub::before {
  display: none !important;
}

.mobile-nav__link--sub:hover {
  color: var(--color-primary);
}

/* Footer Section */
.mobile-nav__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 137, 188, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.4s;
}

.mobile-nav.active .mobile-nav__footer {
  opacity: 1;
  transform: translateY(0);
}

/* Contact Info */
.mobile-nav__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mobile-nav__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
}

.mobile-nav__contact-item:hover {
  color: var(--color-primary);
  background: rgba(0, 137, 188, 0.08);
}

.mobile-nav__contact-item i {
  font-size: 1rem;
  color: var(--color-primary);
}

/* Social Icons */
.mobile-nav__social {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.mobile-nav__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.mobile-nav__social-link--whatsapp {
  color: #25D366;
}

.mobile-nav__social-link--whatsapp:hover {
  background: #25D366;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.mobile-nav__social-link--linkedin {
  color: #0a66c2;
}

.mobile-nav__social-link--linkedin:hover {
  background: #0a66c2;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(10, 102, 194, 0.3);
}

.mobile-nav__social-link--facebook {
  color: #1877f2;
}

.mobile-nav__social-link--facebook:hover {
  background: #1877f2;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(24, 119, 242, 0.3);
}

/* ===== RESPONSIVE HEADER ===== */
@media (max-width: 768px) {
  .nav--desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header__inner {
    justify-content: space-between;
    padding: 0 20px;
  }

  .header__logo {
    position: relative;
    right: auto;
  }

  .header {
    padding: 12px 0;
  }
}

/* Small laptop/tablet — prevent logo from overlapping nav links */
@media (min-width: 760px) and (max-width: 1135px) {
  .header__logo img {
    height: clamp(28px, 4vw, 38px);
  }

  .nav--desktop {
    padding-right: 120px;
  }

  .nav__link {
    font-size: 0.85rem;
  }

  .nav {
    gap: var(--space-md);
  }
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

/* Simple header - just text links */
.header--simple {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  padding: var(--space-lg) 0;
}

.nav--simple {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  padding: 0 var(--space-xl);
  flex-wrap: wrap;
}

.nav--simple .nav__link {
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  padding: var(--space-sm) var(--space-md);
  text-decoration: none;
  position: relative;
  border-radius: var(--border-radius-md);
  transition: var(--transition-all-fast);
}

.nav--simple .nav__link:hover {
  color: var(--color-primary);
  background: var(--color-primary-pale);
}

.nav--simple .nav__link--active {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

.nav--simple .nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: var(--space-md);
  left: var(--space-md);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-pill);
  transition: width 0.3s var(--ease-out-expo);
}

.nav--simple .nav__link:hover::after,
.nav--simple .nav__link--active::after {
  width: calc(100% - var(--space-xl));
}

/* Transparent/Scrolled header styles defined above */


/* Hidden logo until scroll */
.header__logo-link--hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.header--scrolled .header__logo-link--hidden {
  opacity: 1;
  pointer-events: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

/* Main navigation - classic centered style */
.nav--main {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex: 1;
  justify-content: center;
}

.nav__link {
  color: var(--color-text-primary);
  font-weight: 700;
  font-size: 1rem;
  padding: var(--space-sm) var(--space-md);
  position: relative;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-primary);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Nav link styles for transparent header defined above */

/* Navigation Dropdown */
.nav__dropdown {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.nav__link--dropdown {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__link--dropdown i {
  font-size: 0.7rem;
  transition: transform var(--transition-fast);
}

.nav__dropdown:hover .nav__link--dropdown i {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 0ms 150ms;
  z-index: 1000;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.dropdown-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 150ms ease, transform 150ms ease, visibility 0ms 0ms;
}

.nav__dropdown.dropdown-open .nav__link--dropdown i {
  transform: rotate(180deg);
}

.nav__dropdown-link {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav__dropdown-link:hover {
  background: rgba(0, 137, 188, 0.08);
  color: var(--color-primary);
}

.nav__dropdown-link--active {
  color: var(--color-primary);
  background: rgba(0, 137, 188, 0.05);
}

/* Mobile sub-link */
.mobile-nav__link--sub {
  padding-right: var(--space-2xl);
  font-size: var(--font-size-base);
  opacity: 0.85;
}

.mobile-nav__link--sub::before {
  content: '―';
  margin-left: var(--space-sm);
  opacity: 0.5;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-toggle__line {
  width: 24px;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: all var(--transition-fast);
}


/* ===== FOOTER - Premium ===== */
.footer {
  background: var(--gradient-dark);
  color: var(--color-white);
  padding: var(--space-5xl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

/* Decorative gradient orb */
.footer::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 137, 188, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-4xl);
}

.footer__brand {
  max-width: 320px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo {
  height: 60px;
  margin-bottom: var(--space-xl);
  filter: brightness(0) invert(1);
  transition: var(--transition-all-fast);
}

.footer__logo:hover {
  transform: scale(1.05);
}

.footer__about {
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-sm);
}

.footer__title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
  margin-bottom: var(--space-xl);
  color: var(--color-white);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-pill);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-all-fast);
  font-size: var(--font-size-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__link::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--color-primary-light);
  transition: width 0.3s var(--ease-out-expo);
}

.footer__link:hover {
  color: var(--color-white);
  transform: translateX(-4px);
}

[dir="rtl"] .footer__link:hover {
  transform: translateX(4px);
}

.footer__link:hover::before {
  width: 12px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
  transition: var(--transition-all-fast);
}

.footer__contact-item:hover {
  color: var(--color-white);
}

.footer__contact-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  justify-content: center;
}

.footer__social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-all-smooth);
}

.footer__social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary-md);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--font-size-sm);
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

.footer__legal .footer__link {
  font-size: var(--font-size-xs);
}

.footer__legal .footer__link::before {
  display: none;
}

.footer__legal .footer__link:hover {
  transform: none;
}

.footer__credit {
  text-align: center;
  padding-top: var(--space-lg);
  margin-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__credit p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.95rem;
  margin: 0;
}

.footer__credit a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__credit a:hover {
  color: var(--color-primary);
}

/* ===== TESTIMONIALS - Premium ===== */
.testimonial {
  background: var(--color-white);
  padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition-all-smooth);
  border: 1px solid var(--color-border-light);
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--gradient-primary-soft);
  opacity: 0.5;
  border-radius: 0 var(--border-radius-xl) 0 100%;
  transition: var(--transition-all-smooth);
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-primary-pale);
}

.testimonial:hover::before {
  opacity: 0.8;
}

.testimonial__quote {
  font-size: var(--font-size-md);
  font-style: normal;
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-xl);
  position: relative;
  padding-right: var(--space-3xl);
}

.testimonial__quote::before {
  content: '\201D';
  font-size: 5rem;
  font-family: Georgia, serif;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: -1.5rem;
  right: 0;
  line-height: 1;
  opacity: 0.8;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-light);
}

.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-full);
  object-fit: cover;
  border: 3px solid var(--color-primary-pale);
  box-shadow: var(--shadow-sm);
}

.testimonial__name {
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-2xs);
  color: var(--color-text-primary);
}

.testimonial__role {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
}

/* Testimonial with rating stars */
.testimonial__rating {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  color: var(--color-accent);
}

/* ===== TESTIMONIALS GRID - Premium ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 137, 188, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: rgba(0, 137, 188, 0.08);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 137, 188, 0.15);
  border-color: rgba(0, 137, 188, 0.3);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-card__stars .star {
  color: #FFD700;
  font-size: 20px;
}

.testimonial-card__quote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  border-top: 1px solid rgba(0, 137, 188, 0.15);
  padding-top: 20px;
}

.testimonial-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 5px;
  font-style: normal;
}

.testimonial-card__role {
  font-size: 0.9rem;
  color: #718096;
  margin: 0;
}

/* ===== TESTIMONIALS CAROUSEL - CLEAN & SIMPLE ===== */
.testimonials-carousel-wrapper {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 60px 80px;
}

.testimonials-carousel {
  position: relative;
  margin: 0 auto;
}

/* Carousel container - shows exactly 3 columns */
.carousel-inner {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 50px;
  overflow: hidden;
}

/* Each carousel item takes 1/3 of visible space */
.carousel-item {
  flex: 1 1 calc(33.333% - 16px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Show visible items */
.carousel-item.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Center card - slightly more emphasis */
.carousel-item.visible-center {
  z-index: 5;
}

/* Side cards - same size, slightly less prominent */
.carousel-item.visible-left,
.carousel-item.visible-right {
  z-index: 3;
}

/* Card styling */
.testimonial-slide {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  direction: rtl;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 380px;
  transition: all 0.3s ease;
}

.carousel-item.visible-center .testimonial-slide {
  box-shadow: 0 12px 40px rgba(0, 137, 188, 0.2);
}

.carousel-item.visible-left .testimonial-slide,
.carousel-item.visible-right .testimonial-slide {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.testimonial-slide:hover {
  box-shadow: 0 12px 40px rgba(0, 137, 188, 0.2);
}

/* Quote mark icon */
.testimonial-slide__quote-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-slide__quote-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
  transform: rotate(180deg);
}

/* Quote text */
.testimonial-slide__quote {
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0 0 auto 0;
  font-weight: 400;
  flex: 1;
  display: flex;
  align-items: center;
}

/* Star rating */
.testimonial-slide__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 24px 0;
}

.testimonial-slide__stars span {
  color: #fbbf24;
  font-size: 16px;
}

/* Author info */
.testimonial-slide__author {
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.testimonial-slide__name {
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 6px;
  display: block;
}

.testimonial-slide__role {
  font-family: 'Heebo', sans-serif;
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

/* ===== WIX-STYLE TESTIMONIALS - COMPLETE REDESIGN ===== */
.wix-testimonials {
  background: #e8eaed;
  padding: 80px 0 120px;
  direction: rtl;
}

.wix-testimonials .section-header {
  margin-bottom: 50px;
}

.wix-testimonials .section-header__title {
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  font-weight: 700;
  font-family: var(--font-family-heading);
}

.wix-testimonials .section-header__title .title-dot {
  margin-inline-start: 0;
}

/* Slider Container */
.wix-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
  overflow: hidden;
}

.wix-slider__track {
  position: relative;
  min-height: 550px;
  transition: min-height 0.5s ease;
}

.wix-slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
}

.wix-slider__slide.active {
  opacity: 1;
  visibility: visible;
}

/* Individual Testimonial Card */
.wix-testimonial {
  text-align: center;
  padding: 20px 40px 40px;
}

/* Large decorative quote marks */
.wix-testimonial__quotes {
  margin-bottom: 25px;
}

.wix-testimonial__quotes svg {
  width: 100px;
  height: 70px;
  display: block;
  margin: 0 auto;
}

/* Name */
.wix-testimonial__name {
  font-family: 'Heebo', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #324158;
  margin: 0 0 6px 0;
}

/* Role/Title */
.wix-testimonial__role {
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  color: #3d4654;
  margin: 0 0 25px 0;
  line-height: 1.4;
}

/* Testimonial Text */
.wix-testimonial__text {
  font-family: 'Heebo', sans-serif;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #4a5568;
  margin: 0;
  max-width: 700px;
  margin: 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Read more link */
.wix-testimonial__readmore {
  order: 2;
  display: inline-block;
  margin-top: 8px;
  font-family: 'Heebo', sans-serif;
  font-size: 1.1rem;
  color: #0089BC;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.wix-testimonial__readmore:hover {
  opacity: 0.7;
}

/* Navigation Arrows */
.wix-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.wix-slider__arrow svg {
  width: 20px;
  height: 20px;
  color: #6b7280;
}

.wix-slider__arrow:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.wix-slider__arrow:hover svg {
  color: #374151;
}

.wix-slider__arrow--prev {
  right: 0;
}

.wix-slider__arrow--next {
  left: 0;
}

/* Dots Navigation */
.wix-slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.wix-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.wix-slider__dot:hover {
  background: #9ca3af;
}

.wix-slider__dot.active {
  background: var(--color-primary, #0089BC);
  transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .wix-testimonials {
    padding: 60px 0 80px;
  }

  .wix-slider {
    padding: 0 50px;
  }

  .wix-testimonial {
    padding: 15px 10px 30px;
  }

  .wix-testimonial__quotes svg {
    width: 80px;
    height: 55px;
  }

  .wix-testimonial__name {
    font-size: 1.1rem;
  }

  .wix-testimonial__role {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .wix-testimonial__text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .wix-slider__track {
    min-height: 420px;
  }

  .wix-slider__arrow {
    width: 36px;
    height: 36px;
  }

  .wix-slider__arrow svg {
    width: 16px;
    height: 16px;
  }

  .wix-slider__dots {
    margin-top: 30px;
  }
}

/* Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #4a5568;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.carousel-arrow:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 137, 188, 0.25);
}

.carousel-arrow--prev {
  left: 0;
}

.carousel-arrow--next {
  right: 0;
}

/* Pagination dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  background: #d1d5db;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot:hover {
  background: #9ca3af;
}

.carousel-dot.active {
  background: var(--color-primary);
  width: 28px;
  border-radius: 4px;
}

/* Tablet - 2 cards visible */
@media (max-width: 1200px) {
  .testimonials-carousel-wrapper {
    padding: 40px 40px;
  }

  .carousel-inner {
    gap: 16px;
  }

  .carousel-item {
    flex: 1 1 calc(50% - 8px);
  }

  .testimonial-slide {
    min-height: 340px;
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
  }

  .carousel-arrow--prev {
    left: 0;
  }

  .carousel-arrow--next {
    right: 0;
  }
}

/* Mobile - 1 card visible */
@media (max-width: 768px) {
  .testimonials-carousel-wrapper {
    padding: 30px 20px;
  }

  .carousel-inner {
    gap: 12px;
  }

  .carousel-item {
    flex: 1 1 100%;
  }

  .testimonial-slide {
    padding: 28px 20px;
    min-height: 300px;
  }

  .testimonial-slide__quote {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .testimonial-slide__name {
    font-size: 0.95rem;
  }

  .testimonial-slide__role {
    font-size: 0.75rem;
  }

  /* Wix-style testimonials - mobile */
  .section--testimonials {
    padding: 50px 0;
  }

  .testimonial-slide--wix {
    padding: 30px 20px;
    min-height: auto;
  }

  .testimonial-slide__quotes svg {
    width: 80px;
    height: 55px;
  }

  .testimonial-slide--wix .testimonial-slide__name {
    font-size: 1.1rem;
  }

  .testimonial-slide--wix .testimonial-slide__role {
    font-size: 0.85rem;
  }

  .testimonial-slide--wix .testimonial-slide__quote {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .carousel-arrow--prev {
    left: 0;
  }

  .carousel-arrow--next {
    right: 0;
  }
}

/* ===== ARTICLE HERO ===== */
.article-hero {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  margin-top: 80px;
}

.article-hero__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}

/* ===== CLIENT LOGOS - Premium ===== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-2xl);
  align-items: center;
  justify-items: center;
  padding: var(--space-xl) 0;
}

.clients-grid__logo {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: var(--transition-all-smooth);
  padding: var(--space-md);
}

.clients-grid__logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Clients wrapper with fade edges */
.clients-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 calc(var(--section-padding-x) * -1);
  padding: 0 var(--section-padding-x);
}

.clients-wrapper::before,
.clients-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 1;
  pointer-events: none;
}

.clients-wrapper::before {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-section), transparent);
}

.clients-wrapper::after {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-section), transparent);
}

/* ===== CLIENT LOGOS SECTION - Infinite Marquee ===== */
#clients {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
  width: 100%;
}

#clients .section-header {
  margin-bottom: 40px;
}

#clients .section-header__title {
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  font-weight: 700;
  font-family: var(--font-family-heading);
}

#clients .section-header__title .title-dot {
  margin-inline-start: 0;
}

/* Marquee Container - full width */
.client-marquee-container {
  width: 100%;
  display: block;
}

/* Individual Marquee Row */
.client-marquee-row {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 12px 0;
  margin-bottom: 20px;
}

.client-marquee-row:last-child {
  margin-bottom: 0;
}

/* Fade edges */
.client-marquee-row::before,
.client-marquee-row::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 10;
  pointer-events: none;
}

.client-marquee-row::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc, transparent);
}

.client-marquee-row::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

/* The scrolling track - MUST be inline-flex for proper width calculation */
.client-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
}

/* Row 1 - scroll LEFT (content moves left) */
.client-marquee-row--1 .client-marquee-track {
  animation: scrollLeftInfinite 45s linear infinite;
}

/* Row 2 - scroll RIGHT (content moves right) */
.client-marquee-row--2 .client-marquee-track {
  animation: scrollRightInfinite 45s linear infinite;
}

/* Pause on hover */
.client-marquee-row:hover .client-marquee-track {
  animation-play-state: paused;
}

/* Individual logo card */
.client-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 70px;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.client-logo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.client-logo-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Keyframes - scroll left */
@keyframes scrollLeftInfinite {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Keyframes - scroll right */
@keyframes scrollRightInfinite {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .client-logo-card {
    width: 110px;
    height: 60px;
  }
  .client-marquee-track {
    gap: 25px;
  }
  .client-marquee-row::before,
  .client-marquee-row::after {
    width: 60px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  #clients {
    padding: 40px 0;
  }
  .client-marquee-row {
    margin-bottom: 15px;
  }
  .client-logo-card {
    width: 90px;
    height: 50px;
    padding: 8px 10px;
  }
  .client-marquee-track {
    gap: 20px;
  }
  .client-marquee-row--1 .client-marquee-track,
  .client-marquee-row--2 .client-marquee-track {
    animation-duration: 35s;
  }
  .client-marquee-row::before,
  .client-marquee-row::after {
    width: 30px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .client-marquee-track {
    animation: none !important;
  }
}

/* ===== FORMS - Premium ===== */
.form-group {
  margin-bottom: var(--space-xl);
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
}

.form-label--required::after {
  content: '*';
  color: var(--color-error);
  margin-right: var(--space-xs);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  background: var(--color-white);
  font-size: var(--font-size-base);
  font-family: var(--font-family-primary);
  transition: var(--transition-all-fast);
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
  border-color: var(--color-border);
  background: var(--color-off-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left var(--space-md) center;
  background-size: 20px;
  padding-left: var(--space-3xl);
}

.form-error {
  color: var(--color-error);
  font-size: var(--font-size-sm);
  margin-top: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.form-error::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: var(--color-error);
  color: var(--color-white);
  font-size: 10px;
  font-weight: bold;
  border-radius: var(--border-radius-full);
}

.form-success {
  color: var(--color-success);
  font-size: var(--font-size-sm);
  margin-top: var(--space-sm);
}

/* Input with icon */
.form-input-wrapper {
  position: relative;
}

.form-input-icon {
  position: absolute;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  pointer-events: none;
}

.form-input-wrapper .form-input {
  padding-right: var(--space-3xl);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: var(--space-md) 0;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.breadcrumb__item:not(:last-child)::after {
  content: '/';
  color: var(--color-border);
}

.breadcrumb__link {
  color: var(--color-text-secondary);
}

.breadcrumb__link:hover {
  color: var(--color-primary);
}

/* ===== CTA SECTION - Premium ===== */
.cta {
  text-align: center;
  padding: var(--space-5xl) var(--space-2xl);
  background: var(--gradient-primary-radial);
  border-radius: var(--border-radius-2xl);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

/* Decorative elements */
.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: cta-shimmer 15s linear infinite;
}

@keyframes cta-shimmer {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta__content {
  position: relative;
  z-index: 1;
}

.cta__title {
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta__title .title-dot {
  margin-inline-start: 0;
}

.cta__text {
  font-size: var(--font-size-lg);
  opacity: 0.95;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--line-height-relaxed);
}

.cta__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== ABOUT SECTION ===== */
/* ===== ABOUT SECTION HEADER - PRO ANIMATION ===== */
.about-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding: var(--space-lg) 0;
  margin-bottom: var(--space-xl);
}

/* Lines - both sides */
.about-line {
  flex: 1;
  height: 2px;
  background: var(--color-text-primary);
  transform: scaleX(0);
}

/* Both lines grow from RIGHT to LEFT */
.about-line--right,
.about-line--left {
  transform-origin: right center;
}

/* Sequential animation: Right line first, then left line (About page style) */
.section-header.is-visible .about-line--right {
  animation: line-grow 1.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s forwards;
}

.section-header.is-visible .about-line--left {
  animation: line-grow 1.6s cubic-bezier(0.25, 0.1, 0.25, 1) 1.2s forwards;
}

@keyframes line-grow {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* Animated logo - match title height exactly */
.about-logo-animated {
  position: relative;
  height: clamp(2.4rem, 5.2vw, 3.4rem);
  width: auto;
  display: inline-flex;
  align-items: center;
  transform: translateY(-0.08em);
}

.about-logo-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Blue dot - round circle positioned at the end of G */
.about-logo-dot {
  font-size: 0;
  display: inline-block;
  width: clamp(0.45rem, 0.9vw, 0.6rem);
  height: clamp(0.45rem, 0.9vw, 0.6rem);
  background-color: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  bottom: clamp(0.65rem, 1.4vw, 0.95rem);
  right: -14px;
  transform: translateX(120vw);
  z-index: 2;
  will-change: transform;
}

/* Dot animation - slow elegant fly-in */
.section-header.is-visible .about-logo-dot {
  animation: about-dot-fly-in 2.8s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s forwards;
}

@keyframes about-dot-fly-in {
  0% {
    transform: translateX(120vw);
  }
  75% {
    transform: translateX(-3px);
  }
  90% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Title text - same size as all other section headers */
.about-title-text {
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  line-height: 1;
  letter-spacing: var(--letter-spacing-tight);
  transform: translateY(-3px);
}

/* ===== SECTION TITLE WITH BLUE DOT ===== */
.title-with-dot {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  word-spacing: normal;
  white-space: nowrap;
}

.title-dot {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.15em;
  margin: 0;
  margin-inline-start: 0;
  padding: 0;
  display: inline-block;
  vertical-align: baseline;
  line-height: 0.8;
  transform: translateX(100vw);
  will-change: transform;
  white-space: nowrap;
}

/* Dot animation - elegant slow fly-in from right (About page style) */
/* Triggered when parent section-header becomes visible OR when title itself becomes visible */
.section-header.is-visible .title-dot,
.animate-title.is-visible .title-dot,
.is-visible .title-dot {
  animation: title-dot-fly-in 2.4s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  animation-delay: 0.3s;
}

@keyframes title-dot-fly-in {
  0% {
    transform: translateX(120vw);
  }
  100% {
    transform: translateX(0);
  }
}

/* Compensate for flex item spacing inside title-with-dot containers */
.title-with-dot .title-dot {
  margin-inline-start: -0.3em;
}

/* Remove the decorative line under titles that have the dot */
.title-with-dot::after {
  display: none !important;
}

/* Base section header title styles */
.section-header__title {
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  font-weight: 700;
  font-family: var(--font-family-heading);
}

#media .section-header__title {
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  font-weight: 700;
  font-family: var(--font-family-heading);
}

#media .section-header__title .title-dot {
  margin-inline-start: 0;
}

.section-header__title.title-with-dot .title-dot {
  margin-inline-start: 0;
}

/* Legacy class for backwards compatibility */
.about-logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
}

/* ===== ABOUT SECTION - Full Video Background ===== */
.about-section--video-bg {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 700px;
}

/* Full Section Video Background */
.about-video-bg {
  position: relative;
  z-index: 1;
  background: #0a0a0a;
  min-height: 600px;
  overflow: hidden;
}

.about-video-bg__player {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.about-video-bg__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 45, 0.55);
  pointer-events: none;
}

/* Content Overlay */
.about-video-bg__content {
  position: relative;
  z-index: 1;
  padding: 80px 40px;
  max-width: 900px;
  margin: 0 auto;
}

/* Header adjustments for video background */
.about-section--video-bg .about-header {
  margin-bottom: 50px;
}

.about-section--video-bg .about-title-text {
  color: #ffffff;
}

.about-section--video-bg .about-line {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

/* Text Content */
.about-video-bg__text {
  text-align: right;
}

.about-video-bg__text p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 2;
  margin-bottom: var(--space-lg);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.about-video-bg__text p:last-of-type {
  margin-bottom: var(--space-xl);
}

.about-video-bg__text .about-cta {
  margin-top: var(--space-xl);
}

.about-video-bg__text .btn--primary {
  background: #ffffff;
  color: var(--color-primary);
  border: none;
}

.about-video-bg__text .btn--primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-section--video-bg {
    min-height: auto;
  }

  .about-video-bg__content {
    padding: 60px 25px;
  }

  .about-video-bg__text p {
    font-size: 1rem;
    line-height: 1.9;
  }
}

@media (max-width: 576px) {
  .about-video-bg__content {
    padding: 50px 20px;
  }

  .about-video-bg__text p {
    font-size: 0.95rem;
  }
}

/* ===== ABOUT SECTION - SPLIT LAYOUT ===== */
.about-section--split {
  padding: 0;
  overflow: hidden;
  min-height: 100vh;
}

.about-split {
  display: flex;
  min-height: 100vh;
}

/* RTL: Use row-reverse so video appears on LEFT and content on RIGHT */
[dir="rtl"] .about-split {
  flex-direction: row-reverse;
}

.about-split__video {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}

/* White overlay on video - milky effect */
.about-split__video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  z-index: 1;
}

.about-split__player {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.about-split__content {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-4xl) var(--space-3xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
}

.about-split__content::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
}

.about-split__header {
  margin-bottom: var(--space-2xl);
  justify-content: center;
}

.about-split__title {
  font-family: var(--font-family-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.about-split__logo {
  height: clamp(2rem, 4vw, 2.8rem);
  width: auto;
}

.about-split__text {
  max-width: 550px;
  text-align: center;
}

.about-split__text p {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: var(--space-lg);
}

.about-split__text p:last-of-type {
  margin-bottom: 0;
}

.about-split__cta {
  margin-top: var(--space-2xl);
}

.about-split__cta .btn--primary {
  background: var(--gradient-primary);
  border: none;
  padding: var(--space-md) var(--space-2xl);
  font-size: 1rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-primary-md);
  transition: var(--transition-all-smooth);
}

.about-split__cta .btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary-lg);
}

/* Split Layout - Mobile Responsive */
@media (max-width: 992px) {
  .about-section--split {
    min-height: auto;
  }

  .about-split {
    flex-direction: column;
    min-height: auto;
  }

  [dir="rtl"] .about-split {
    flex-direction: column;
  }

  .about-split__video {
    flex: 0 0 auto;
    min-height: 350px;
    max-height: 450px;
  }

  .about-split__content {
    flex: 1;
    padding: var(--space-3xl) var(--space-xl);
  }

  .about-split__content::before {
    width: 100%;
    height: 4px;
    top: 0;
    right: auto;
    left: 0;
  }
}

@media (max-width: 576px) {
  .about-split__video {
    min-height: 280px;
  }

  .about-split__content {
    padding: var(--space-2xl) var(--space-lg);
  }

  .about-split__text p {
    font-size: 1rem;
  }
}

/* ===== ABOUT VIDEO BACKGROUND SECTION ===== */
/* Full-width video with blue overlay and centered white text */

.about-video-bg {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.about-video-bg__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 1;
}

.about-video-bg__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 45, 0.55);
  z-index: 2;
}

.about-video-bg__content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: var(--space-4xl) var(--space-xl);
  text-align: center;
}

/* Header styles for white text on blue overlay */
.about-video-bg__header {
  margin-bottom: var(--space-md);
  justify-content: center;
}

.about-video-bg__title-text {
  color: var(--color-white);
}

.about-video-bg__logo .about-logo-img {
  filter: brightness(0) invert(1);
}

.about-video-bg__header .about-line {
  background: rgba(255, 255, 255, 0.5);
}

/* Text content styles */
.about-video-bg__text {
  text-align: center;
}

.about-video-bg__text p {
  color: var(--color-white);
  font-size: 1.125rem;
  line-height: 1.9;
  margin-bottom: var(--space-lg);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.about-video-bg__text p:last-of-type {
  margin-bottom: 0;
}

/* CTA Button - About section */
.about-video-bg__cta {
  margin-top: var(--space-xl);
}

/* Borderless text link */
.about-video-bg__read-more {
  color: var(--color-white);
  font-family: var(--font-family-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  opacity: 0.9;
}

.about-video-bg__read-more:hover {
  opacity: 1;
  text-decoration: underline;
}

.btn--white-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-2xl);
  font-family: var(--font-family-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-white);
  background: transparent;
  border: 2px solid var(--color-white);
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn--white-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for video background section */
@media (max-width: 768px) {
  .about-video-bg {
    min-height: 70vh;
  }

  .about-video-bg__content {
    padding: var(--space-3xl) var(--space-lg);
  }

  .about-video-bg__text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-video-bg {
    min-height: 60vh;
  }

  .about-video-bg__content {
    padding: var(--space-2xl) var(--space-md);
  }

  .about-video-bg__text p {
    font-size: 0.95rem;
    line-height: 1.8;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .about-video-bg__video {
    display: none;
  }

  .about-video-bg {
    background: rgb(15, 25, 45);
  }
}

/* Legacy styles kept for backwards compatibility */
.about-section:not(.about-section--split) {
  background: linear-gradient(180deg, #f5f7fa 0%, #e8ecf1 100%);
  padding: 80px 0 100px;
}

.about-layout {
  display: flex;
  flex-direction: row-reverse;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-video-column {
  flex: 0 0 320px;
  max-width: 320px;
}

.about-text-column {
  flex: 1;
}

.about-text-content {
  text-align: right;
}

.about-text-content p {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.about-text-content p:last-of-type {
  margin-bottom: var(--space-xl);
}

.about-cta {
  margin-top: var(--space-xl);
}

/* ===== LUXURY VIDEO FRAME ===== */
.video-frame-luxury {
  position: relative;
  padding: 12px;
  background: linear-gradient(145deg, #1a1a2e 0%, #0d0d1a 100%);
  border-radius: 28px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 15px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

/* Metallic border effect */
.video-frame-luxury::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.05) 30%,
    rgba(0, 137, 188, 0.3) 50%,
    rgba(255, 255, 255, 0.05) 70%,
    rgba(255, 255, 255, 0.15) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Inner glow ring */
.video-frame__glow {
  position: absolute;
  inset: 8px;
  border-radius: 22px;
  background: transparent;
  box-shadow:
    inset 0 0 30px rgba(0, 137, 188, 0.15),
    inset 0 0 60px rgba(0, 137, 188, 0.05);
  pointer-events: none;
  z-index: 1;
}

/* Corner accents */
.video-frame__corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 2;
  pointer-events: none;
}

.video-frame__corner::before,
.video-frame__corner::after {
  content: '';
  position: absolute;
  background: linear-gradient(90deg, #0089BC, #00d4ff);
  border-radius: 2px;
}

.video-frame__corner--tl { top: 8px; left: 8px; }
.video-frame__corner--tr { top: 8px; right: 8px; }
.video-frame__corner--bl { bottom: 8px; left: 8px; }
.video-frame__corner--br { bottom: 8px; right: 8px; }

.video-frame__corner--tl::before,
.video-frame__corner--tr::before,
.video-frame__corner--bl::before,
.video-frame__corner--br::before {
  width: 20px;
  height: 2px;
}

.video-frame__corner--tl::after,
.video-frame__corner--tr::after,
.video-frame__corner--bl::after,
.video-frame__corner--br::after {
  width: 2px;
  height: 20px;
}

.video-frame__corner--tl::before { top: 0; left: 0; }
.video-frame__corner--tl::after { top: 0; left: 0; }

.video-frame__corner--tr::before { top: 0; right: 0; }
.video-frame__corner--tr::after { top: 0; right: 0; }

.video-frame__corner--bl::before { bottom: 0; left: 0; }
.video-frame__corner--bl::after { bottom: 0; left: 0; }

.video-frame__corner--br::before { bottom: 0; right: 0; }
.video-frame__corner--br::after { bottom: 0; right: 0; }

/* Ambient glow behind frame */
.video-frame-luxury::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(0, 137, 188, 0.2) 0%, transparent 70%);
  z-index: -1;
  border-radius: 40px;
  filter: blur(20px);
  opacity: 0.6;
  animation: ambientPulse 4s ease-in-out infinite;
}

@keyframes ambientPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.02); }
}

/* Video Container - Portrait Mode */
.video-container--portrait {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.video-container--portrait .video-player {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 16px;
  background: #0a0a0f;
  display: block;
  object-fit: cover;
}

/* Hide default video controls styling */
.video-container--portrait .video-player::-webkit-media-controls-panel {
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

/* Playing state glow */
.video-frame-luxury.is-playing .video-frame__glow {
  box-shadow:
    inset 0 0 40px rgba(0, 137, 188, 0.25),
    inset 0 0 80px rgba(0, 137, 188, 0.1);
}

.video-frame-luxury.is-playing::after {
  opacity: 0.8;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .about-layout {
    gap: 40px;
  }

  .about-video-column {
    flex: 0 0 260px;
    max-width: 260px;
  }

  .about-text-content p {
    font-size: 1rem;
  }

  .video-frame-luxury {
    padding: 10px;
    border-radius: 24px;
  }

  .video-frame__corner {
    width: 16px;
    height: 16px;
  }

  .video-frame__corner--tl::before,
  .video-frame__corner--tr::before,
  .video-frame__corner--bl::before,
  .video-frame__corner--br::before {
    width: 16px;
  }

  .video-frame__corner--tl::after,
  .video-frame__corner--tr::after,
  .video-frame__corner--bl::after,
  .video-frame__corner--br::after {
    height: 16px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0 80px;
  }

  .about-layout {
    flex-direction: column;
    gap: 40px;
  }

  .about-video-column {
    flex: none;
    max-width: 240px;
    width: 100%;
    margin: 0 auto;
  }

  .about-text-column {
    width: 100%;
  }

  .about-text-content {
    text-align: center;
  }

  .about-text-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .about-cta {
    text-align: center;
  }

  .video-frame-luxury {
    padding: 8px;
    border-radius: 20px;
  }

  .video-frame-luxury::after {
    inset: -10px;
  }

  .video-container--portrait {
    border-radius: 12px;
  }

  .video-container--portrait .video-player {
    border-radius: 12px;
  }
}

/* Legacy - keep for backwards compatibility */
.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-caption {
  text-align: center;
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 850px;
  margin: var(--space-2xl) auto 0;
}

.about-caption p {
  margin-bottom: var(--space-md);
}

.about-caption p:last-child {
  margin-bottom: 0;
}

/* Video Container - Standard */
.video-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.video-player {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--border-radius-xl);
  background: var(--color-text-primary);
  box-shadow: var(--shadow-card-raised);
  transition: var(--transition-all-smooth);
}

.video-player:hover {
  box-shadow: var(--shadow-2xl);
  transform: scale(1.01);
}

/* Video wrapper with decorative frame */
.video-container::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: var(--gradient-primary);
  border-radius: calc(var(--border-radius-xl) + 8px);
  z-index: -1;
  opacity: 0.15;
}

.video-container::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: var(--color-white);
  border-radius: calc(var(--border-radius-xl) + 4px);
  z-index: -1;
  box-shadow: var(--shadow-lg);
}

/* Placeholder fallback */
.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--color-bg-section) 0%, var(--color-border-light) 100%);
  border-radius: var(--border-radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  border: 2px dashed var(--color-border);
}

.video-placeholder__icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: var(--shadow-primary-md);
}

.video-placeholder__text {
  color: var(--color-text-light);
  font-size: var(--font-size-lg);
}

/* =====================================================
   PROCESS TIMELINE - Premium 2026 Design
   RTL Flow | Zigzag Pattern | Modern Aesthetics
   ===================================================== */

#process {
  background: #FFFFFF;
}

.process-section {
  background: #FFFFFF;
  min-height: 100vh;
  padding: 40px 0 60px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Subtle decorative elements */
.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 137, 188, 0.1) 20%, rgba(0, 137, 188, 0.2) 50%, rgba(0, 137, 188, 0.1) 80%, transparent 100%);
}

.process-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 137, 188, 0.1) 20%, rgba(0, 137, 188, 0.2) 50%, rgba(0, 137, 188, 0.1) 80%, transparent 100%);
}

/* Process Section Header Enhancement */
.process-section .section-header {
  margin-bottom: 0;
  padding-top: 20px;
}

.process-section .section-header__title {
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.process-section .section-header__subtitle {
  font-size: 0.95rem;
  color: #64748B;
  font-weight: 400;
}

/* ===== MAIN TIMELINE CONTAINER ===== */
.process-timeline {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 80px;
  min-height: 320px;
  padding: 0 30px;
  box-sizing: border-box;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 60px;
}

/* ===== 2026 PREMIUM FLOW LINE ===== */
.process-flow-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 280px;
  transform: translateY(-30%);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Subtle flowing animation on the line segments */
.process-segment {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  animation: lineFlow 12s ease-in-out infinite;
}

.process-segment--1-2 { animation-delay: 0s; }
.process-segment--2-3 { animation-delay: 0.5s; }
.process-segment--3-4 { animation-delay: 1s; }
.process-segment--4-5 { animation-delay: 1.5s; }
.process-segment--5-6 { animation-delay: 2s; }

@keyframes lineFlow {
  0%, 100% {
    opacity: 0.7;
    filter: drop-shadow(0 0 2px rgba(0, 137, 188, 0.3));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(0, 137, 188, 0.5));
  }
}

/* Subtle breathing animation on the glow */
.process-flow-line__glow {
  animation: subtleBreath 4s ease-in-out infinite;
}

@keyframes subtleBreath {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Main line stays crisp and static */
.process-flow-line__main {
  opacity: 1;
}

/* ===== SEGMENT HOVER GLOW EFFECTS ===== */
.process-segment {
  transition: filter 0.4s ease, stroke 0.4s ease, stroke-width 0.4s ease;
}

/* Segment 1-2: Glows with Step 2 color (Deep Cyan #007aa8) */
.process-timeline:has(.process-step[data-step="2"]:hover) .process-segment--1-2,
.process-timeline:has(.process-step[data-step="3"]:hover) .process-segment--1-2,
.process-timeline:has(.process-step[data-step="4"]:hover) .process-segment--1-2,
.process-timeline:has(.process-step[data-step="5"]:hover) .process-segment--1-2,
.process-timeline:has(.process-step[data-step="6"]:hover) .process-segment--1-2 {
  filter: url(#glowStep2);
  stroke: #007aa8;
  stroke-width: 7;
}

/* Segment 2-3: Glows with Step 3 color (Teal #00A8A8) */
.process-timeline:has(.process-step[data-step="3"]:hover) .process-segment--2-3,
.process-timeline:has(.process-step[data-step="4"]:hover) .process-segment--2-3,
.process-timeline:has(.process-step[data-step="5"]:hover) .process-segment--2-3,
.process-timeline:has(.process-step[data-step="6"]:hover) .process-segment--2-3 {
  filter: url(#glowStep3);
  stroke: #00A8A8;
  stroke-width: 7;
}

/* Segment 3-4: Glows with Step 4 color (Deep Teal #008c8c) */
.process-timeline:has(.process-step[data-step="4"]:hover) .process-segment--3-4,
.process-timeline:has(.process-step[data-step="5"]:hover) .process-segment--3-4,
.process-timeline:has(.process-step[data-step="6"]:hover) .process-segment--3-4 {
  filter: url(#glowStep4);
  stroke: #008c8c;
  stroke-width: 7;
}

/* Segment 4-5: Glows with Step 5 color (Light Cyan #33a1c9) */
.process-timeline:has(.process-step[data-step="5"]:hover) .process-segment--4-5,
.process-timeline:has(.process-step[data-step="6"]:hover) .process-segment--4-5 {
  filter: url(#glowStep5);
  stroke: #33a1c9;
  stroke-width: 7;
}

/* Segment 5-6: Glows with Step 6 color (Light Teal #33bfbf) */
.process-timeline:has(.process-step[data-step="6"]:hover) .process-segment--5-6 {
  filter: url(#glowStep6);
  stroke: #33bfbf;
  stroke-width: 7;
}

/* ===== STEPS CONTAINER ===== */
.process-steps {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  direction: rtl;
  z-index: 2;
  padding: 0 10px;
  min-height: 340px;
}

/* ===== INDIVIDUAL STEP ===== */
.process-step {
  flex: 0 0 auto;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
}

/* Zigzag positioning - proportionally reduced */
.process-step--top {
  transform: translateY(-120px);
}

.process-step--bottom {
  transform: translateY(120px);
}

/* Hover effect - scale the ring, don't move the step */
.process-step:hover {
  z-index: 10;
}

/* Prevent any movement on hover/click/active/focus */
.process-step--top,
.process-step--top:hover,
.process-step--top:active,
.process-step--top:focus {
  transform: translateY(-120px) !important;
}

.process-step--bottom,
.process-step--bottom:hover,
.process-step--bottom:active,
.process-step--bottom:focus {
  transform: translateY(120px) !important;
}

/* ===== STEP CARD ===== */
.process-step__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
  position: relative;
}

/* Top steps (2, 4, 6): Text above circle */
.process-step--top .process-step__card {
  flex-direction: column-reverse;
}

/* ===== NODE (Circle container) ===== */
.process-step__node {
  position: relative;
  z-index: 3;
  margin-bottom: 12px;
  flex-shrink: 0;
}

/* Top steps: Margin adjustment for reversed layout */
.process-step--top .process-step__node {
  margin-bottom: 0;
  margin-top: 12px;
}

/* Ensure consistent content height for alignment */
.process-step--top .process-step__content {
  min-height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.process-step--bottom .process-step__content {
  min-height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Outer Ring - Sharp Premium 3D Effect */
.process-step__ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(145deg, #FFFFFF 0%, #F5F7FA 100%);
  box-shadow:
    /* Sharp outer shadows for depth */
    0 4px 8px rgba(0, 0, 0, 0.15),
    0 8px 16px rgba(0, 137, 188, 0.12),
    /* Crisp inner bevel */
    inset 0 2px 0 rgba(255, 255, 255, 1),
    inset 0 -2px 0 rgba(0, 0, 0, 0.08),
    inset 2px 0 0 rgba(255, 255, 255, 0.5),
    inset -2px 0 0 rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  flex-shrink: 0;
  border: 3px solid #FFFFFF;
  outline: 1px solid rgba(0, 137, 188, 0.15);
}

/* Subtle glow ring on hover */
.process-step__ring::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.4s ease;
  z-index: -1;
}

/* Ring grows on hover */
.process-step:hover .process-step__ring {
  transform: scale(1.08);
  box-shadow:
    /* Sharp elevated shadow */
    0 6px 12px rgba(0, 0, 0, 0.18),
    0 12px 24px rgba(0, 137, 188, 0.2),
    /* Crisp inner bevel */
    inset 0 2px 0 rgba(255, 255, 255, 1),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  border-color: #FFFFFF;
  outline: 2px solid rgba(0, 137, 188, 0.25);
}

/* Inner Colored Circle - Sharp 3D Sphere */
.process-step__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    /* Sharp outer shadow */
    0 3px 6px rgba(0, 0, 0, 0.2),
    0 6px 12px rgba(0, 0, 0, 0.15),
    /* Crisp 3D bevel effect */
    inset 0 2px 0 rgba(255, 255, 255, 0.45),
    inset 0 -2px 0 rgba(0, 0, 0, 0.25),
    inset 2px 0 0 rgba(255, 255, 255, 0.2),
    inset -2px 0 0 rgba(0, 0, 0, 0.1);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Shine effect */
.process-step__circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.process-step:hover .process-step__circle::before {
  left: 100%;
}

.process-step__circle i {
  font-size: 24px;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.process-step:hover .process-step__circle i {
  transform: scale(1.15);
}

/* ===== CIRCLE COLORS - MirrorG Logo-Harmonized Palette ===== */
/* Step 1: Primary Cyan */
.process-step__circle--blue {
  background: linear-gradient(135deg, var(--color-step-1, #0089BC) 0%, #006A92 100%);
}
/* Step 2: Deep Cyan */
.process-step__circle--green {
  background: linear-gradient(135deg, var(--color-step-2, #007aa8) 0%, #005f82 100%);
}
/* Step 3: Teal */
.process-step__circle--orange {
  background: linear-gradient(135deg, var(--color-step-3, #00A8A8) 0%, #008080 100%);
}
/* Step 4: Deep Teal */
.process-step__circle--royal {
  background: linear-gradient(135deg, var(--color-step-4, #008c8c) 0%, #006d6d 100%);
}
/* Step 5: Light Cyan */
.process-step__circle--teal {
  background: linear-gradient(135deg, var(--color-step-5, #33a1c9) 0%, #1a8ab3 100%);
}
/* Step 6: Light Teal */
.process-step__circle--gold {
  background: linear-gradient(135deg, var(--color-step-6, #33bfbf) 0%, #1aa3a3 100%);
}

/* Hover glow for each color - sharp 3D effect */
.process-step:hover .process-step__circle--blue {
  box-shadow:
    0 4px 8px rgba(0, 137, 188, 0.4),
    0 8px 16px rgba(0, 137, 188, 0.25),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}
.process-step:hover .process-step__circle--green {
  box-shadow:
    0 4px 8px rgba(0, 122, 168, 0.4),
    0 8px 16px rgba(0, 122, 168, 0.25),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}
.process-step:hover .process-step__circle--orange {
  box-shadow:
    0 4px 8px rgba(0, 168, 168, 0.4),
    0 8px 16px rgba(0, 168, 168, 0.25),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}
.process-step:hover .process-step__circle--royal {
  box-shadow:
    0 4px 8px rgba(0, 140, 140, 0.4),
    0 8px 16px rgba(0, 140, 140, 0.25),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}
.process-step:hover .process-step__circle--teal {
  box-shadow:
    0 4px 8px rgba(51, 161, 201, 0.4),
    0 8px 16px rgba(51, 161, 201, 0.25),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}
.process-step:hover .process-step__circle--gold {
  box-shadow:
    0 4px 8px rgba(51, 191, 191, 0.4),
    0 8px 16px rgba(51, 191, 191, 0.25),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}

/* ===== STEP CONTENT (Text) ===== */
.process-step__content {
  text-align: center;
  direction: rtl;
  max-width: 150px;
  min-height: 50px;
}

.process-step__content h3 {
  font-size: var(--font-size-md);
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px 0;
  line-height: 1.4;
  transition: all 0.3s ease;
  letter-spacing: -0.01em;
}

.process-step:hover .process-step__content h3 {
  color: #0089BC;
}

.process-step__content p {
  font-size: var(--font-size-base);
  font-weight: 400;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s ease;
}

.process-step:hover .process-step__content p {
  color: #475569;
}

/* ===== RESPONSIVE - LAPTOP: Scale entire section to fit ===== */
@media (max-width: 1500px) {
  .process-timeline {
    transform: scale(0.85);
    transform-origin: center center;
  }
}

@media (max-width: 1300px) {
  .process-timeline {
    transform: scale(0.75);
    transform-origin: center center;
  }
}

@media (max-width: 1150px) {
  .process-timeline {
    transform: scale(0.65);
    transform-origin: center center;
  }
}

/* ===== RESPONSIVE - TABLET (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  .process-section {
    min-height: auto;
    padding: 60px 20px;
  }

  .process-timeline {
    transform: scale(1);
    margin: 40px auto 0;
    position: relative;
    padding-right: 60px;
    flex: none;
  }

  /* Hide the horizontal SVG line */
  .process-flow-line {
    display: none;
  }

  /* Premium vertical connecting line with glow */
  .process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    right: 43px;
    width: 2px;
    height: calc(100% - 100px);
    background: linear-gradient(180deg,
      var(--color-primary, #0089BC) 0%,
      var(--color-secondary, #00A8A8) 100%
    );
    border-radius: 1px;
    z-index: 0;
    opacity: 0.25;
  }

  /* Hide animated glow - keep it clean */
  .process-timeline::after {
    display: none;
  }

  .process-steps {
    flex-direction: column;
    gap: 30px;
    min-height: auto;
    padding: 0;
    align-items: stretch;
  }

  .process-step {
    width: 100%;
    z-index: 2;
    padding-right: 0;
    padding-left: 0;
  }

  .process-step--top,
  .process-step--bottom {
    transform: translateY(0) !important;
  }

  /* Only scale ring on hover, don't move step */
  .process-step:hover,
  .process-step--top:hover,
  .process-step--bottom:hover {
    transform: translateY(0) !important;
  }

  .process-step:hover .process-step__ring {
    transform: scale(1.08);
  }

  /* Reorder steps for proper 1-6 sequence */
  .process-step[data-step="1"] { order: 1; }
  .process-step[data-step="2"] { order: 2; }
  .process-step[data-step="3"] { order: 3; }
  .process-step[data-step="4"] { order: 4; }
  .process-step[data-step="5"] { order: 5; }
  .process-step[data-step="6"] { order: 6; }

  .process-step__card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 20px;
    justify-content: flex-end;
    width: 100%;
  }

  .process-step--top .process-step__card {
    flex-direction: row;
  }

  .process-step__node {
    margin: 0;
    flex-shrink: 0;
    order: -1;
  }

  .process-step--top .process-step__node {
    margin: 0;
  }

  /* ===== TABLET SHARP 3D CIRCLE STYLING ===== */
  .process-step__ring {
    width: 86px;
    height: 86px;
    padding: 10px;
    background: linear-gradient(145deg, #FFFFFF 0%, #F5F7FA 100%);
    border: 3px solid #FFFFFF;
    outline: 1px solid rgba(0, 137, 188, 0.15);
    box-shadow:
      0 3px 6px rgba(0, 0, 0, 0.12),
      0 6px 12px rgba(0, 137, 188, 0.1),
      inset 0 2px 0 rgba(255, 255, 255, 1),
      inset 0 -2px 0 rgba(0, 0, 0, 0.06);
  }

  .process-step__circle {
    width: 62px;
    height: 62px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow:
      0 3px 6px rgba(0, 0, 0, 0.18),
      0 6px 10px rgba(0, 137, 188, 0.15),
      inset 0 2px 0 rgba(255, 255, 255, 0.4),
      inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  }

  .process-step__circle i {
    font-size: 26px;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  }

  /* ===== TABLET STEP COLORS - Logo Harmonized ===== */
  .process-step[data-step="1"] .process-step__circle {
    background: linear-gradient(135deg, var(--color-step-1, #0089BC) 0%, #006A92 100%);
  }
  .process-step[data-step="2"] .process-step__circle {
    background: linear-gradient(135deg, var(--color-step-2, #007aa8) 0%, #005f82 100%);
  }
  .process-step[data-step="3"] .process-step__circle {
    background: linear-gradient(135deg, var(--color-step-3, #00A8A8) 0%, #008080 100%);
  }
  .process-step[data-step="4"] .process-step__circle {
    background: linear-gradient(135deg, var(--color-step-4, #008c8c) 0%, #006d6d 100%);
  }
  .process-step[data-step="5"] .process-step__circle {
    background: linear-gradient(135deg, var(--color-step-5, #33a1c9) 0%, #1a8ab3 100%);
  }
  .process-step[data-step="6"] .process-step__circle {
    background: linear-gradient(135deg, var(--color-step-6, #33bfbf) 0%, #1aa3a3 100%);
  }

  /* Tablet hover - enhance glow */
  .process-step:hover .process-step__circle {
    box-shadow: 0 6px 20px rgba(0, 137, 188, 0.35);
    transform: scale(1.05);
  }

  .process-step__content {
    text-align: right;
    max-width: none;
    min-height: auto;
    flex: 1;
    padding: 0 20px 0 0;
  }

  .process-step--top .process-step__content,
  .process-step--bottom .process-step__content {
    min-height: auto;
    justify-content: center;
  }

  .process-step__content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: 6px;
    color: var(--color-text-primary, #1a1a2e);
    font-weight: 600;
  }

  .process-step__content p {
    font-size: var(--font-size-sm);
    margin: 0;
    color: var(--color-text-secondary, #4a5568);
    line-height: 1.5;
  }

  /* ===== TABLET - Initial hidden state for smooth reveal ===== */
  .process-step {
    opacity: 0;
    transform: translateX(-20px);
  }

  /* Visible state - smooth transition (About page style - 1.5s) */
  .process-step.is-visible {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Staggered animation delays */
  .process-step[data-step="1"].is-visible { transition-delay: 0s; }
  .process-step[data-step="2"].is-visible { transition-delay: 0.08s; }
  .process-step[data-step="3"].is-visible { transition-delay: 0.16s; }
  .process-step[data-step="4"].is-visible { transition-delay: 0.24s; }
  .process-step[data-step="5"].is-visible { transition-delay: 0.32s; }
  .process-step[data-step="6"].is-visible { transition-delay: 0.4s; }

  /* Smooth circle entrance - no bounce */
  .process-step.is-visible .process-step__ring {
    animation: circleEnterSmooth 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  @keyframes circleEnterSmooth {
    0% {
      opacity: 0;
      transform: scale(0.85);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Icon - smooth fade in */
  .process-step .process-step__circle i {
    opacity: 1;
  }

  .process-step.is-visible .process-step__circle i {
    animation: iconEnterSmooth 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
  }

  @keyframes iconEnterSmooth {
    0% {
      opacity: 0;
      transform: scale(0.7);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Text - smooth slide in */
  .process-step .process-step__content {
    opacity: 1;
    transform: translateX(0);
  }

  .process-step.is-visible .process-step__content {
    animation: textEnterSmooth 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
  }

  @keyframes textEnterSmooth {
    0% {
      opacity: 0;
      transform: translateX(-15px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Override hover for visible state */
  .process-step.is-visible:hover {
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE - MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {
  .process-section {
    min-height: auto;
    padding: 50px 10px 50px 5px;
  }

  .process-timeline {
    padding-right: 50px;
    padding-left: 0;
    flex: none;
  }

  /* ===== CLEAN VERTICAL LINE - Connects through circle centers ===== */
  .process-timeline::before {
    right: 38px;
    transform: none;
    width: 2px;
    top: 50px;
    height: calc(100% - 100px);
    background: linear-gradient(180deg,
      var(--color-primary, #0089BC) 0%,
      var(--color-secondary, #00A8A8) 100%);
    opacity: 0.25;
    border-radius: 1px;
  }

  /* Hide the animated glow - keep it simple */
  .process-timeline::after {
    display: none;
  }

  .process-steps {
    gap: 16px;
    align-items: stretch;
  }

  .process-step {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
  }

  /* Override tablet hover - only scale ring, don't move step */
  .process-step:hover,
  .process-step--top:hover,
  .process-step--bottom:hover {
    transform: none !important;
  }

  .process-step:hover .process-step__ring,
  .process-step--top:hover .process-step__ring,
  .process-step--bottom:hover .process-step__ring {
    transform: scale(1.08);
  }

  /* ===== CLEAN MOBILE TIMELINE DESIGN ===== */
  /* Simple, elegant layout - circles as focal point with connecting line */

  .process-step__card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
    padding: 12px 0;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    position: relative;
  }

  .process-step__card::before {
    display: none;
  }

  .process-step__card:hover {
    transform: none;
    box-shadow: none;
  }

  .process-step--top .process-step__card {
    flex-direction: row;
  }

  /* ===== NODE - Circle positioned for line continuity ===== */
  .process-step__node {
    margin: 0;
    flex-shrink: 0;
    order: -1;
    position: relative;
    z-index: 2;
  }

  .process-step--top .process-step__node {
    margin: 0;
  }

  /* ===== MOBILE SHARP 3D CIRCLE STYLING ===== */
  .process-step__ring {
    width: 80px;
    height: 80px;
    padding: 8px;
    background: linear-gradient(145deg, #FFFFFF 0%, #F5F7FA 100%);
    border: 3px solid #FFFFFF;
    outline: 1px solid rgba(0, 137, 188, 0.15);
    box-shadow:
      0 3px 5px rgba(0, 0, 0, 0.12),
      0 5px 10px rgba(0, 137, 188, 0.1),
      inset 0 2px 0 rgba(255, 255, 255, 1),
      inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  }

  .process-step__circle {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow:
      0 2px 5px rgba(0, 0, 0, 0.18),
      0 5px 10px rgba(0, 137, 188, 0.12),
      inset 0 2px 0 rgba(255, 255, 255, 0.4),
      inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  }

  .process-step__circle i {
    font-size: 24px;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  }

  /* ===== MOBILE STEP COLORS - Logo Harmonized ===== */
  .process-step[data-step="1"] .process-step__circle {
    background: linear-gradient(135deg, var(--color-step-1, #0089BC) 0%, #006A92 100%);
  }
  .process-step[data-step="2"] .process-step__circle {
    background: linear-gradient(135deg, var(--color-step-2, #007aa8) 0%, #005f82 100%);
  }
  .process-step[data-step="3"] .process-step__circle {
    background: linear-gradient(135deg, var(--color-step-3, #00A8A8) 0%, #008080 100%);
  }
  .process-step[data-step="4"] .process-step__circle {
    background: linear-gradient(135deg, var(--color-step-4, #008c8c) 0%, #006d6d 100%);
  }
  .process-step[data-step="5"] .process-step__circle {
    background: linear-gradient(135deg, var(--color-step-5, #33a1c9) 0%, #1a8ab3 100%);
  }
  .process-step[data-step="6"] .process-step__circle {
    background: linear-gradient(135deg, var(--color-step-6, #33bfbf) 0%, #1aa3a3 100%);
  }

  /* Hover - enhance glow */
  .process-step:hover .process-step__circle {
    box-shadow: 0 6px 18px rgba(0, 137, 188, 0.35);
    transform: scale(1.05);
  }

  /* ===== CONTENT - Clean text styling ===== */
  .process-step__content {
    text-align: right;
    flex: 1;
    padding: 0 16px 0 0;
    max-width: none;
    min-height: auto;
  }

  .process-step--top .process-step__content,
  .process-step--bottom .process-step__content {
    min-height: auto;
    justify-content: center;
  }

  .process-step__content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: 6px;
    color: var(--color-text-primary, #1a1a2e);
    font-weight: 600;
  }

  .process-step__content p {
    font-size: var(--font-size-sm);
    line-height: 1.5;
    color: var(--color-text-secondary, #4a5568);
  }

  /* ===== MOBILE - Initial hidden state for smooth reveal ===== */
  .process-step {
    opacity: 0;
    transform: translateX(-15px);
  }

  /* Visible state - smooth transition (About page style - 1.5s) */
  .process-step.is-visible {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Staggered animation delays */
  .process-step[data-step="1"].is-visible { transition-delay: 0s; }
  .process-step[data-step="2"].is-visible { transition-delay: 0.1s; }
  .process-step[data-step="3"].is-visible { transition-delay: 0.2s; }
  .process-step[data-step="4"].is-visible { transition-delay: 0.3s; }
  .process-step[data-step="5"].is-visible { transition-delay: 0.4s; }
  .process-step[data-step="6"].is-visible { transition-delay: 0.5s; }

  /* ===== SMOOTH MOBILE ENTRANCE ANIMATIONS ===== */
  /* Circle - elegant scale and fade (About page style) */
  .process-step.is-visible .process-step__ring {
    animation: mobileCircleEnter 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  @keyframes mobileCircleEnter {
    0% {
      opacity: 0;
      transform: scale(0.92);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Icon - subtle fade with minimal scale */
  .process-step .process-step__circle i {
    opacity: 1;
  }

  .process-step.is-visible .process-step__circle i {
    animation: mobileIconEnter 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
  }

  @keyframes mobileIconEnter {
    0% {
      opacity: 0;
      transform: scale(0.85);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Text - gentle slide from right (RTL) */
  .process-step .process-step__content {
    opacity: 1;
    transform: translateX(0);
  }

  .process-step.is-visible .process-step__content {
    animation: mobileTextEnter 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
  }

  @keyframes mobileTextEnter {
    0% {
      opacity: 0;
      transform: translateX(-10px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Override hover transform for visible elements */
  .process-step.is-visible:hover,
  .process-step.is-visible.process-step--top:hover,
  .process-step.is-visible.process-step--bottom:hover {
    transform: translateX(0) !important;
  }
}

/* ===== RESPONSIVE - SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
  .process-section {
    min-height: auto;
    padding: 40px 8px 40px 3px;
  }

  .process-timeline {
    padding-right: 40px;
    padding-left: 0;
    flex: none;
  }

  .process-timeline::before {
    right: 40px;
    width: 3px;
    top: 40px;
    height: calc(100% - 80px);
  }

  .process-timeline::after {
    right: 39px;
    width: 5px;
    top: 40px;
    height: 60px;
  }

  @keyframes lineGlowTravel {
    0% {
      top: 40px;
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      top: calc(100% - 100px);
      opacity: 0;
    }
  }

  .process-steps {
    gap: 20px;
  }

  .process-step {
    padding-right: 0;
    padding-left: 0;
  }

  .process-step__card {
    gap: 10px;
    padding-left: 0;
    justify-content: flex-end;
    width: 100%;
  }

  .process-step__ring {
    width: 85px;
    height: 85px;
    padding: 12px;
  }

  .process-step__circle {
    width: 56px;
    height: 56px;
  }

  .process-step__circle i {
    font-size: 24px;
  }

  .process-step__content h3 {
    font-size: var(--font-size-md);
  }

  .process-step__content p {
    font-size: var(--font-size-base);
    line-height: 1.5;
  }
}

/* ===== SERVICES SECTION - PREMIUM LUXURIOUS DESIGN ===== */
#services {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
}

/* Decorative background elements */
#services::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 137, 188, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

#services::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Section Header Styling */
#services .section-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

#services .section-header__title {
  color: #ffffff;
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

#services .section-header__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* Decorative line under title */
#services .section-header__title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #0089BC, #3B82F6);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===== PREMIUM SERVICE CARDS - MOSAIC GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 308px);
  gap: 20px;
  max-width: 1210px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 2;
}

/* ===== STUNNING FULL-IMAGE CARD DESIGN ===== */
.service-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer !important;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.service-card * {
  cursor: pointer !important;
}

/* Full-cover image */
.service-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: brightness(0.85) saturate(1.1);
  will-change: transform;
}

/* Elegant gradient overlay - dark navy blue */
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 25, 50, 0.85) 0%,
    rgba(15, 25, 50, 0.45) 35%,
    rgba(15, 25, 50, 0.12) 60%,
    transparent 100%
  );
}

/* Content at bottom */
.service-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  z-index: 2;
}

/* Elegant title */
.service-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

/* Stylish Read More button */
.service-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 0;
  transform: translateY(15px);
}

.service-card__btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

/* ===== HOVER EFFECTS ===== */
.service-card:hover,
.service-card:focus {
  cursor: pointer !important;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(0, 137, 188, 0.15);
}

.service-card:hover > img {
  transform: scale(1.08);
}

.service-card:hover .service-card__title {
  transform: translateY(-3px);
}

.service-card:hover .service-card__btn {
  opacity: 1;
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.service-card:hover .service-card__btn i {
  transform: translateX(-4px);
}

/* No shine sweep effect */

/* Stagger delays - only during scroll-in animation, not hover */
.service-card.stagger-1:not(.is-visible) { transition-delay: 0s; }
.service-card.stagger-2:not(.is-visible) { transition-delay: 0.05s; }
.service-card.stagger-3:not(.is-visible) { transition-delay: 0.1s; }
.service-card.stagger-4:not(.is-visible) { transition-delay: 0.15s; }
.service-card.stagger-5:not(.is-visible) { transition-delay: 0.2s; }
.service-card.stagger-6:not(.is-visible) { transition-delay: 0.25s; }

/* ===== RESPONSIVE - LAPTOP (hover devices) ===== */
@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
  .service-card {
    cursor: pointer !important;
  }
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1024px) {
  #services {
    padding: 80px 0 100px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 264px);
    gap: 18px;
    padding: 15px;
    max-width: 770px;
  }

  .service-card__title {
    font-size: 1.2rem;
  }

  .service-card__btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .service-card__content {
    padding: 22px 20px;
  }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 600px) {
  #services {
    padding: 60px 0 80px;
  }

  #services .section-header {
    margin-bottom: 35px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 220px);
    gap: 16px;
    max-width: 440px;
  }

  .service-card__content {
    padding: 18px 16px;
    gap: 10px;
  }

  .service-card__title {
    font-size: 1.1rem;
  }

  .service-card__btn {
    opacity: 1;
    transform: translateY(0);
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .service-card:hover {
    transform: translateY(-6px);
  }

  .service-card::after {
    display: none;
  }
}

/* ===== PLACEHOLDER GRIDS - Videos & Gallery ===== */
.videos-placeholder-grid,
.gallery-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}

.gallery-placeholder-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.placeholder-card {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--color-bg-section) 0%, var(--color-border-light) 100%);
  border-radius: var(--border-radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  border: 2px dashed var(--color-border);
  transition: var(--transition-all-fast);
}

.placeholder-card:hover {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary-pale) 0%, var(--color-bg-section) 100%);
}

.placeholder-card--image {
  aspect-ratio: 1/1;
}

.placeholder-card__icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: var(--shadow-primary-md);
}

.placeholder-card__icon svg {
  width: 28px;
  height: 28px;
}

.placeholder-card__text {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  margin: 0;
}

/* Light section background */
.section--light {
  background: var(--color-bg-section);
}

/* ===== DARK SECTION ===== */
.section--dark {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.section--dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(0, 137, 188, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 137, 188, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.section-header--light .section-header__title {
  color: #ffffff;
}

.section-header--light .section-header__subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== TIMELINE - DIAGONAL ZIGZAG DESIGN ===== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
  min-height: 1200px;
}

/* SVG Path Container */
.timeline__path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Main Line with Drawing Animation */
.timeline__line {
  stroke-dasharray: 4000;
  stroke-dashoffset: 4000;
  animation: drawPath 3s ease-out forwards;
}

.timeline.is-visible .timeline__line {
  animation: drawPath 3s ease-out forwards;
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

/* Glow Pulse Animation */
.timeline__glow {
  stroke-dasharray: 200 4000;
  stroke-dashoffset: 0;
  animation: pulseGlow 4s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes pulseGlow {
  0% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    stroke-dashoffset: -4000;
    opacity: 0;
  }
}

/* Step Container */
.timeline__step {
  position: absolute;
  width: 45%;
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease-out;
  z-index: 2;
}

.timeline__step.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Right-side steps */
.timeline__step--right {
  right: 0;
  flex-direction: row-reverse;
  text-align: right;
  transform: translateX(50px);
}

.timeline__step--right.is-visible {
  transform: translateX(0);
}

/* Left-side steps */
.timeline__step--left {
  left: 0;
  flex-direction: row;
  text-align: left;
  transform: translateX(-50px);
}

.timeline__step--left.is-visible {
  transform: translateX(0);
}

/* Position each step vertically */
.timeline__step[data-step="1"] { top: 20px; }
.timeline__step[data-step="2"] { top: 180px; }
.timeline__step[data-step="3"] { top: 360px; }
.timeline__step[data-step="4"] { top: 540px; }
.timeline__step[data-step="5"] { top: 720px; }
.timeline__step[data-step="6"] { top: 920px; }

/* Animation stagger delays - fast appearance */
.timeline__step[data-step="1"] { transition-delay: 0s; }
.timeline__step[data-step="2"] { transition-delay: 0.1s; }
.timeline__step[data-step="3"] { transition-delay: 0.2s; }
.timeline__step[data-step="4"] { transition-delay: 0.3s; }
.timeline__step[data-step="5"] { transition-delay: 0.4s; }
.timeline__step[data-step="6"] { transition-delay: 0.5s; }

/* Node Point */
.timeline__node {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: linear-gradient(135deg, #0089BC 0%, #1665C1 100%);
  border-radius: 50%;
  border: 3px solid #1e3a5f;
  box-shadow: 0 0 20px rgba(0, 137, 188, 0.6);
  position: relative;
  z-index: 3;
  animation: nodePulse 2s ease-in-out infinite;
}

.timeline__node--final {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.7);
  width: 24px;
  height: 24px;
  min-width: 24px;
}

@keyframes nodePulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(0, 137, 188, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 137, 188, 0.8), 0 0 50px rgba(0, 137, 188, 0.4);
  }
}

/* Card */
.timeline__card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: rgba(30, 58, 95, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 137, 188, 0.3);
  border-radius: 16px;
  padding: var(--space-lg);
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-width: 340px;
}

.timeline__card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 137, 188, 0.6);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 137, 188, 0.2);
}

/* Icon Container */
.timeline__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(0, 137, 188, 0.2) 0%, rgba(22, 101, 193, 0.2) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 137, 188, 0.3);
  transition: all 0.4s ease;
}

.timeline__icon svg {
  width: 24px;
  height: 24px;
  color: #0089BC;
  transition: transform 0.4s ease;
}

.timeline__card:hover .timeline__icon {
  background: linear-gradient(135deg, rgba(0, 137, 188, 0.3) 0%, rgba(22, 101, 193, 0.3) 100%);
  border-color: rgba(0, 137, 188, 0.5);
}

.timeline__card:hover .timeline__icon svg {
  transform: scale(1.1) rotate(5deg);
}

/* Final Icon */
.timeline__icon--final {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
  border-color: rgba(16, 185, 129, 0.3);
}

.timeline__icon--final svg {
  color: #10b981;
}

/* Content */
.timeline__content {
  flex: 1;
}

.timeline__number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0089BC;
  background: rgba(0, 137, 188, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: var(--space-xs);
  letter-spacing: 1px;
}

.timeline__content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.timeline__content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* Final Card */
.timeline__card--final {
  background: linear-gradient(135deg, rgba(26, 74, 58, 0.9) 0%, rgba(30, 58, 95, 0.9) 100%);
  border-color: rgba(16, 185, 129, 0.4);
}

.timeline__card--final:hover {
  border-color: rgba(16, 185, 129, 0.7);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), 0 0 30px rgba(16, 185, 129, 0.2);
}

.timeline__card--final .timeline__number {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

/* ===== TABLET ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .timeline {
    max-width: 700px;
    min-height: 1100px;
  }

  .timeline__step {
    width: 48%;
  }

  .timeline__card {
    padding: var(--space-md);
    max-width: 280px;
  }

  .timeline__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .timeline__icon svg {
    width: 20px;
    height: 20px;
  }

  .timeline__content h3 {
    font-size: 1rem;
  }

  .timeline__content p {
    font-size: 0.85rem;
  }
}

/* ===== MOBILE - VERTICAL CENTERED ===== */
@media (max-width: 768px) {
  .timeline {
    max-width: 100%;
    padding: var(--space-xl) var(--space-md);
    min-height: auto;
  }

  /* Hide SVG path on mobile */
  .timeline__path {
    display: none;
  }

  /* Vertical Line via pseudo-element */
  .timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: calc(100% - 120px);
    background: linear-gradient(180deg, #0089BC 0%, #1665C1 50%, #10b981 100%);
    box-shadow: 0 0 20px rgba(0, 137, 188, 0.5);
    border-radius: 2px;
    z-index: 1;
    animation: drawVerticalLine 2s ease-out forwards;
  }

  @keyframes drawVerticalLine {
    from { height: 0; }
    to { height: calc(100% - 120px); }
  }

  /* Reset step positioning */
  .timeline__step {
    position: relative;
    top: auto !important;
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: translateY(30px);
    margin-bottom: var(--space-xl);
    padding: 0;
  }

  .timeline__step--right,
  .timeline__step--left {
    left: auto;
    right: auto;
    flex-direction: column;
    text-align: center;
  }

  .timeline__step.is-visible {
    transform: translateY(0);
  }

  /* Node centered */
  .timeline__node {
    margin-bottom: var(--space-md);
  }

  /* Card centered */
  .timeline__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 320px;
    width: 100%;
  }

  .timeline__content {
    text-align: center;
  }

  .timeline__card:hover {
    transform: none;
  }

  /* Faster animation on mobile - cards appear sooner */
  .timeline__step[data-step="1"] { transition-delay: 0s; }
  .timeline__step[data-step="2"] { transition-delay: 0.1s; }
  .timeline__step[data-step="3"] { transition-delay: 0.2s; }
  .timeline__step[data-step="4"] { transition-delay: 0.3s; }
  .timeline__step[data-step="5"] { transition-delay: 0.4s; }
  .timeline__step[data-step="6"] { transition-delay: 0.5s; }
}

/* Additional stagger delays */
.stagger-7 { transition-delay: 700ms; }
.stagger-8 { transition-delay: 800ms; }

/* ===== WHATSAPP FLOATING BUTTON ===== */
/* Aligned vertically above accessibility button */
.whatsapp-btn {
  position: fixed;
  bottom: calc(var(--space-xl) + 48px + 14px);
  left: var(--space-xl);
  width: 48px;
  height: 48px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}

/* Mobile positioning - aligned above accessibility button */
@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: calc(var(--space-md) + 42px + 10px);
    left: var(--space-md);
    width: 42px;
    height: 42px;
  }

  .whatsapp-btn svg {
    width: 22px;
    height: 22px;
  }
}

/* ===== BACK TO TOP BUTTON — right side ===== */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 137, 188, 0.4);
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 137, 188, 0.5);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .back-to-top {
    right: var(--space-md);
    bottom: var(--space-md);
    width: 40px;
    height: 40px;
  }
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* ===== SERVICES SECTION - LARGE Radial Orbit Design ===== */

/* Section Background - Deep Blue */
.section--services-orbit {
  position: relative;
  background: #0a3278;
  overflow: hidden;
  padding: clamp(80px, 12vw, 160px) 0;
}

/* Subtle background gradient */
.section--services-orbit::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.section--services-orbit::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* ===== ORBIT CONTAINER - LARGE ===== */
.services-orbit {
  position: relative;
  width: 100%;
  max-width: 850px;
  aspect-ratio: 1;
  margin: 0 auto;
}

/* SVG Connection Lines */
.orbit-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.orbit-line {
  stroke: var(--color-primary);
  stroke-width: 1.5;
  stroke-opacity: 0.2;
  stroke-dasharray: 8 4;
  transition: all 0.4s ease;
}

.orbit-ring {
  stroke: var(--color-primary);
  stroke-width: 2;
  stroke-opacity: 0.12;
  stroke-dasharray: 6 10;
}

/* ===== CENTRAL LOGO - LARGE 220px ===== */
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.orbit-center__glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, rgba(0, 137, 188, 0.3) 0%, transparent 60%);
  border-radius: 50%;
  animation: center-pulse 3s ease-in-out infinite;
}

@keyframes center-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}

.orbit-center__logo {
  position: relative;
  width: 220px;
  height: 220px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 40px rgba(0, 137, 188, 0.25),
    0 0 60px rgba(0, 137, 188, 0.2),
    inset 0 0 30px rgba(0, 137, 188, 0.05);
  border: 3px solid rgba(0, 137, 188, 0.25);
  animation: logo-float 4s ease-in-out infinite;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.orbit-center__logo img {
  width: 65%;
  height: auto;
  object-fit: contain;
}

/* ===== SERVICE CIRCLES - LARGE 150px with TEXT ===== */
.orbit-node {
  --orbit-distance: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  text-decoration: none;
  z-index: 5;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Position each node using CSS custom property --angle */
.orbit-node[style*="--angle: 0deg"] {
  transform: translate(-50%, -50%) translateY(calc(-1 * var(--orbit-distance)));
}
.orbit-node[style*="--angle: 45deg"] {
  transform: translate(-50%, -50%) translate(calc(var(--orbit-distance) * 0.707), calc(-1 * var(--orbit-distance) * 0.707));
}
.orbit-node[style*="--angle: 90deg"] {
  transform: translate(-50%, -50%) translateX(var(--orbit-distance));
}
.orbit-node[style*="--angle: 135deg"] {
  transform: translate(-50%, -50%) translate(calc(var(--orbit-distance) * 0.707), calc(var(--orbit-distance) * 0.707));
}
.orbit-node[style*="--angle: 180deg"] {
  transform: translate(-50%, -50%) translateY(var(--orbit-distance));
}
.orbit-node[style*="--angle: 225deg"] {
  transform: translate(-50%, -50%) translate(calc(-1 * var(--orbit-distance) * 0.707), calc(var(--orbit-distance) * 0.707));
}
.orbit-node[style*="--angle: 270deg"] {
  transform: translate(-50%, -50%) translateX(calc(-1 * var(--orbit-distance)));
}
.orbit-node[style*="--angle: 315deg"] {
  transform: translate(-50%, -50%) translate(calc(-1 * var(--orbit-distance) * 0.707), calc(-1 * var(--orbit-distance) * 0.707));
}

/* Service Circle - Glass effect with TEXT inside */
.service-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(0, 137, 188, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  box-shadow:
    0 8px 32px rgba(0, 137, 188, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-circle__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  color: var(--color-primary);
  opacity: 0.9;
}

.service-circle__icon svg {
  width: 100%;
  height: 100%;
}

.service-circle__text {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.35;
}

/* Color variants for icons */
.service-circle--primary .service-circle__icon { color: #0089BC; }
.service-circle--purple .service-circle__icon { color: #8b5cf6; }
.service-circle--cyan .service-circle__icon { color: #06b6d4; }
.service-circle--green .service-circle__icon { color: #10b981; }
.service-circle--amber .service-circle__icon { color: #f59e0b; }
.service-circle--rose .service-circle__icon { color: #f43f5e; }
.service-circle--indigo .service-circle__icon { color: #6366f1; }
.service-circle--teal .service-circle__icon { color: #14b8a6; }

/* Hover effects */
.orbit-node:hover {
  z-index: 20;
}

.orbit-node:hover .service-circle {
  transform: scale(1.12);
  border-color: var(--color-primary);
  box-shadow:
    0 12px 48px rgba(0, 137, 188, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset,
    0 0 40px rgba(0, 137, 188, 0.2);
}

.orbit-node:hover .service-circle__icon {
  transform: scale(1.15);
}

.orbit-node:hover .service-circle__text {
  color: var(--color-primary);
}

/* Button spacing */
.section--services-orbit .text-center.mt-3xl {
  margin-top: clamp(80px, 10vw, 120px) !important;
}

/* ===== ORBIT RESPONSIVE - Tablet ===== */
@media (max-width: 900px) {
  .services-orbit {
    max-width: 700px;
  }

  .orbit-node {
    --orbit-distance: 240px;
  }

  .orbit-center__logo {
    width: 180px;
    height: 180px;
  }

  .orbit-center__glow {
    inset: -45px;
  }

  .service-circle {
    width: 130px;
    height: 130px;
    padding: 16px;
  }

  .service-circle__icon {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
  }

  .service-circle__text {
    font-size: 13px;
  }
}

/* ===== ORBIT RESPONSIVE - Mobile: VERTICAL STACK ===== */
@media (max-width: 768px) {
  .services-orbit {
    max-width: 100%;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 20px;
  }

  /* Hide SVG lines on mobile */
  .orbit-lines {
    display: none;
  }

  /* Center logo at top */
  .orbit-center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 20px;
  }

  .orbit-center__logo {
    width: 140px;
    height: 140px;
  }

  .orbit-center__glow {
    inset: -30px;
  }

  /* Service circles in grid */
  .orbit-node {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
  }

  .services-orbit {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
  }

  .orbit-center {
    grid-column: 1 / -1;
  }

  .service-circle {
    width: 140px;
    height: 140px;
    padding: 15px;
  }

  .service-circle__icon {
    width: 28px;
    height: 28px;
  }

  .service-circle__text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .services-orbit {
    gap: 16px;
    padding: 10px;
  }

  .orbit-center__logo {
    width: 120px;
    height: 120px;
  }

  .service-circle {
    width: 120px;
    height: 120px;
    padding: 12px;
  }

  .service-circle__icon {
    width: 24px;
    height: 24px;
    margin-bottom: 6px;
  }

  .service-circle__text {
    font-size: 12px;
  }
}

/* ===== LEGACY BENTO STYLES (keeping for other pages) ===== */

/* Background Effects Container */
.services-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Animated gradient mesh */
.services-bg__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 80% 0%, rgba(0, 137, 188, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  animation: gradient-shift 15s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Noise texture */
.services-bg__noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Floating gradient orbs */
.services-bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 20s ease-in-out infinite;
}

.services-bg__glow--1 {
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 137, 188, 0.4) 0%, transparent 70%);
}

.services-bg__glow--2 {
  bottom: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
  animation-delay: -10s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.9); }
  75% { transform: translate(20px, 30px) scale(1.05); }
}

/* Premium Section Header */
.section--services .section-header {
  margin-bottom: clamp(50px, 8vw, 80px);
}

/* ===== ABSTRACT HERO SYMBOL ===== */
.services-hero-symbol {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main glow behind symbol */
.services-hero-symbol__glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(0, 137, 188, 0.5) 0%, transparent 60%);
  filter: blur(30px);
  animation: symbol-glow-pulse 3s ease-in-out infinite;
}

@keyframes symbol-glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* Rotating rings with gradient effect */
.services-hero-symbol__ring {
  position: absolute;
  border-radius: 50%;
}

.services-hero-symbol__ring--1 {
  width: 140px;
  height: 140px;
  background: conic-gradient(from 0deg, transparent, rgba(0, 137, 188, 0.6), transparent, rgba(16, 185, 129, 0.4), transparent);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 2px));
  animation: ring-rotate 8s linear infinite;
}

.services-hero-symbol__ring--2 {
  width: 120px;
  height: 120px;
  background: conic-gradient(from 90deg, transparent, rgba(0, 137, 188, 0.5), transparent 50%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 2px));
  animation: ring-rotate 12s linear infinite reverse;
}

.services-hero-symbol__ring--3 {
  width: 100px;
  height: 100px;
  background: conic-gradient(from 180deg, transparent, rgba(16, 185, 129, 0.6), transparent, rgba(0, 137, 188, 0.4), transparent);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 2px));
  animation: ring-rotate 6s linear infinite;
}

@keyframes ring-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Center core with icon */
.services-hero-symbol__core {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 137, 188, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 30px rgba(0, 137, 188, 0.4),
    inset 0 0 20px rgba(0, 137, 188, 0.2);
  animation: core-pulse 2s ease-in-out infinite;
}

.services-hero-symbol__core::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0089BC, #10b981);
  opacity: 0.6;
  z-index: -1;
  animation: core-glow 2s ease-in-out infinite alternate;
}

@keyframes core-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes core-glow {
  0% { opacity: 0.4; filter: blur(8px); }
  100% { opacity: 0.8; filter: blur(12px); }
}

.services-hero-symbol__core svg {
  width: 48px;
  height: 48px;
  animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(5deg); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .services-hero-symbol {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
  }

  .services-hero-symbol__glow {
    inset: -30px;
  }

  .services-hero-symbol__ring--1 { width: 110px; height: 110px; }
  .services-hero-symbol__ring--2 { width: 90px; height: 90px; }
  .services-hero-symbol__ring--3 { width: 70px; height: 70px; }

  .services-hero-symbol__core {
    width: 60px;
    height: 60px;
  }

  .services-hero-symbol__core svg {
    width: 36px;
    height: 36px;
  }
}

.section--services .section-header__title {
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #0089BC 50%, #10b981 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: title-shimmer 4s ease-in-out infinite;
  margin-bottom: var(--space-md);
}

@keyframes title-shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* Title decorator line */
.section--services .section-header__title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0089BC, #10b981);
  border-radius: 2px;
  margin: 20px auto 0;
}

.section--services .section-header__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BENTO GRID LAYOUT ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* ===== BENTO CARD - Premium Glass Morphism ===== */
.bento-card {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 10px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Inner highlight line at top */
.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

/* Card glow effect */
.bento-card__glow {
  position: absolute;
  top: -100%;
  right: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle at center, rgba(0, 137, 188, 0.2) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.bento-card:hover .bento-card__glow {
  opacity: 1;
}

/* Premium Hover State */
.bento-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(0, 137, 188, 0.5);
  box-shadow:
    0 20px 40px rgba(0, 137, 188, 0.2),
    0 0 60px rgba(0, 137, 188, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Featured card (larger) */
.bento-card--featured {
  grid-column: span 2;
  background: linear-gradient(
    135deg,
    rgba(0, 137, 188, 0.15) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border-color: rgba(0, 137, 188, 0.3);
}

.bento-card--featured:hover {
  border-color: rgba(0, 137, 188, 0.6);
  box-shadow:
    0 20px 50px rgba(0, 137, 188, 0.25),
    0 0 80px rgba(0, 137, 188, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Wide card */
.bento-card--wide {
  grid-column: span 2;
}

/* Card content */
.bento-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Icon container - Premium Animated */
.bento-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0089BC 0%, #006d96 100%);
  border-radius: 16px;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 137, 188, 0.3);
  position: relative;
  overflow: hidden;
}

/* Icon shine effect */
.bento-card__icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.bento-card:hover .bento-card__icon::before {
  left: 100%;
}

.bento-card__icon svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

/* Premium icon hover animation */
.bento-card:hover .bento-card__icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(0, 137, 188, 0.5);
}

.bento-card:hover .bento-card__icon svg {
  transform: scale(1.15);
}

/* Icon color variants - Premium Solid Gradients */
.bento-card__icon--purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}
.bento-card:hover .bento-card__icon--purple {
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

.bento-card__icon--cyan {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}
.bento-card:hover .bento-card__icon--cyan {
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.5);
}

.bento-card__icon--green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}
.bento-card:hover .bento-card__icon--green {
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

.bento-card__icon--amber {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}
.bento-card:hover .bento-card__icon--amber {
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
}

.bento-card__icon--rose {
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
  box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4);
}
.bento-card:hover .bento-card__icon--rose {
  box-shadow: 0 10px 30px rgba(244, 63, 94, 0.5);
}

.bento-card__icon--indigo {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}
.bento-card:hover .bento-card__icon--indigo {
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
}

.bento-card__icon--teal {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.4);
}
.bento-card:hover .bento-card__icon--teal {
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.5);
}

/* Card title - Premium Typography */
.bento-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.bento-card:hover .bento-card__title {
  color: #0089BC;
}

/* Card text */
.bento-card__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

/* Card link - Interactive "Learn More" */
.bento-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0089BC;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Link becomes visible on card hover */
.bento-card:hover .bento-card__link {
  opacity: 1;
  transform: translateY(0);
}

.bento-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[dir="rtl"] .bento-card__link svg {
  transform: scaleX(-1);
}

.bento-card__link:hover {
  color: #33a1c9;
}

.bento-card__link:hover svg {
  transform: translateX(5px);
}

[dir="rtl"] .bento-card__link:hover svg {
  transform: scaleX(-1) translateX(5px);
}

/* Services CTA wrapper - proper spacing */
.section--services .text-center.mt-3xl {
  margin-top: clamp(80px, 12vw, 120px) !important;
  padding-top: 20px;
}

/* Premium CTA Button for dark section */
.btn--glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #0089BC 0%, #006d96 100%);
  border: none;
  border-radius: 14px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 15px rgba(0, 137, 188, 0.4),
    0 0 40px rgba(0, 137, 188, 0.2);
}

/* Animated glow ring */
.btn--glow::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, #0089BC, #10b981, #0089BC);
  border-radius: 17px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn--glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn--glow:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 8px 25px rgba(0, 137, 188, 0.5),
    0 0 60px rgba(0, 137, 188, 0.3);
}

.btn--glow:hover::after {
  opacity: 0.6;
  animation: glow-pulse 1.5s ease-in-out infinite;
}

.btn--glow:hover::before {
  transform: translateX(100%);
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.btn--glow svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

[dir="rtl"] .btn--glow svg {
  transform: scaleX(-1);
}

.btn--glow:hover svg {
  transform: translateX(5px);
}

[dir="rtl"] .btn--glow:hover svg {
  transform: scaleX(-1) translateX(5px);
}

/* ===== SCROLL ANIMATIONS ===== */

/* Base state for animated cards (About page style - 1.5s) */
.bento-card.animate-fade-up {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Visible state */
.bento-card.animate-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered delays for cards */
.bento-card[data-delay="0"] { transition-delay: 0ms; }
.bento-card[data-delay="100"] { transition-delay: 100ms; }
.bento-card[data-delay="200"] { transition-delay: 200ms; }
.bento-card[data-delay="300"] { transition-delay: 300ms; }
.bento-card[data-delay="400"] { transition-delay: 400ms; }
.bento-card[data-delay="500"] { transition-delay: 500ms; }
.bento-card[data-delay="600"] { transition-delay: 600ms; }
.bento-card[data-delay="700"] { transition-delay: 700ms; }

/* ===== BENTO GRID RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .bento-card--featured,
  .bento-card--wide {
    grid-column: span 2;
  }

  .bento-card {
    padding: 28px;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .section--services {
    padding: 60px 0 80px;
  }

  .section--services .section-header__title {
    font-size: 2rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bento-card--featured,
  .bento-card--wide {
    grid-column: span 1;
  }

  .bento-card {
    min-height: auto;
    padding: 24px;
    border-radius: 20px;
  }

  .bento-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .bento-card__icon svg {
    width: 24px;
    height: 24px;
  }

  /* Show links always on mobile (no hover) */
  .bento-card__link {
    opacity: 1;
    transform: translateY(0);
  }

  /* Reduce orb sizes on mobile */
  .services-bg__glow--1,
  .services-bg__glow--2 {
    width: 300px;
    height: 300px;
    filter: blur(60px);
  }

  .services-bg__glow--1 {
    top: -5%;
    right: -15%;
  }

  .services-bg__glow--2 {
    bottom: -10%;
    left: -15%;
  }

  /* CTA button spacing */
  .section--services .text-center.mt-3xl {
    margin-top: 50px !important;
  }

  .btn--glow {
    padding: 16px 32px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
}

/* ===== BLUE FOOTER ===== */
.footer--blue {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.footer--blue .footer__title,
.footer--blue .footer__link,
.footer--blue .footer__contact-item {
  color: rgba(255, 255, 255, 0.9);
}

.footer--blue .footer__link:hover {
  color: var(--color-white);
}

.footer--blue .footer__copyright {
  color: rgba(255, 255, 255, 0.7);
}

/* Social Buttons in Footer - Premium */
.footer__social-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.footer__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--border-radius-lg);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: var(--transition-all-smooth);
  position: relative;
  overflow: hidden;
}

.footer__social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-out-expo);
}

.footer__social-btn:hover::before {
  transform: translateX(100%);
}

.footer__social-btn--facebook {
  background: linear-gradient(135deg, #1877f2 0%, #1466d8 100%);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.3);
}

.footer__social-btn--facebook:hover {
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.footer__social-btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.footer__social-btn--whatsapp:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.footer__social-btn--linkedin {
  background: linear-gradient(135deg, #0a66c2 0%, #0856a8 100%);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(10, 102, 194, 0.3);
}

.footer__social-btn--linkedin:hover {
  box-shadow: 0 8px 25px rgba(10, 102, 194, 0.4);
}

.footer__social-btn--email {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.footer__social-btn--email:hover {
  box-shadow: var(--shadow-lg);
}

.footer__social-btn:hover {
  transform: translateY(-4px) scale(1.02);
}

/* ================================
   3D Social Logo Buttons (CTA Section)
   ================================ */
.social-3d-buttons {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  flex-wrap: wrap;
}

.social-3d-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(44px, 6vw, 50px);
  height: clamp(44px, 6vw, 50px);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.social-3d-btn svg {
  width: clamp(20px, 3vw, 24px);
  height: clamp(20px, 3vw, 24px);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

/* 3D depth layer */
.social-3d-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  transform: translateZ(-6px) translateY(6px);
  opacity: 0.4;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Shine effect */
.social-3d-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  border-radius: 12px 12px 50% 50%;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%);
  pointer-events: none;
}

.social-3d-btn:hover {
  transform: translateY(-8px) rotateX(10deg);
}

.social-3d-btn:hover svg {
  transform: scale(1.1);
}

.social-3d-btn:hover::before {
  transform: translateZ(-10px) translateY(10px);
  opacity: 0.3;
}

.social-3d-btn:active {
  transform: translateY(-2px) rotateX(5deg);
}

/* WhatsApp 3D */
.social-3d-btn--whatsapp {
  background: linear-gradient(145deg, #2ee36e 0%, #25D366 50%, #1db954 100%);
  box-shadow:
    0 6px 20px rgba(37, 211, 102, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.15),
    inset 0 -3px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.social-3d-btn--whatsapp::before {
  background: #1a9e4a;
}

.social-3d-btn--whatsapp:hover {
  box-shadow:
    0 12px 35px rgba(37, 211, 102, 0.5),
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 -3px 10px rgba(0, 0, 0, 0.1);
}

/* Facebook 3D */
.social-3d-btn--facebook {
  background: linear-gradient(145deg, #4a9eff 0%, #1877f2 50%, #1466d8 100%);
  box-shadow:
    0 6px 20px rgba(24, 119, 242, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.15),
    inset 0 -3px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.social-3d-btn--facebook::before {
  background: #0d5bbf;
}

.social-3d-btn--facebook:hover {
  box-shadow:
    0 12px 35px rgba(24, 119, 242, 0.5),
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 -3px 10px rgba(0, 0, 0, 0.1);
}

/* LinkedIn 3D */
.social-3d-btn--linkedin {
  background: linear-gradient(145deg, #2a8fe0 0%, #0a66c2 50%, #0856a8 100%);
  box-shadow:
    0 6px 20px rgba(10, 102, 194, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.15),
    inset 0 -3px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.social-3d-btn--linkedin::before {
  background: #064d8c;
}

.social-3d-btn--linkedin:hover {
  box-shadow:
    0 12px 35px rgba(10, 102, 194, 0.5),
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 -3px 10px rgba(0, 0, 0, 0.1);
}

/* Email 3D */
.social-3d-btn--email {
  background: linear-gradient(145deg, #ff6b8a 0%, #ea4c89 50%, #d63d7a 100%);
  box-shadow:
    0 6px 20px rgba(234, 76, 137, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.15),
    inset 0 -3px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.social-3d-btn--email::before {
  background: #b8306a;
}

.social-3d-btn--email:hover {
  box-shadow:
    0 12px 35px rgba(234, 76, 137, 0.5),
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 -3px 10px rgba(0, 0, 0, 0.1);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .social-3d-btn {
    transition: none;
  }
  .social-3d-btn:hover {
    transform: none;
  }
  .social-3d-btn svg,
  .social-3d-btn::before {
    transition: none;
  }
}

/* Responsive Process Flow */
@media (max-width: 768px) {
  .process-flow {
    flex-direction: column;
  }

  .process-step {
    max-width: 100%;
  }

  .process-step__arrow {
    display: none;
  }

  .about-logo-title {
    font-size: var(--font-size-xl);
  }

  .about-header {
    gap: 20px;
  }

  .about-title-text {
    font-size: 2rem;
  }

  .about-logo-animated {
    height: calc(var(--font-size-xl) * 1.8);
  }

  .about-logo-dot {
    font-size: calc(var(--font-size-xl) * 1.4);
    bottom: 2px;
    right: -12px;
  }

  .about-line {
    display: none;
  }
}

/* =====================================================
   PROCESS SECTION - 6-Point Workflow
   ONE continuous structural form with six functional nodes
   ===================================================== */

.process {
  background: #fff;
  padding: 120px 0 140px;
}

/* ===== METHODOLOGY - WORLD-CLASS PREMIUM WORKFLOW ===== */
/* Award-winning. Luxurious. Sophisticated micro-interactions. */

.methodology {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 120px 60px 160px;
  gap: 18px;
  direction: rtl;
  position: relative;
}

/* === DECORATIVE BACKGROUND: Subtle radial accents === */
.methodology::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 15% 40%, rgba(0, 137, 188, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 500px 350px at 85% 60%, rgba(0, 168, 168, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* === CONNECTING LINE: Elegant dashed thread === */
.methodology::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 90px;
  left: 90px;
  height: 2px;
  background:
    repeating-linear-gradient(90deg,
      rgba(0, 137, 188, 0.2) 0px,
      rgba(0, 137, 188, 0.2) 12px,
      transparent 12px,
      transparent 24px
    );
  transform: translateY(-50%);
  z-index: 0;
}

/* === STEP CARDS: Multi-layer premium glass === */
.methodology__step {
  flex: 0 0 152px;
  height: 152px;
  text-align: center;
  padding: 0;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(250, 251, 252, 0.95) 100%
    );
  border-radius: 24px;
  border: 1px solid rgba(0, 137, 188, 0.06);
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.01),
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 4px 8px rgba(0, 0, 0, 0.02),
    0 8px 16px rgba(0, 0, 0, 0.02),
    0 16px 32px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.02);
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.5s ease,
    opacity 0.5s ease;
}

/* Glass shine highlight */
.methodology__step::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 55%;
  border-radius: 24px 24px 50% 50%;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 255, 255, 0.2) 40%,
    transparent 100%
  );
  opacity: 0.5;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

/* === STEP NUMBER: Premium floating badge === */
.methodology__step::after {
  content: attr(data-step);
  position: absolute;
  top: -16px;
  right: 50%;
  transform: translateX(50%);
  width: 36px;
  height: 36px;
  background:
    linear-gradient(145deg,
      var(--color-primary) 0%,
      #007aa8 50%,
      var(--color-secondary) 100%
    );
  color: #fff;
  font-family: 'Heebo', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 2px 4px rgba(0, 137, 188, 0.15),
    0 4px 8px rgba(0, 137, 188, 0.15),
    0 8px 16px rgba(0, 137, 188, 0.2),
    0 0 0 4px rgba(255, 255, 255, 0.95),
    0 0 0 5px rgba(0, 137, 188, 0.08);
  z-index: 3;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.7s ease;
}

/* === ZIGZAG POSITIONING === */
.methodology__step--high {
  transform: translateY(-40px);
}

.methodology__step--low {
  transform: translateY(40px);
}

.methodology__step--outcome {
  transform: translateY(40px);
}

/* === HOVER STATE: Luxurious elevation with glow === */
.methodology__step:hover,
.methodology__step:focus {
  z-index: 10;
  border-color: rgba(0, 137, 188, 0.12);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.01),
    0 4px 8px rgba(0, 137, 188, 0.04),
    0 8px 16px rgba(0, 137, 188, 0.06),
    0 16px 32px rgba(0, 137, 188, 0.08),
    0 32px 64px rgba(0, 137, 188, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.02),
    0 0 60px rgba(0, 137, 188, 0.08);
}

.methodology__step:hover::before,
.methodology__step:focus::before {
  opacity: 0.7;
}

.methodology__step:hover::after,
.methodology__step:focus::after {
  transform: translateX(50%) scale(1.1) translateY(-2px);
  box-shadow:
    0 4px 8px rgba(0, 137, 188, 0.2),
    0 8px 16px rgba(0, 137, 188, 0.25),
    0 16px 32px rgba(0, 137, 188, 0.2),
    0 0 0 4px rgba(255, 255, 255, 1),
    0 0 0 6px rgba(0, 137, 188, 0.15),
    0 0 40px rgba(0, 137, 188, 0.25);
}

.methodology__step--high:hover,
.methodology__step--high:focus {
  transform: translateY(-48px);
}

.methodology__step--low:hover,
.methodology__step--low:focus,
.methodology__step--outcome:hover,
.methodology__step--outcome:focus {
  transform: translateY(32px);
}

/* === SIBLING RECESSION: Elegant fade with scale === */
.methodology:has(.methodology__step:hover) .methodology__step:not(:hover),
.methodology:has(.methodology__step:focus) .methodology__step:not(:focus) {
  opacity: 0.3;
  filter: saturate(0.7);
}

.methodology:has(.methodology__step:hover) .methodology__step--high:not(:hover),
.methodology:has(.methodology__step:focus) .methodology__step--high:not(:focus) {
  transform: translateY(-40px) scale(0.97);
}

.methodology:has(.methodology__step:hover) .methodology__step--low:not(:hover),
.methodology:has(.methodology__step:focus) .methodology__step--low:not(:focus),
.methodology:has(.methodology__step:hover) .methodology__step--outcome:not(:hover),
.methodology:has(.methodology__step:focus) .methodology__step--outcome:not(:focus) {
  transform: translateY(40px) scale(0.97);
}

/* === CONCEPT TEXT === */
.methodology__concept {
  display: block;
  font-family: 'Heebo', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  line-height: 1.5;
  letter-spacing: -0.01em;
  padding: 0 16px;
  position: relative;
  z-index: 2;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

/* === REVEAL PANEL: Floating premium card === */
.methodology__reveal {
  position: absolute;
  top: calc(100% + 12px);
  right: -24px;
  left: -24px;
  padding: 28px 24px 28px;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.99) 0%,
      rgba(250, 251, 252, 0.98) 100%
    );
  border-radius: 20px;
  border: 1px solid rgba(0, 137, 188, 0.06);
  opacity: 0;
  transform: translateY(-8px) scale(0.96);
  pointer-events: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.01),
    0 4px 8px rgba(0, 137, 188, 0.03),
    0 8px 16px rgba(0, 137, 188, 0.05),
    0 16px 32px rgba(0, 137, 188, 0.06),
    0 32px 64px rgba(0, 0, 0, 0.08);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 5;
}

/* Top accent bar */
.methodology__reveal::before {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 0 0 4px 4px;
}

/* Corner accent */
.methodology__reveal::after {
  content: '';
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 28px;
  height: 28px;
  border-left: 2px solid rgba(0, 168, 168, 0.12);
  border-bottom: 2px solid rgba(0, 168, 168, 0.12);
  border-radius: 0 0 0 10px;
}

/* === HOVER: Reveal content === */
.methodology__step:hover .methodology__concept,
.methodology__step:focus .methodology__concept {
  opacity: 0.2;
  transform: translateY(-6px);
}

.methodology__step:hover .methodology__reveal,
.methodology__step:focus .methodology__reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* === TITLE: Gradient text === */
.methodology__title {
  font-family: 'Heebo', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 10px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-text-primary) 20%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === DETAIL TEXT === */
.methodology__detail {
  font-family: 'Heebo', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.75;
}

/* === OUTCOME STEP: Premium destination === */
.methodology__step--outcome {
  background:
    linear-gradient(145deg,
      rgba(0, 168, 168, 0.06) 0%,
      rgba(0, 137, 188, 0.04) 50%,
      rgba(255, 255, 255, 0.98) 100%
    );
  border-color: rgba(0, 168, 168, 0.12);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.01),
    0 2px 4px rgba(0, 168, 168, 0.03),
    0 4px 8px rgba(0, 168, 168, 0.03),
    0 8px 16px rgba(0, 168, 168, 0.04),
    0 16px 32px rgba(0, 168, 168, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 168, 168, 0.03);
}

.methodology__step--outcome::after {
  background:
    linear-gradient(145deg,
      var(--color-secondary) 0%,
      #00b5b5 50%,
      var(--color-primary) 100%
    );
  box-shadow:
    0 2px 4px rgba(0, 168, 168, 0.15),
    0 4px 8px rgba(0, 168, 168, 0.15),
    0 8px 16px rgba(0, 168, 168, 0.2),
    0 0 0 4px rgba(255, 255, 255, 0.95),
    0 0 0 5px rgba(0, 168, 168, 0.1);
}

.methodology__step--outcome .methodology__concept {
  color: var(--color-primary);
  font-weight: 600;
}

.methodology__step--outcome:hover,
.methodology__step--outcome:focus {
  border-color: rgba(0, 168, 168, 0.18);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.01),
    0 4px 8px rgba(0, 168, 168, 0.05),
    0 8px 16px rgba(0, 168, 168, 0.08),
    0 16px 32px rgba(0, 168, 168, 0.1),
    0 32px 64px rgba(0, 168, 168, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(0, 168, 168, 0.03),
    0 0 80px rgba(0, 168, 168, 0.1);
}

.methodology__step--outcome:hover::after,
.methodology__step--outcome:focus::after {
  box-shadow:
    0 4px 8px rgba(0, 168, 168, 0.2),
    0 8px 16px rgba(0, 168, 168, 0.25),
    0 16px 32px rgba(0, 168, 168, 0.2),
    0 0 0 4px rgba(255, 255, 255, 1),
    0 0 0 6px rgba(0, 168, 168, 0.18),
    0 0 48px rgba(0, 168, 168, 0.3);
}

.methodology__step--outcome:hover .methodology__concept,
.methodology__step--outcome:focus .methodology__concept {
  opacity: 0.25;
}

.methodology__step--outcome .methodology__reveal {
  background: linear-gradient(180deg,
    rgba(0, 168, 168, 0.03) 0%,
    rgba(255, 255, 255, 0.99) 100%
  );
  border-color: rgba(0, 168, 168, 0.08);
}

.methodology__step--outcome .methodology__reveal::before {
  background: linear-gradient(90deg, var(--color-secondary), #00b5b5, var(--color-primary));
}

.methodology__step--outcome .methodology__reveal::after {
  border-color: rgba(0, 168, 168, 0.15);
}

.methodology__step--outcome .methodology__title {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Mobile hidden by default */
.process-mobile {
  display: none;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .process {
    padding: 100px 0 120px;
  }

  .methodology {
    padding: 100px 32px 140px;
    gap: 14px;
  }

  .methodology::before {
    right: 50px;
    left: 50px;
  }

  .methodology__step {
    flex: 0 0 132px;
    height: 132px;
    border-radius: 20px;
  }

  .methodology__step::before {
    border-radius: 20px 20px 50% 50%;
  }

  .methodology__step::after {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
    top: -12px;
  }

  .methodology__step--high {
    transform: translateY(-32px);
  }

  .methodology__step--low,
  .methodology__step--outcome {
    transform: translateY(32px);
  }

  .methodology__step--high:hover,
  .methodology__step--high:focus {
    transform: translateY(-40px);
  }

  .methodology__step--low:hover,
  .methodology__step--low:focus,
  .methodology__step--outcome:hover,
  .methodology__step--outcome:focus {
    transform: translateY(24px);
  }

  /* Sibling recession for tablet */
  .methodology:has(.methodology__step:hover) .methodology__step--high:not(:hover),
  .methodology:has(.methodology__step:focus) .methodology__step--high:not(:focus) {
    transform: translateY(-32px) scale(0.97);
  }

  .methodology:has(.methodology__step:hover) .methodology__step--low:not(:hover),
  .methodology:has(.methodology__step:focus) .methodology__step--low:not(:focus),
  .methodology:has(.methodology__step:hover) .methodology__step--outcome:not(:hover),
  .methodology:has(.methodology__step:focus) .methodology__step--outcome:not(:focus) {
    transform: translateY(32px) scale(0.97);
  }

  .methodology__concept {
    font-size: 0.88rem;
    padding: 0 14px;
  }

  .methodology__reveal {
    top: calc(100% + 8px);
    right: -16px;
    left: -16px;
    padding: 22px 20px 24px;
    border-radius: 16px;
  }

  .methodology__reveal::before {
    width: 44px;
  }

  .methodology__reveal::after {
    width: 22px;
    height: 22px;
    bottom: 12px;
    left: 12px;
  }

  .methodology__title {
    font-size: 1rem;
  }

  .methodology__detail {
    font-size: 0.8rem;
    line-height: 1.65;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .process {
    padding: 80px 0 100px;
  }

  /* Hide desktop methodology */
  .methodology {
    display: none;
  }

  /* Show mobile accordion - exceptional premium */
  .process-mobile {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 480px;
    margin: 50px auto 0;
    padding: 0 24px;
  }

  .process-mobile__item {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 137, 188, 0.08);
    direction: rtl;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow:
      0 2px 8px rgba(0, 0, 0, 0.03),
      0 8px 24px rgba(0, 0, 0, 0.04);
    transition:
      box-shadow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      border-color 0.8s ease;
  }

  .process-mobile__item.is-active {
    border-color: rgba(0, 137, 188, 0.15);
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.04),
      0 16px 48px rgba(0, 137, 188, 0.1);
  }

  .process-mobile__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    gap: 16px;
  }

  /* Step number badge for mobile */
  .process-mobile__step {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #fff;
    font-family: 'Heebo', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 137, 188, 0.25);
  }

  .process-mobile__concept {
    flex: 1;
    font-family: 'Heebo', sans-serif;
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    line-height: 1.5;
  }

  .process-mobile__toggle {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: none;
    background: none;
    color: var(--color-primary);
    opacity: 0.4;
    cursor: pointer;
    transition:
      transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      opacity 0.5s ease;
  }

  .process-mobile__item.is-active .process-mobile__toggle {
    transform: rotate(180deg);
    opacity: 0.7;
  }

  .process-mobile__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .process-mobile__item.is-active .process-mobile__content {
    max-height: 200px;
  }

  .process-mobile__inner {
    padding: 0 24px 24px 24px;
    padding-right: 72px; /* Align with text after badge */
    border-top: 1px solid rgba(0, 137, 188, 0.06);
    margin-top: -4px;
    padding-top: 20px;
  }

  /* Accent line above expanded content */
  .process-mobile__inner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 24px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .process-mobile__item.is-active .process-mobile__inner::before {
    opacity: 0.5;
  }

  .process-mobile__title {
    font-family: 'Heebo', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 10px;
    line-height: 1.5;
  }

  .process-mobile__detail {
    font-family: 'Heebo', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.7;
  }

  /* Final step styling - premium accent */
  .process-mobile__item--final {
    background: linear-gradient(135deg,
      rgba(0, 137, 188, 0.04) 0%,
      rgba(0, 168, 168, 0.06) 100%
    );
    border-color: rgba(0, 168, 168, 0.12);
  }

  .process-mobile__item--final .process-mobile__step {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    box-shadow: 0 2px 8px rgba(0, 168, 168, 0.3);
  }

  .process-mobile__item--final .process-mobile__concept {
    color: var(--color-primary);
    font-weight: 600;
  }

  .process-mobile__item--final.is-active {
    border-color: rgba(0, 168, 168, 0.2);
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.04),
      0 16px 48px rgba(0, 168, 168, 0.12);
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
  .process-mobile {
    padding: 0 16px;
    gap: 12px;
  }

  .process-mobile__header {
    padding: 18px 20px;
    gap: 12px;
  }

  .process-mobile__step {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .process-mobile__concept {
    font-size: 0.95rem;
  }

  .process-mobile__inner {
    padding: 0 20px 20px;
    padding-right: 60px;
  }

  .process-mobile__title {
    font-size: 1rem;
  }

  .process-mobile__detail {
    font-size: 0.85rem;
  }
}

/* ================================================================== */
/* ALTERNATIVE WORKFLOW DESIGNS - Premium Showcase                    */
/* ================================================================== */

/* === COMMON STYLES FOR ALL ALTERNATIVES === */
.process-alt {
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}

.process-alt--cascade {
  background: linear-gradient(180deg, #f8fafb 0%, #ffffff 50%, #f8fafb 100%);
}

.process-alt--orbital {
  background: linear-gradient(180deg, #0a1628 0%, #0d1f35 50%, #0a1628 100%);
}

.process-alt--stacked {
  background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%);
}

.style-label {
  display: inline-block;
  font-family: 'Heebo', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  background: rgba(0, 137, 188, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.process-alt--orbital .style-label {
  color: #4dd0e1;
  background: rgba(77, 208, 225, 0.15);
}

.process-alt .section-header__subtitle {
  font-family: 'Heebo', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-tertiary);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.process-alt--orbital .section-header__title {
  color: #ffffff;
}

.process-alt--orbital .section-header__subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.process-alt--orbital .title-dot {
  color: #4dd0e1;
}


/* ================================================================== */
/* STYLE A: CASCADE TIMELINE - Vertical Elegance                      */
/* ================================================================== */

.cascade {
  position: relative;
  max-width: 900px;
  margin: 80px auto 0;
  padding: 40px 0;
}

/* Central glowing line */
.cascade__line {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50%;
  width: 3px;
  transform: translateX(50%);
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(0, 137, 188, 0.15) 10%,
    rgba(0, 137, 188, 0.25) 30%,
    rgba(0, 168, 168, 0.25) 70%,
    rgba(0, 168, 168, 0.15) 90%,
    transparent 100%
  );
  border-radius: 3px;
}

.cascade__line::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -4px;
  left: -4px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(0, 137, 188, 0.08) 30%,
    rgba(0, 168, 168, 0.08) 70%,
    transparent 100%
  );
  filter: blur(8px);
}

/* Step container */
.cascade__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  direction: rtl;
}

.cascade__step:last-child {
  margin-bottom: 0;
}

/* Right side steps */
.cascade__step--right {
  padding-left: calc(50% + 50px);
}

.cascade__step--right .cascade__card {
  text-align: right;
}

/* Left side steps */
.cascade__step--left {
  padding-right: calc(50% + 50px);
  flex-direction: row-reverse;
}

.cascade__step--left .cascade__card {
  text-align: left;
}

/* Connection node */
.cascade__node {
  position: absolute;
  top: 30px;
  right: 50%;
  transform: translateX(50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 50%;
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 1),
    0 0 0 8px rgba(0, 137, 188, 0.15),
    0 4px 12px rgba(0, 137, 188, 0.3);
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cascade__step:hover .cascade__node {
  transform: translateX(50%) scale(1.2);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 1),
    0 0 0 10px rgba(0, 137, 188, 0.2),
    0 0 30px rgba(0, 137, 188, 0.4),
    0 8px 24px rgba(0, 137, 188, 0.4);
}

/* Card styling */
.cascade__card {
  background: #ffffff;
  padding: 32px 36px;
  border-radius: 20px;
  border: 1px solid rgba(0, 137, 188, 0.06);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.02),
    0 8px 24px rgba(0, 0, 0, 0.04),
    0 24px 48px rgba(0, 0, 0, 0.04);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.cascade__card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0, 137, 188, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.cascade__step:hover .cascade__card {
  transform: translateY(-8px);
  border-color: rgba(0, 137, 188, 0.12);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.02),
    0 16px 32px rgba(0, 137, 188, 0.08),
    0 32px 64px rgba(0, 137, 188, 0.08);
}

.cascade__step:hover .cascade__card::before {
  opacity: 1;
}

/* Number */
.cascade__number {
  display: block;
  font-family: 'Heebo', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(0, 137, 188, 0.12) 0%, rgba(0, 168, 168, 0.08) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  transition: all 0.5s ease;
}

.cascade__step:hover .cascade__number {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Title */
.cascade__title {
  font-family: 'Heebo', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 6px;
  line-height: 1.3;
}

/* Subtitle */
.cascade__subtitle {
  font-family: 'Heebo', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 0 12px;
  opacity: 0.8;
}

/* Detail */
.cascade__detail {
  font-family: 'Heebo', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

/* Final step special styling */
.cascade__step--final .cascade__node {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #00c4c4 50%, var(--color-primary) 100%);
  width: 28px;
  height: 28px;
}

.cascade__step--final .cascade__card {
  background: linear-gradient(135deg, rgba(0, 168, 168, 0.03) 0%, #ffffff 100%);
  border-color: rgba(0, 168, 168, 0.1);
}


/* ================================================================== */
/* STYLE B: ORBITAL JOURNEY - Cosmic Flow                             */
/* ================================================================== */

.orbital {
  position: relative;
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 60px 40px 80px;
}

/* SVG curved path */
.orbital__path {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 300px;
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.6;
}

.orbital__curve {
  stroke-dasharray: 8 12;
  stroke-linecap: round;
}

/* Steps container */
.orbital__steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  direction: rtl;
}

/* Individual step */
.orbital__step {
  flex: 0 0 160px;
  text-align: center;
  position: relative;
  cursor: pointer;
}

/* Staggered vertical positioning for wave effect */
.orbital__step:nth-child(1) { transform: translateY(0); }
.orbital__step:nth-child(2) { transform: translateY(40px); }
.orbital__step:nth-child(3) { transform: translateY(-20px); }
.orbital__step:nth-child(4) { transform: translateY(50px); }
.orbital__step:nth-child(5) { transform: translateY(10px); }
.orbital__step:nth-child(6) { transform: translateY(30px); }

/* Beacon/pulse effect */
.orbital__beacon {
  position: absolute;
  top: -20px;
  right: 50%;
  transform: translateX(50%);
  width: 12px;
  height: 12px;
  background: #4dd0e1;
  border-radius: 50%;
  box-shadow:
    0 0 20px rgba(77, 208, 225, 0.6),
    0 0 40px rgba(77, 208, 225, 0.3);
  animation: beacon-pulse 3s infinite;
  animation-delay: calc(var(--delay) * 0.3s);
}

@keyframes beacon-pulse {
  0%, 100% {
    box-shadow:
      0 0 20px rgba(77, 208, 225, 0.6),
      0 0 40px rgba(77, 208, 225, 0.3);
  }
  50% {
    box-shadow:
      0 0 30px rgba(77, 208, 225, 0.8),
      0 0 60px rgba(77, 208, 225, 0.5),
      0 0 80px rgba(77, 208, 225, 0.3);
  }
}

/* Content container */
.orbital__content {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 20px;
  margin-top: 20px;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.orbital__step:hover .orbital__content {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(77, 208, 225, 0.2);
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(77, 208, 225, 0.1);
}

/* Icon */
.orbital__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: #4dd0e1;
  opacity: 0.8;
  transition: all 0.4s ease;
}

.orbital__icon svg {
  width: 100%;
  height: 100%;
}

.orbital__step:hover .orbital__icon {
  opacity: 1;
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(77, 208, 225, 0.5));
}

/* Title */
.orbital__title {
  font-family: 'Heebo', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.4;
}

/* Detail */
.orbital__detail {
  font-family: 'Heebo', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.6;
}

/* Final step */
.orbital__step--final .orbital__beacon {
  background: linear-gradient(135deg, #4dd0e1 0%, #26c6da 50%, #00bcd4 100%);
  width: 16px;
  height: 16px;
  box-shadow:
    0 0 30px rgba(77, 208, 225, 0.8),
    0 0 60px rgba(77, 208, 225, 0.5);
}

.orbital__step--final .orbital__content {
  background: rgba(77, 208, 225, 0.08);
  border-color: rgba(77, 208, 225, 0.2);
}

.orbital__step--final .orbital__icon {
  color: #26c6da;
}


/* ================================================================== */
/* STYLE C: STACKED DECK - 3D Perspective Cards                       */
/* ================================================================== */

/* ===== DECK - CLEAN PREMIUM CARDS ===== */
.deck {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  max-width: 1280px;
  margin: 50px auto 0;
  padding: 30px 20px 60px;
  direction: rtl;
  position: relative;
}

/* Connecting line behind cards */
.deck__connector {
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg,
    #33bfbf 0%,
    #33a1c9 20%,
    #008c8c 40%,
    #00A8A8 60%,
    #007aa8 80%,
    #0089BC 100%
  );
  border-radius: 2px;
  z-index: 0;
  opacity: 0.2;
  transform: translateY(-50%);
}

/* Individual card */
.deck__card {
  flex: 0 0 185px;
  position: relative;
  cursor: default;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  z-index: 1;
}

.deck__card:hover {
  transform: translateY(-10px);
  z-index: 10;
}

/* Glow effect behind card */
.deck__glow {
  position: absolute;
  inset: 15%;
  background: var(--card-color, #0089BC);
  border-radius: 20px;
  filter: blur(25px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.deck__card:hover .deck__glow {
  opacity: 0.25;
}

/* Sibling dimming on hover */
.deck:has(.deck__card:hover) .deck__card:not(:hover) {
  opacity: 0.75;
  transform: scale(0.98);
}

/* Card face - Clean Design */
.deck__face {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 22px 18px 18px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Top color accent bar */
.deck__face::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-color, #0089BC);
  border-radius: 18px 18px 0 0;
}

.deck__card:hover .deck__face {
  border-color: color-mix(in srgb, var(--card-color, #0089BC) 30%, transparent);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.06),
    0 12px 24px rgba(0, 0, 0, 0.08),
    0 0 0 1px color-mix(in srgb, var(--card-color, #0089BC) 15%, transparent);
}

/* Icon wrapper */
.deck__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

/* Icon circle */
.deck__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--card-color, #0089BC);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px color-mix(in srgb, var(--card-color, #0089BC) 35%, transparent);
  transition: box-shadow 0.3s ease;
}

.deck__icon i {
  font-size: 1.4rem;
  color: #FFFFFF;
}

.deck__card:hover .deck__icon {
  box-shadow: 0 4px 14px color-mix(in srgb, var(--card-color, #0089BC) 45%, transparent);
}

/* Step number */
.deck__step-num {
  font-family: 'Heebo', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--card-color, #0089BC);
  opacity: 0.12;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.deck__card:hover .deck__step-num {
  opacity: 0.2;
}

/* Content area */
.deck__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Badge */
.deck__badge {
  display: inline-block;
  font-family: 'Heebo', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--card-color, var(--color-primary));
  background: color-mix(in srgb, var(--card-color, #0089BC) 10%, transparent);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  align-self: flex-start;
  border: 1px solid color-mix(in srgb, var(--card-color, #0089BC) 20%, transparent);
}

/* Title */
.deck__title {
  font-family: 'Heebo', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 10px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.deck__card:hover .deck__title {
  color: var(--card-color, var(--color-primary));
}

/* Detail */
.deck__detail {
  font-family: 'Heebo', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
  flex-grow: 1;
}

/* Footer */
.deck__footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid color-mix(in srgb, var(--card-color, #0089BC) 15%, transparent);
}

/* Tag */
.deck__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Heebo', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-tertiary);
  background: rgba(0, 137, 188, 0.05);
  padding: 8px 14px;
  border-radius: 10px;
  transition: all 0.4s ease;
}

.deck__tag i {
  font-size: 0.7rem;
  opacity: 0.7;
}

.deck__card:hover .deck__tag {
  background: color-mix(in srgb, var(--card-color, #0089BC) 12%, transparent);
  color: var(--card-color, var(--color-primary));
}

.deck__card:hover .deck__tag i {
  opacity: 0.85;
}

/* Final card special styling */
.deck__card--final .deck__icon {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.35);
}

.deck__card--final:hover .deck__icon {
  box-shadow: 0 4px 14px rgba(255, 215, 0, 0.45);
}

.deck__card--final .deck__badge {
  background: rgba(0, 168, 168, 0.08);
  border-color: rgba(0, 168, 168, 0.15);
  color: var(--color-secondary);
}


/* ================================================================== */
/* RESPONSIVE: Alternative Designs                                    */
/* ================================================================== */

@media (max-width: 1024px) {
  /* Cascade adjustments */
  .cascade {
    max-width: 700px;
  }
  
  .cascade__step--right {
    padding-left: calc(50% + 40px);
  }
  
  .cascade__step--left {
    padding-right: calc(50% + 40px);
  }
  
  .cascade__card {
    padding: 24px 28px;
  }
  
  .cascade__number {
    font-size: 2.5rem;
  }
  
  /* Orbital adjustments */
  .orbital__step {
    flex: 0 0 140px;
  }
  
  .orbital__content {
    padding: 22px 16px;
  }
  
  .orbital__icon {
    width: 40px;
    height: 40px;
  }
  
  .orbital__title {
    font-size: 1rem;
  }
  
  .orbital__detail {
    font-size: 0.78rem;
  }
  
  /* Deck adjustments */
  .deck {
    gap: 14px;
    padding: 30px 15px 60px;
  }

  .deck__card {
    flex: 0 0 155px;
  }

  .deck__card:hover {
    transform: translateY(-8px);
  }

  .deck__face {
    padding: 18px 14px 16px;
    min-height: 270px;
    border-radius: 16px;
  }

  .deck__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .deck__icon i {
    font-size: 1.3rem;
  }

  .deck__step-num {
    font-size: 2rem;
  }

  .deck__badge {
    font-size: 0.75rem;  /* 12px - Google minimum */
    padding: 3px 10px;
  }

  .deck__title {
    font-size: 1.1rem;
  }

  .deck__detail {
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .deck__footer {
    margin-top: 12px;
    padding-top: 10px;
  }

  .deck__tag {
    font-size: 0.7rem;
    padding: 6px 10px;
  }
}

@media (max-width: 768px) {
  .process-alt {
    padding: 60px 0 80px;
  }

  .process-alt .section-header {
    margin-bottom: 30px;
    padding: 0 20px;
  }

  .process-alt .section-header__title {
    font-size: 2rem;
  }

  .process-alt .section-header__subtitle {
    font-size: 0.85rem;
  }

  .style-label {
    font-size: 0.75rem;  /* 12px - Google minimum */
    padding: 5px 12px;
    margin-bottom: 12px;
  }

  /* ===== STYLE A: CASCADE - Mobile Vertical Layout ===== */
  .cascade {
    padding: 40px 20px 60px;
  }

  .cascade__line {
    display: none;
  }

  .cascade__steps {
    flex-direction: column;
    gap: 24px;
  }

  .cascade__step {
    width: 100%;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 16px;
  }

  .cascade__step--right,
  .cascade__step--left {
    justify-content: flex-start;
  }

  .cascade__step--right .cascade__card,
  .cascade__step--left .cascade__card {
    margin: 0;
    text-align: right;
  }

  .cascade__node {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
  }

  .cascade__number {
    font-size: 1.1rem;
  }

  .cascade__card {
    flex: 1;
    padding: 16px;
    min-width: 0;
  }

  .cascade__title {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .cascade__subtitle {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  .cascade__detail {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  /* ===== STYLE B: ORBITAL - Mobile Vertical Layout ===== */
  .orbital {
    padding: 40px 20px 60px;
  }

  .orbital__path {
    display: none;
  }

  .orbital__steps {
    flex-direction: column;
    gap: 20px;
  }

  .orbital__step {
    flex: none;
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    transform: none !important;
  }

  .orbital__beacon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }

  .orbital__beacon::before {
    width: 48px;
    height: 48px;
  }

  .orbital__beacon::after {
    width: 24px;
    height: 24px;
  }

  .orbital__content {
    flex: 1;
    text-align: right;
    padding: 0;
    opacity: 1;
    transform: none;
  }

  .orbital__icon {
    display: none;
  }

  .orbital__title {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .orbital__detail {
    font-size: 0.8rem;
    line-height: 1.5;
    max-width: none;
  }

  /* ===== STYLE C: STACKED DECK - Mobile Vertical Layout ===== */
  .deck {
    perspective: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px 16px 50px;
    margin-top: 30px;
  }

  .deck__connector {
    display: none;
  }

  .deck__card {
    flex: none !important;
    width: 100% !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .deck:has(.deck__card:hover) .deck__card:not(:hover) {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .deck__face {
    min-height: auto;
    padding: 20px 18px 16px;
    border-radius: 18px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 14px;
  }

  .deck__icon-wrap {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
    flex: 0 0 auto;
  }

  .deck__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .deck__icon i {
    font-size: 1.35rem;
  }

  .deck__step-num {
    font-size: 1rem;
    opacity: 0.25;
  }

  .deck__content {
    flex: 1;
    min-width: 200px;
  }

  .deck__badge {
    font-size: 0.75rem;  /* 12px - Google minimum */
    padding: 3px 10px;
    margin-bottom: 6px;
  }

  .deck__title {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .deck__detail {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .deck__footer {
    width: 100%;
    margin-top: 12px;
    padding-top: 12px;
  }

  .deck__tag {
    font-size: 0.72rem;
    padding: 6px 12px;
  }

  .deck__glow {
    display: none;
  }

  /* Touch device - tap feedback */
  .deck__card:active .deck__face {
    transform: scale(0.98);
    transition: transform 0.15s ease;
  }

  .deck__card:active .deck__icon {
    transform: scale(1.05);
  }

  /* Final card mobile */
  .deck__card--final .deck__face {
    border: 2px solid rgba(0, 168, 168, 0.2);
  }
}


/* ================================================================== */
/* STYLE D: HORIZON SPHERES - Premium 3D Horizontal Flow              */
/* ================================================================== */

.process-alt--horizon {
  background: linear-gradient(180deg, 
    #f8fafb 0%, 
    #ffffff 30%,
    #ffffff 70%,
    #f8fafb 100%
  );
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.process-alt--horizon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 800px 600px at 20% 50%, rgba(0, 137, 188, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 80% 50%, rgba(0, 168, 168, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.horizon {
  position: relative;
  max-width: 1300px;
  margin: 80px auto 0;
  padding: 80px 40px 120px;
}

/* === CONNECTING LINE === */
.horizon__line {
  position: absolute;
  top: 130px;
  right: 120px;
  left: 120px;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 137, 188, 0.1) 5%,
    rgba(0, 137, 188, 0.2) 20%,
    rgba(0, 168, 168, 0.25) 50%,
    rgba(0, 168, 168, 0.2) 80%,
    rgba(0, 137, 188, 0.1) 95%,
    transparent 100%
  );
  border-radius: 3px;
  z-index: 0;
}

/* Glowing effect on line */
.horizon__line::before {
  content: '';
  position: absolute;
  inset: -6px -20px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 137, 188, 0.05) 20%,
    rgba(0, 168, 168, 0.08) 50%,
    rgba(0, 137, 188, 0.05) 80%,
    transparent 100%
  );
  filter: blur(10px);
  border-radius: 20px;
}

/* Animated light pulse traveling along line */
.horizon__line::after {
  content: '';
  position: absolute;
  top: -4px;
  width: 80px;
  height: 11px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 168, 168, 0.6) 50%,
    transparent 100%
  );
  border-radius: 10px;
  filter: blur(4px);
  animation: line-pulse 4s ease-in-out infinite;
}

@keyframes line-pulse {
  0% { left: 100%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: -80px; opacity: 0; }
}

/* === STEPS CONTAINER === */
.horizon__steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  direction: rtl;
}

/* === INDIVIDUAL STEP === */
.horizon__step {
  position: relative;
  flex: 0 0 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.horizon__step:hover {
  transform: translateY(-6px);
}

/* === 3D SPHERE === */
.horizon__sphere {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 28px;
  transform-style: preserve-3d;
  /* No transform transitions - prevents jumping */
}

/* Progress fill overlay - bottom-up wave effect */
.horizon__sphere::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: linear-gradient(to top,
    rgba(0, 137, 188, 0.7) 0%,
    rgba(0, 168, 168, 0.5) 30%,
    rgba(0, 168, 168, 0.2) 60%,
    transparent 100%);
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.7s cubic-bezier(0.33, 1, 0.68, 1),
              opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  z-index: 3;
  pointer-events: none;
}

/* Current hovered step - fill animates up */
.horizon__step:hover .horizon__sphere::before {
  opacity: 1;
  transform: translateY(0);
}

/* Main sphere body - 3D gradient */
.horizon__sphere-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 60% 50% at 30% 25%,
      rgba(255, 255, 255, 0.9) 0%,
      transparent 50%),
    radial-gradient(ellipse 100% 100% at 50% 50%,
      #33b5e5 0%,
      #0089BC 35%,
      #007099 60%,
      #005577 100%);
  box-shadow:
    inset -8px -8px 20px rgba(0, 85, 119, 0.4),
    inset 4px 4px 15px rgba(255, 255, 255, 0.3),
    0 8px 32px rgba(0, 137, 188, 0.3),
    0 16px 48px rgba(0, 137, 188, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1),
              box-shadow 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  z-index: 2;
}

.horizon__step:hover .horizon__sphere-inner {
  transform: scale(1.08);
  box-shadow:
    inset -8px -8px 20px rgba(0, 85, 119, 0.4),
    inset 4px 4px 15px rgba(255, 255, 255, 0.4),
    0 12px 40px rgba(0, 137, 188, 0.4),
    0 24px 64px rgba(0, 137, 188, 0.25),
    0 0 60px rgba(0, 137, 188, 0.2);
}

/* Title inside sphere */
.horizon__number {
  font-family: 'Heebo', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
  text-align: center;
  padding: 0 6px;
}

/* Hide title below circle - now shown inside sphere */
.horizon__title {
  display: none;
}

/* Rotating ring around sphere */
.horizon__ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(0, 168, 168, 0.4);
  border-right-color: rgba(0, 137, 188, 0.2);
  animation: ring-rotate 8s linear infinite;
  transition: border-color 0.5s cubic-bezier(0.33, 1, 0.68, 1),
              transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  z-index: 1;
}

.horizon__step:hover .horizon__ring {
  border-top-color: rgba(0, 168, 168, 0.8);
  border-right-color: rgba(0, 137, 188, 0.5);
  animation-duration: 3s;
  transform: scale(1.06);
}

@keyframes ring-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Outer glow effect */
.horizon__glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(0, 137, 188, 0.15) 0%,
    rgba(0, 168, 168, 0.08) 40%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1),
              transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  z-index: 0;
  animation: glow-pulse 3s ease-in-out infinite;
  animation-play-state: paused;
  transform: scale(0.9);
}

.horizon__step:hover .horizon__glow {
  opacity: 1;
  animation-play-state: running;
  transform: scale(1.1);
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* === CONTENT BELOW SPHERE === */
.horizon__content {
  opacity: 0.9;
  transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.horizon__step:hover .horizon__content {
  opacity: 1;
}

/* Title */
.horizon__title {
  font-family: 'Heebo', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 6px;
  line-height: 1.3;
  transition: color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.horizon__step:hover .horizon__title {
  color: var(--color-primary);
}

/* Subtitle - Hidden by default, appears above sphere on hover */
.horizon__subtitle {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  font-family: 'Heebo', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1),
              transform 0.5s cubic-bezier(0.33, 1, 0.68, 1),
              visibility 0.5s;
  box-shadow: 0 4px 12px rgba(0, 137, 188, 0.25);
  z-index: 10;
}

/* Small arrow pointing down */
.horizon__subtitle::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--color-secondary);
}

.horizon__step:hover .horizon__subtitle {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Detail */
.horizon__detail {
  font-family: 'Heebo', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.65;
  max-width: 160px;
}

/* === FINAL STEP - TEAL VARIANT === */
.horizon__step--final .horizon__sphere-inner {
  background: 
    radial-gradient(ellipse 60% 50% at 30% 25%, 
      rgba(255, 255, 255, 0.9) 0%, 
      transparent 50%),
    radial-gradient(ellipse 100% 100% at 50% 50%,
      #33d6d6 0%,
      #00A8A8 35%,
      #008888 60%,
      #006666 100%);
  box-shadow:
    inset -8px -8px 20px rgba(0, 102, 102, 0.4),
    inset 4px 4px 15px rgba(255, 255, 255, 0.3),
    0 8px 32px rgba(0, 168, 168, 0.35),
    0 16px 48px rgba(0, 168, 168, 0.2);
}

.horizon__step--final:hover .horizon__sphere-inner {
  box-shadow:
    inset -8px -8px 20px rgba(0, 102, 102, 0.4),
    inset 4px 4px 15px rgba(255, 255, 255, 0.4),
    0 12px 40px rgba(0, 168, 168, 0.45),
    0 24px 64px rgba(0, 168, 168, 0.3),
    0 0 80px rgba(0, 168, 168, 0.25);
}

.horizon__step--final .horizon__ring {
  border-top-color: rgba(0, 168, 168, 0.5);
  border-right-color: rgba(0, 200, 200, 0.3);
}

.horizon__step--final .horizon__glow {
  background: radial-gradient(circle,
    rgba(0, 168, 168, 0.2) 0%,
    rgba(0, 200, 200, 0.1) 40%,
    transparent 70%
  );
}

.horizon__step--final .horizon__title {
  color: var(--color-secondary);
}

/* Final step subtitle - same white text on gradient as others */
.horizon__step--final .horizon__subtitle {
  color: var(--color-white);
}

/* === PROGRESS TRAIL - Previous steps fill when hovering later steps === */
/* When step 2+ is hovered, step 1 shows filled */
.horizon__steps:has(.horizon__step:nth-child(n+2):hover) .horizon__step:nth-child(1) .horizon__sphere::before {
  opacity: 0.85;
  transform: translateY(0);
}

/* When step 3+ is hovered, step 2 shows filled */
.horizon__steps:has(.horizon__step:nth-child(n+3):hover) .horizon__step:nth-child(2) .horizon__sphere::before {
  opacity: 0.85;
  transform: translateY(0);
}

/* When step 4+ is hovered, step 3 shows filled */
.horizon__steps:has(.horizon__step:nth-child(n+4):hover) .horizon__step:nth-child(3) .horizon__sphere::before {
  opacity: 0.85;
  transform: translateY(0);
}

/* When step 5+ is hovered, step 4 shows filled */
.horizon__steps:has(.horizon__step:nth-child(n+5):hover) .horizon__step:nth-child(4) .horizon__sphere::before {
  opacity: 0.85;
  transform: translateY(0);
}

/* When step 6 is hovered, step 5 shows filled */
.horizon__steps:has(.horizon__step:nth-child(6):hover) .horizon__step:nth-child(5) .horizon__sphere::before {
  opacity: 0.85;
  transform: translateY(0);
}

/* Completed steps get subtle ring glow */
.horizon__steps:has(.horizon__step:nth-child(n+2):hover) .horizon__step:nth-child(1) .horizon__ring,
.horizon__steps:has(.horizon__step:nth-child(n+3):hover) .horizon__step:nth-child(2) .horizon__ring,
.horizon__steps:has(.horizon__step:nth-child(n+4):hover) .horizon__step:nth-child(3) .horizon__ring,
.horizon__steps:has(.horizon__step:nth-child(n+5):hover) .horizon__step:nth-child(4) .horizon__ring,
.horizon__steps:has(.horizon__step:nth-child(6):hover) .horizon__step:nth-child(5) .horizon__ring {
  border-top-color: rgba(0, 137, 188, 0.6);
  border-right-color: rgba(0, 168, 168, 0.4);
}

/* ===== STAIRS VARIANT - Two-tier staircase with circles on steps ===== */

/* Staircase container - positioned behind the circles */
.staircase {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

/* Each stair step - L-shaped using clip-path */
.staircase__step {
  position: absolute;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  box-shadow: 0 4px 20px rgba(0, 137, 188, 0.3);
}

/* Step dimensions - each step is L-shaped (tread + riser) */
/* Tread: 140px wide, 12px thick */
/* Riser: 12px wide, 50px tall */

/* Step 1 - bottom right, just a tread (no riser below) */
.staircase__step[data-stair="1"] {
  right: 50px;
  bottom: 130px;
  width: 140px;
  height: 12px;
  border-radius: 6px;
}

/* Steps 2-6: L-shaped with tread and riser */
.staircase__step[data-stair="2"],
.staircase__step[data-stair="3"],
.staircase__step[data-stair="4"],
.staircase__step[data-stair="5"],
.staircase__step[data-stair="6"] {
  width: 152px;  /* 140px tread + 12px riser width */
  height: 62px;  /* 50px riser + 12px tread */
  /* L-shape: tread on top-right, riser goes down on right side */
  clip-path: polygon(0 0, 100% 0, 100% 100%, calc(100% - 12px) 100%, calc(100% - 12px) 12px, 0 12px);
  border-radius: 0;
}

.staircase__step[data-stair="2"] {
  right: calc(50px + 128px);
  bottom: 130px;
}

.staircase__step[data-stair="3"] {
  right: calc(50px + 268px);
  bottom: 180px;
}

.staircase__step[data-stair="4"] {
  right: calc(50px + 408px);
  bottom: 230px;
}

.staircase__step[data-stair="5"] {
  right: calc(50px + 548px);
  bottom: 280px;
}

.staircase__step[data-stair="6"] {
  right: calc(50px + 688px);
  bottom: 330px;
}

/* Circles styling for stairs variant */
.horizon--stairs .horizon__sphere {
  width: 70px;
  height: 70px;
  position: relative;
  z-index: 3;
}

.horizon--stairs .horizon__number {
  font-size: 0.75rem;  /* 12px - Google minimum */
}

.horizon--stairs .horizon__ring {
  inset: -8px;
}

.horizon--stairs .horizon__glow {
  inset: -14px;
}

/* Hide the diagonal line */
.horizon--stairs .horizon__line {
  display: none;
}

/* Position circles to sit on stair steps */
.horizon--stairs .horizon__step {
  flex: 0 0 140px;
  position: relative;
  z-index: 2;
}

/* Position each circle at the correct height to sit just above its stair */
/* Step height increment: 50px per step */
.horizon--stairs .horizon__step[data-step="1"] {
  transform: translateY(240px);
}

.horizon--stairs .horizon__step[data-step="2"] {
  transform: translateY(190px);
}

.horizon--stairs .horizon__step[data-step="3"] {
  transform: translateY(140px);
}

.horizon--stairs .horizon__step[data-step="4"] {
  transform: translateY(90px);
}

.horizon--stairs .horizon__step[data-step="5"] {
  transform: translateY(40px);
}

.horizon--stairs .horizon__step[data-step="6"] {
  transform: translateY(-10px);
}

/* Override ascending transforms when stairs is active */
.horizon--ascending.horizon--stairs .horizon__step[data-step="1"] {
  transform: translateY(240px);
}

.horizon--ascending.horizon--stairs .horizon__step[data-step="2"] {
  transform: translateY(190px);
}

.horizon--ascending.horizon--stairs .horizon__step[data-step="3"] {
  transform: translateY(140px);
}

.horizon--ascending.horizon--stairs .horizon__step[data-step="4"] {
  transform: translateY(90px);
}

.horizon--ascending.horizon--stairs .horizon__step[data-step="5"] {
  transform: translateY(40px);
}

.horizon--ascending.horizon--stairs .horizon__step[data-step="6"] {
  transform: translateY(-10px);
}

/* Hide the line when stairs is active */
.horizon--ascending.horizon--stairs .horizon__line {
  display: none;
}

/* Adjust container for stairs layout */
.horizon--ascending.horizon--stairs {
  padding-bottom: 350px;
  margin-top: -60px;
  min-height: 500px;
}

/* Subtitle popup (above) - more elegant and subtle */
.horizon--ascending.horizon--stairs .horizon__subtitle {
  top: -35px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 137, 188, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  width: auto;
  white-space: nowrap;
}

/* Detail popup (below) - moved left and right-aligned */
.horizon--ascending.horizon--stairs .horizon__detail {
  left: auto;
  right: 80%;
  transform: none;
  text-align: right;
  width: 200px;
  bottom: -60px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* ===== STAIRS RESPONSIVE - Tablet ===== */
@media (max-width: 1024px) {
  .staircase__step[data-stair="1"] {
    right: 30px;
  }

  .staircase__step[data-stair="2"] {
    right: calc(30px + 110px);
  }

  .staircase__step[data-stair="3"] {
    right: calc(30px + 230px);
  }

  .staircase__step[data-stair="4"] {
    right: calc(30px + 350px);
  }

  .staircase__step[data-stair="5"] {
    right: calc(30px + 470px);
  }

  .staircase__step[data-stair="6"] {
    right: calc(30px + 590px);
  }

  .horizon--stairs .horizon__step {
    flex: 0 0 120px;
  }
}

/* ===== STAIRS RESPONSIVE - Samsung Fold (unfolded ~958px) ===== */
@media (max-width: 960px) {
  .staircase__step {
    width: 130px !important;
  }

  .staircase__step[data-stair="2"],
  .staircase__step[data-stair="3"],
  .staircase__step[data-stair="4"],
  .staircase__step[data-stair="5"],
  .staircase__step[data-stair="6"] {
    width: 142px !important;
    height: 55px;
  }

  .horizon--stairs .horizon__step {
    flex: 0 0 100px;
  }

  .horizon--stairs .horizon__sphere {
    width: 60px;
    height: 60px;
  }

  .horizon--stairs .horizon__number {
    font-size: 0.75rem;  /* 12px - Google minimum */
  }
}

/* ===== STAIRS RESPONSIVE - Mobile (hide stairs and stones) ===== */
@media (max-width: 768px) {
  /* Hide staircase on mobile */
  .staircase {
    display: none !important;
  }

  /* Hide stones image on mobile */
  .horizon__stones {
    display: none !important;
  }

  /* Reset stairs-specific transforms for mobile vertical layout */
  .horizon--ascending.horizon--stairs {
    padding-bottom: 60px;
    margin-top: 0;
    min-height: auto;
  }

  .horizon--ascending.horizon--stairs .horizon__step[data-step="1"],
  .horizon--ascending.horizon--stairs .horizon__step[data-step="2"],
  .horizon--ascending.horizon--stairs .horizon__step[data-step="3"],
  .horizon--ascending.horizon--stairs .horizon__step[data-step="4"],
  .horizon--ascending.horizon--stairs .horizon__step[data-step="5"],
  .horizon--ascending.horizon--stairs .horizon__step[data-step="6"] {
    transform: none;
  }

  /* Mobile step layout - circle with positioned bubbles */
  .horizon--ascending.horizon--stairs .horizon__step {
    position: relative;
    flex: none;
    width: 100%;
    min-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .horizon--ascending.horizon--stairs .horizon__sphere {
    width: 70px;
    height: 70px;
  }

  .horizon--ascending.horizon--stairs .horizon__number {
    font-size: 0.75rem;  /* 12px - Google minimum */
  }

  /* Subtitle - top right of circle */
  .horizon--ascending.horizon--stairs .horizon__subtitle {
    position: absolute;
    top: 5px;
    right: 10%;
    left: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    font-size: 0.75rem;
    padding: 5px 12px;
    width: auto;
    max-width: 120px;
    text-align: right;
  }

  /* Detail/Content - bottom left of circle */
  .horizon--ascending.horizon--stairs .horizon__detail {
    position: absolute;
    bottom: 5px;
    left: 10%;
    right: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    font-size: 0.75rem;
    padding: 8px 12px;
    width: auto;
    max-width: 150px;
    text-align: left;
    line-height: 1.4;
  }

  /* Hide hover effects on mobile - always show */
  .horizon--ascending.horizon--stairs .horizon__step:hover .horizon__subtitle,
  .horizon--ascending.horizon--stairs .horizon__step:hover .horizon__detail {
    opacity: 1;
  }
}

/* ===== STAIRS RESPONSIVE - Small phones & Samsung Fold (folded ~374px) ===== */
@media (max-width: 480px) {
  .horizon--ascending.horizon--stairs .horizon__step {
    min-height: 140px;
    padding: 10px 0;
  }

  .horizon--ascending.horizon--stairs .horizon__sphere {
    width: 60px;
    height: 60px;
  }

  .horizon--ascending.horizon--stairs .horizon__subtitle {
    top: 0;
    right: 5%;
    font-size: 0.7rem;
    padding: 4px 10px;
    max-width: 100px;
  }

  .horizon--ascending.horizon--stairs .horizon__detail {
    bottom: 0;
    left: 5%;
    font-size: 0.7rem;
    padding: 6px 10px;
    max-width: 130px;
  }
}

/* ===== STAIRS RESPONSIVE - Extra small (iPhone SE, etc.) ===== */
@media (max-width: 375px) {
  .horizon--ascending.horizon--stairs .horizon__step {
    min-height: 130px;
  }

  .horizon--ascending.horizon--stairs .horizon__sphere {
    width: 55px;
    height: 55px;
  }

  .horizon--ascending.horizon--stairs .horizon__number {
    font-size: 0.75rem;  /* 12px - Google minimum */
  }

  .horizon--ascending.horizon--stairs .horizon__subtitle {
    font-size: 0.75rem;  /* 12px - Google minimum */
    max-width: 90px;
    padding: 3px 8px;
  }

  .horizon--ascending.horizon--stairs .horizon__detail {
    font-size: 0.75rem;  /* 12px - Google minimum */
    max-width: 110px;
    padding: 5px 8px;
  }
}

/* === TABLET === */
@media (max-width: 1024px) {
  .horizon {
    padding: 60px 24px 100px;
  }
  
  .horizon__line {
    right: 80px;
    left: 80px;
    top: 110px;
  }
  
  .horizon__step {
    flex: 0 0 145px;
  }
  
  .horizon__sphere {
    width: 85px;
    height: 85px;
  }
  
  .horizon__ring {
    inset: -10px;
  }
  
  .horizon__glow {
    inset: -16px;
  }
  
  .horizon__number {
    font-size: 0.8rem;
  }

  .horizon__title {
    font-size: 1rem;
  }
  
  .horizon__detail {
    font-size: 0.78rem;
    max-width: 140px;
  }
}

/* === MOBILE === */
@media (max-width: 768px) {
  .horizon {
    padding: 40px 20px 60px;
    margin-top: 40px;
  }

  .horizon__line {
    display: none;
  }

  .horizon__steps {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }

  .horizon__step {
    flex: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .horizon__sphere {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .horizon__sphere::before {
    inset: 2px;
  }

  .horizon__ring {
    inset: -8px;
  }

  .horizon__glow {
    inset: -14px;
  }

  .horizon__number {
    font-size: 0.7rem;
  }

  .horizon__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Title stays hidden on mobile too */

  .horizon__subtitle {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: inline-block;
    width: fit-content;
    font-size: 0.7rem;
    padding: 4px 10px;
    margin-bottom: 8px;
  }

  .horizon__subtitle::after {
    display: none;
  }

  .horizon__detail {
    font-size: 0.8rem;
    line-height: 1.5;
    max-width: 280px;
    text-align: center;
  }

  /* Progress trail - simpler on mobile */
  .horizon__steps:has(.horizon__step:nth-child(n+2):hover) .horizon__step:nth-child(1) .horizon__sphere::before,
  .horizon__steps:has(.horizon__step:nth-child(n+3):hover) .horizon__step:nth-child(2) .horizon__sphere::before,
  .horizon__steps:has(.horizon__step:nth-child(n+4):hover) .horizon__step:nth-child(3) .horizon__sphere::before,
  .horizon__steps:has(.horizon__step:nth-child(n+5):hover) .horizon__step:nth-child(4) .horizon__sphere::before,
  .horizon__steps:has(.horizon__step:nth-child(6):hover) .horizon__step:nth-child(5) .horizon__sphere::before {
    opacity: 0.7;
  }
}

/* ============================================== */
/* ASCENDING HORIZON VARIANT - Staircase Layout  */
/* ============================================== */

/* Make section fit viewport height */
.process-alt--ascending {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
}

.process-alt--ascending .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Match standard section header styles */
.process-alt--ascending > .container > .section-header {
  margin-bottom: 0;
  padding-top: 20px;
  transform: translateY(-100px) !important;
  position: relative;
}

.process-alt--ascending .section-header__title {
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.process-alt--ascending .section-header__subtitle {
  font-size: 0.95rem;
  color: #64748B;
  font-weight: 400;
}

.horizon--ascending {
  padding-top: 40px;
  padding-bottom: 280px;
  margin-top: -100px;
}

/* Position each step at ascending heights - Step 1 lowest, Step 6 highest */
/* RTL: Step 1 is on the right (start), Step 6 is on the left (end) */
.horizon--ascending .horizon__step[data-step="1"] {
  transform: translateY(300px);
}

.horizon--ascending .horizon__step[data-step="2"] {
  transform: translateY(240px);
}

.horizon--ascending .horizon__step[data-step="3"] {
  transform: translateY(180px);
}

.horizon--ascending .horizon__step[data-step="4"] {
  transform: translateY(120px);
}

.horizon--ascending .horizon__step[data-step="5"] {
  transform: translateY(60px);
}

.horizon--ascending .horizon__step[data-step="6"] {
  transform: translateY(0px);
}

/* Diagonal line passing through center of all balls */
/* Line starts at ball 6 (top-left) and goes down to ball 1 (bottom-right) */
.horizon--ascending .horizon__line {
  top: 100px;
  right: 95px;
  left: 95px;
  height: 4px;
  transform: rotate(18deg);
  transform-origin: left center;
}

/* Arrow-shaped animated pulse traveling along the line */
.horizon--ascending .horizon__line::after {
  content: '';
  position: absolute;
  top: -8px;
  width: 0;
  height: 0;
  /* Arrow pointing left (toward ball 6 / end of process) */
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 18px solid rgba(0, 168, 168, 0.8);
  background: none;
  border-radius: 0;
  filter: drop-shadow(0 0 6px rgba(0, 168, 168, 0.6));
  animation: arrow-pulse 7s ease-in-out infinite;
}

@keyframes arrow-pulse {
  0% { right: -30px; left: auto; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { right: calc(100% + 30px); left: auto; opacity: 0; }
}

/* Hide subtitle and detail text by default, show on hover */
/* Use absolute positioning to prevent layout shift */
/* Position relative to .horizon__step (already has position: relative) */

.horizon--ascending .horizon__subtitle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  text-align: center;
  top: -30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.horizon--ascending .horizon__detail {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  text-align: center;
  bottom: -50px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.horizon--ascending .horizon__step:hover .horizon__subtitle,
.horizon--ascending .horizon__step:hover .horizon__detail {
  opacity: 1;
  pointer-events: auto;
}

/* Tablet responsive */
@media (max-width: 1024px) {
  .horizon--ascending {
    padding-top: 40px;
    padding-bottom: 280px;
  }

  .horizon--ascending .horizon__step[data-step="1"] {
    transform: translateY(220px);
  }

  .horizon--ascending .horizon__step[data-step="2"] {
    transform: translateY(176px);
  }

  .horizon--ascending .horizon__step[data-step="3"] {
    transform: translateY(132px);
  }

  .horizon--ascending .horizon__step[data-step="4"] {
    transform: translateY(88px);
  }

  .horizon--ascending .horizon__step[data-step="5"] {
    transform: translateY(44px);
  }

  .horizon--ascending .horizon__step[data-step="6"] {
    transform: translateY(0px);
  }

  .horizon--ascending .horizon__line {
    top: 85px;
    right: 60px;
    left: 60px;
    transform: rotate(15deg);
    transform-origin: left center;
  }
}

/* Mobile - vertical layout with vertical animated line */
@media (max-width: 768px) {
  /* Fix process section container centering */
  .process-alt--ascending {
    padding: 40px 0;
  }

  .process-alt--ascending .container {
    max-width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Center section header */
  .process-alt--ascending > .container > .section-header {
    transform: none !important;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
    padding-top: 0;
  }

  .process-alt--ascending .section-header__title {
    font-size: 2rem;
    text-align: center;
  }

  .process-alt--ascending .section-header__subtitle {
    font-size: 0.85rem;
    text-align: center;
  }

  .horizon--ascending {
    padding-top: 40px;
    padding-bottom: 60px;
    margin-top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Vertical line for mobile - override display: none from generic .horizon__line */
  .horizon--ascending .horizon__line {
    display: block;
    transform: none;
    top: 40px;
    bottom: 40px;
    left: 50%;
    right: auto;
    width: 4px;
    height: auto;
    transform: translateX(-50%);
  }

  /* Arrow pointing down for mobile */
  .horizon--ascending .horizon__line::after {
    bottom: auto;
    left: -8px;
    /* Arrow pointing down */
    border-bottom: none;
    border-top: 18px solid rgba(0, 168, 168, 0.8);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    animation: arrow-pulse-vertical 7s ease-in-out infinite;
  }

  /* Center all steps */
  .horizon--ascending .horizon__steps {
    width: 100%;
    max-width: 320px;
    align-items: center;
    margin: 0 auto;
  }

  .horizon--ascending .horizon__step {
    align-items: center;
    text-align: center;
  }

  .horizon--ascending .horizon__step[data-step="1"],
  .horizon--ascending .horizon__step[data-step="2"],
  .horizon--ascending .horizon__step[data-step="3"],
  .horizon--ascending .horizon__step[data-step="4"],
  .horizon--ascending .horizon__step[data-step="5"],
  .horizon--ascending .horizon__step[data-step="6"] {
    transform: translateY(0);
  }

  /* Show subtitle and detail on mobile by default */
  .horizon--ascending .horizon__subtitle,
  .horizon--ascending .horizon__detail {
    position: static;
    transform: none;
    opacity: 1;
    width: 100%;
    max-width: 280px;
    pointer-events: auto;
  }

  .horizon--ascending .horizon__content {
    text-align: center;
    width: 100%;
  }

  /* Reduce stones image by 50% on mobile and adjust position */
  .horizon__stones {
    height: 180px !important;
    bottom: -20px !important;
    left: 50% !important;
    transform: translateX(-50%);
    opacity: 0.5 !important;
  }
}

/* Vertical arrow animation for mobile - top to bottom */
@keyframes arrow-pulse-vertical {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 20px);
    opacity: 0;
  }
}

/* ===== ABOUT PAGE STYLES ===== */

/* Hero variant for about page */
.hero--about {
  min-height: 70vh;
}

.hero--about .hero__content {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* About page title */
.about-page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.about-page-title__text {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0;
}

.about-page-title__logo {
  display: flex;
  align-items: center;
}

.about-page-title__logo img {
  height: clamp(40px, 6vw, 70px);
  width: auto;
}

.about-page-title__dot {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-right: -5px;
}

/* Section variants */
.section--gray {
  background: var(--color-bg-section);
}

.section--primary {
  background: var(--gradient-primary);
  position: relative;
}

/* Subtle radial glow overlay for depth */
.section--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(255,255,255,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 80%, rgba(0,168,168,0.2) 0%, transparent 50%);
  pointer-events: none;
}

/* Keep content above the glow overlay */
.section--primary > .container {
  position: relative;
  z-index: 2;
}

/* About content */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content__text {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.about-content__text--large {
  font-size: var(--font-size-lg);
  color: var(--color-text-primary);
}

/* Founder Grid */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-5xl);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.founder-grid__image {
  position: relative;
}

.founder-grid__image img {
  width: 100%;
  border-radius: var(--border-radius-2xl);
  box-shadow: var(--shadow-xl);
}

.founder-grid__name {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.founder-grid__title {
  font-size: var(--font-size-base);
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-xl);
}

.founder-grid__bio p {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

/* Beliefs Grid */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.belief-card {
  background: var(--color-white);
  border-radius: var(--border-radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-card);
  transition: var(--transition-all-smooth);
}

.belief-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.belief-card__icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary-pale);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.belief-card__icon i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.belief-card__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.belief-card__text {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-sm);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.value-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: var(--transition-all-smooth);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.value-card__icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.value-card__icon i {
  font-size: 1.75rem;
  color: var(--color-white);
}

.value-card__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.value-card__text {
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-sm);
}

/* Section header light variant */
.section-header__tag--light {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.section-header__title--light {
  color: var(--color-white);
}

/* Why Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.why-card {
  background: var(--color-white);
  border-radius: var(--border-radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition-all-smooth);
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.why-card__number {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  opacity: 0.3;
  margin-bottom: var(--space-md);
}

.why-card__text {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

/* Responsive for about page */
@media (max-width: 768px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .founder-grid__image {
    max-width: 300px;
    margin: 0 auto;
  }

  .beliefs-grid,
  .values-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-page-title {
    flex-direction: column;
    gap: var(--space-md);
  }
}

/* ===== PAGE HEADER - Internal Pages ===== */
.page-header {
  padding: calc(80px + var(--space-5xl)) 0 var(--space-5xl);
  background: linear-gradient(180deg, var(--color-bg-section) 0%, var(--color-white) 100%);
  text-align: center;
}

.page-header__content {
  max-width: 800px;
  margin: 0 auto;
}

.page-header__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.page-header__dot {
  color: var(--color-primary);
}

.page-header__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-regular);
}

/* ========================================
   MEDIA TABS - Videos/Gallery Section
   ======================================== */

.media-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.media-tabs__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  border: 1.5px solid transparent;
  border-radius: 12px;
  color: var(--color-text-primary);
  font-family: var(--font-family-heading);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 4px 20px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* Elegant underline accent */
.media-tabs__btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  border-radius: 3px 3px 0 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.media-tabs__btn svg {
  stroke: var(--color-primary);
  transition: all 0.4s ease;
  opacity: 0.8;
}

.media-tabs__btn:not(.media-tabs__btn--active):hover {
  background: linear-gradient(135deg, rgba(240, 249, 253, 0.95) 0%, rgba(230, 245, 248, 0.95) 100%);
  border: 1.5px solid var(--color-secondary);
  color: var(--color-text-primary);
  box-shadow:
    0 4px 12px rgba(0, 168, 168, 0.12),
    0 8px 30px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.media-tabs__btn:not(.media-tabs__btn--active):hover svg {
  stroke: var(--color-primary);
  opacity: 1;
  transform: scale(1.1);
}

.media-tabs__btn:hover::after {
  transform: translateX(-50%) scaleX(0.5);
}

.media-tabs__btn--active {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  box-shadow:
    0 4px 15px rgba(0, 137, 188, 0.35),
    0 8px 30px rgba(0, 137, 188, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.media-tabs__btn--active::after {
  transform: translateX(-50%) scaleX(1);
  background: rgba(255, 255, 255, 0.9);
}

.media-tabs__btn--active svg {
  stroke: var(--color-white);
  opacity: 1;
}

.media-tabs__btn--active:hover {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  border: 1.5px solid transparent;
  transform: translateY(-2px);
  box-shadow:
    0 6px 20px rgba(0, 137, 188, 0.4),
    0 10px 40px rgba(0, 137, 188, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.media-tabs__btn--active:hover svg {
  stroke: var(--color-white);
}

.media-tabs__content {
  position: relative;
  display: grid;
}

.media-tabs__panel {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.media-tabs__panel--active {
  visibility: visible;
  opacity: 1;
}

.media-tabs__panel[hidden] {
  visibility: hidden;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card pop-in animation for tab switching */
@keyframes cardPopIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Initial hidden state for animated cards */
.media-tabs__panel .placeholder-card {
  transition: opacity 0.1s ease, transform 0.1s ease;
}

.media-tabs__panel .placeholder-card.card-animate-ready {
  opacity: 0;
  transform: scale(0.3);
}

.media-tabs__panel .placeholder-card.card-animate-in {
  animation: cardPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Mobile responsive */
@media (max-width: 480px) {
  .media-tabs {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .media-tabs__btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .media-tabs__btn:hover {
    transform: none;
  }

  .media-tabs__btn--active:hover {
    transform: none;
  }
}

/* ========================================
   TESTIMONIALS - Reordered Layout
   ======================================== */

.wix-testimonial--reordered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.wix-testimonial__avatar {
  display: none;
}

.wix-testimonial__avatar svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-white);
}

.wix-testimonial--reordered .wix-testimonial__quotes {
  position: relative;
  top: auto;
  right: auto;
  width: 60px;
  margin-bottom: var(--space-md);
  opacity: 0.6;
}

.wix-testimonial--reordered .wix-testimonial__footer {
  order: -1;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(0, 137, 188, 0.2);
  border-top: none;
  width: 100%;
}

.wix-testimonial--reordered .wix-testimonial__text {
  order: 1;
  flex: 1;
  margin-bottom: 0;
}

.wix-testimonial__footer {
  margin-top: auto;
  padding-top: var(--space-md);
  padding-bottom: var(--space-sm);
  border-top: 1px solid rgba(0, 137, 188, 0.2);
  width: 100%;
}

.wix-testimonial--reordered .wix-testimonial__name {
  margin-bottom: 2px;
  font-size: 1.25rem;
}

.wix-testimonial--reordered .wix-testimonial__role {
  color: #4a5568;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
  max-width: 90%;
  margin: 0 auto;
}

/* ========================================
   BLUR TRANSITIONS - Global Utilities
   ======================================== */

.section--blur-top {
  position: relative;
}

.section--blur-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 5;
  pointer-events: none;
}

.section--blur-bottom {
  position: relative;
}

.section--blur-bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 5;
  pointer-events: none;
}

/* Dark background variants */
.section--blur-top-dark::before {
  background: linear-gradient(to bottom, rgba(26,26,46,0.8), transparent);
}

.section--blur-bottom-dark::after {
  background: linear-gradient(to top, rgba(26,26,46,0.8), transparent);
}

/* ===== Desktop: raise animated CTA question-mark dot to align with sentence ellipsis (...) ===== */
/* Inline page styles set bottom: 0.12em (below baseline). On desktop we lift it to match "..." height. */
/* Mobile (≤768px) keeps the inline value untouched. */
@media (min-width: 769px) {
  .cta-qmark::after,
  .about-cta-qmark::after,
  .fb-cta-qmark::after,
  .td-cta-qmark::after,
  .se-cta-qmark::after,
  .lp-cta-qmark::after,
  .tw-cta-qmark::after,
  .blog-cta-qmark::after,
  .cs-cta-qmark::after {
    bottom: calc(0.3em - 2px) !important;
  }
}

/* ===== Desktop: raise only the "?" glyph by 2px (the animated dot stays put) ===== */
/* position:relative nudge shifts just the inner text span; doesn't affect the outer span's ::after dot. */
@media (min-width: 769px) {
  .cta-qmark-text,
  .about-cta-qmark-text,
  .fb-cta-qmark-text,
  .td-cta-qmark-text,
  .se-cta-qmark-text,
  .lp-cta-qmark-text,
  .tw-cta-qmark-text,
  .blog-cta-qmark-text,
  .cs-cta-qmark-text {
    position: relative;
    top: -2px;
  }
}
