/* ============================================
   STAYEAZI REBUILD - PREMIUM SAAS THEME
   Palette:
   - Navy: #0B1A2E (primary background, header/footer, CTA emphasis)
   - Navy-2: #162A45 (gradient depth)
   - Lime Soft Green: #A9D04F (accent ONLY: buttons, icons, highlights)
   - Off White: #F8F9FB
   - Light Grey: #E6E9EF
   - Dark Grey Text: #1A1A1A
   ============================================ */

:root {
  --navy: #0B1A2E;
  --navy-2: #162A45;
  --lime: #A9D04F;
  --off-white: #F8F9FB;
  --light-grey: #E6E9EF;
  --text-dark: #1A1A1A;
  --text-muted: #5A5F6B;
  --white: #FFFFFF;
  --primary: #3B82F6; /* Blue for timeline accent */

  --font-primary: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --section-padding: 110px;
  --section-padding-mobile: 80px;
  --container: 1250px;
  --gutter: 32px;

  --shadow-sm: 0 4px 12px rgba(11, 26, 46, 0.05);
  --shadow-md: 0 10px 30px rgba(11, 26, 46, 0.12);
  --shadow-lg: 0 18px 48px rgba(11, 26, 46, 0.18);

  --transition: 220ms ease;
  --transition-slow: 420ms ease;

  --text-max: 680px;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(0, 0, 0, 0.95);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--lime);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.back-to-top:active {
  transform: translateY(0);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
  }
  
  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}

/* About Page Styles */
.about-content-section {
  padding: var(--section-padding) 0;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content-text h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.about-content-text h3:first-child {
  margin-top: 0;
}

.about-content-text p {
  margin-bottom: 20px;
}

.about-content-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-content-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* About Page New Sections */
.about-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.about-section-header h2 {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 16px;
}

.about-section-header h3 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.about-section-header p {
  font-size: 1.125rem;
  color: var(--text-dark);
  max-width: 42rem;
  margin: 0 auto;
}

.about-who-we-are {
  padding: 100px 0;
  background: var(--off-white);
  color: var(--text-dark);
}

/* Booking Engine Enhancements */
.booking-two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.booking-two-column-tight {
  gap: 32px;
}

.booking-two-column-copy h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.booking-two-column-copy p {
  color: var(--text-muted);
  line-height: 1.6;
}

.booking-bullet-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.booking-bullet-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-dark);
  line-height: 1.5;
}

.booking-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.booking-two-column-visual {
  display: flex;
  justify-content: center;
}

.booking-visual-card {
  width: 100%;
  max-width: 520px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.booking-visual-card.small {
  max-width: 420px;
}

.booking-visual-card img {
  width: 100%;
  height: auto;
  display: block;
}

.booking-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.booking-card {
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.booking-card h4 {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.booking-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
}

.booking-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.booking-stat-card {
  background: #0d0d0d;
  color: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.booking-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--lime);
  margin-bottom: 8px;
}

.booking-stat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* Bento Grid Styles */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 16px;
  max-width: 80rem;
  margin: 64px auto 0;
}

.bento-item {
  position: relative;
  padding: 16px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  will-change: transform;
}

.bento-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transform: translateY(-2px);
}

.bento-item-span-2 {
  grid-column: span 1;
}

.bento-dot-pattern {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  background-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
}

.bento-item:hover .bento-dot-pattern {
  opacity: 1;
}

.bento-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1;
}

.bento-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bento-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.bento-icon-blue {
  color: #3b82f6;
}

.bento-icon-emerald {
  color: #10b981;
}

.bento-icon-purple {
  color: #a855f7;
}

.bento-icon-sky {
  color: #0ea5e9;
}

.bento-item:hover .bento-icon {
  background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
}

.bento-item-persistent {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transform: translateY(-2px);
}

.bento-item-persistent .bento-dot-pattern {
  opacity: 1;
}

.bento-item-persistent .bento-gradient-border {
  opacity: 1;
}

.bento-status {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

.bento-item:hover .bento-status {
  background: rgba(0, 0, 0, 0.1);
}

.bento-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bento-title {
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
}

.bento-meta {
  margin-left: 8px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: normal;
}

.bento-description {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  font-weight: 425;
  margin: 0;
}

.bento-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.bento-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bento-tag {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
  cursor: pointer;
}

.bento-tag:hover {
  background: rgba(0, 0, 0, 0.1);
}

.bento-cta {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-item:hover .bento-cta {
  opacity: 1;
}

.bento-gradient-border {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 12px;
  background: linear-gradient(to bottom right, transparent, rgba(0, 0, 0, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.bento-item:hover .bento-gradient-border {
  opacity: 1;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .bento-item-span-2 {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .bento-grid {
    padding: 12px;
    margin-top: 48px;
  }

  .bento-item {
    padding: 16px;
  }
}

.about-trust-section {
  padding: 100px 0;
  background: #fff;
  color: var(--text-dark);
}

.about-trust-intro {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.about-locations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.location-tag {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.location-tag:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.about-trust-footer {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-dark);
  max-width: 42rem;
  margin: 0 auto;
}

/* Pricing Breadcrumb Header */
/* Reusable Breadcrumb Header */
.pricing-breadcrumb-header,
.page-breadcrumb-header {
  min-height: 320px;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #000000 0%, #0d0d0d 20%, #1a1a1a 40%, #2d2d2d 60%, #1a1a1a 80%, #0d0d0d 100%);
  color: #fff;
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.pricing-breadcrumb-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--overlay-image, url('images/beautiful-luxury-outdoor-swimming.webp'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.20;
  z-index: 0;
}

.page-breadcrumb-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--overlay-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.20;
  z-index: 0;
}

.pricing-breadcrumb-header .container,
.page-breadcrumb-header .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-breadcrumb-title,
.page-breadcrumb-title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 42rem;
}

.pricing-breadcrumb-description,
.page-breadcrumb-description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 42rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pricing-breadcrumb-header,
  .page-breadcrumb-header {
    min-height: 280px;
    padding: 80px 0 60px;
  }

  .pricing-breadcrumb-title,
  .page-breadcrumb-title {
    margin-bottom: 16px;
  }

  .pricing-breadcrumb-description,
  .page-breadcrumb-description {
    padding: 0;
  }
}

.about-what-we-do {
  padding: 100px 0;
  background: linear-gradient(135deg, #000000 0%, #0d0d0d 20%, #1a1a1a 40%, #2d2d2d 60%, #1a1a1a 80%, #0d0d0d 100%);
  color: #fff;
}

.about-what-we-do .about-section-header h2,
.about-what-we-do .about-section-header h3,
.about-what-we-do .about-section-header p {
  color: #fff;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.what-we-do-card {
  padding: 40px;
  background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 50%, #c0c0c0 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.what-we-do-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.9) 0%, rgba(232, 232, 232, 0.9) 50%, rgba(192, 192, 192, 0.9) 100%);
  z-index: 0;
}

.what-we-do-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.what-we-do-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.what-we-do-icon svg {
  width: 100%;
  height: 100%;
}

.what-we-do-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.what-we-do-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.what-we-do-card ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}

.what-we-do-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

.about-mission-vision {
  padding: 100px 0;
  background: #fff;
  color: var(--text-dark);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 48px;
  margin-top: 64px;
}

.mission-vision-card {
  padding: 48px;
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mission-vision-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 16px;
}

.mission-vision-card h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.mission-vision-card p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.about-why-stayeazi {
  padding: 100px 0;
  background: var(--off-white);
  color: var(--text-dark);
}

.why-stayeazi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 48px;
  margin-top: 64px;
}

.why-stayeazi-card {
  padding: 48px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.why-stayeazi-card h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.why-stayeazi-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-stayeazi-card ul li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-dark);
  font-size: 1.125rem;
  line-height: 1.8;
}

.why-stayeazi-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #A9D04F;
  font-weight: 700;
  font-size: 1.25rem;
}

.about-trust-signals {
  padding: 100px 0;
  background: #fff;
  color: var(--text-dark);
}

.trust-signals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.trust-signal-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trust-signal-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #A9D04F;
  margin-bottom: 16px;
  line-height: 1;
}

.trust-signal-label {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.about-hotel-partners {
  padding: 100px 0;
  background: var(--off-white);
  color: var(--text-dark);
}

.logo-carousel-container {
  max-width: 80rem;
  margin: 64px auto 0;
  position: relative;
}

.logo-carousel {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
}

.logo-carousel-column {
  position: relative;
  height: 80px;
  width: 140px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-carousel-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10%);
  filter: blur(8px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-carousel-item.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.logo-carousel-item.exiting {
  opacity: 0;
  transform: translateY(-20%);
  filter: blur(6px);
}

.logo-carousel-item img {
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.logo-carousel-item.active img {
  opacity: 1;
}

@media (min-width: 768px) {
  .logo-carousel-column {
    height: 120px;
    width: 240px;
  }

  .logo-carousel-item img {
    height: 100%;
    max-height: 100%;
    max-width: 100%;
  }
}

.about-partners-integrations {
  padding: 100px 0;
  background: #fff;
  color: var(--text-dark);
}

.integrations-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.integration-item {
  padding: 16px 32px;
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.integration-item:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .integrations-list {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .integration-item {
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 16px 24px;
  }
}

/* Pricing Section Styles */
.pricing-section {
  padding: 40px 0 80px;
  background: linear-gradient(135deg, #000000 0%, #0d0d0d 20%, #1a1a1a 40%, #2d2d2d 60%, #1a1a1a 80%, #0d0d0d 100%);
  color: #fff;
  position: relative;
}

.pricing-section-header {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-section-header h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 8px;
}

.pricing-section-header h3 {
  display: none;
}

.pricing-section-header p {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Free Trial Text */
.pricing-trial-text {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-trial-text p {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

/* Frequency Toggle */
.pricing-frequency-toggle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.pricing-frequency-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 4px;
  gap: 0;
}

.frequency-btn {
  position: relative;
  padding: 6px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 2;
  text-transform: capitalize;
}

.frequency-btn.active {
  color: #fff;
}

.frequency-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: #fff;
  border-radius: 999px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  mix-blend-mode: difference;
}

.frequency-btn[data-frequency="yearly"] ~ .frequency-slider {
  transform: translateX(100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  position: relative;
  padding: 0;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pricing-card-featured {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--lime) 0%, rgba(169, 208, 79, 0.9) 100%);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(169, 208, 79, 0.3);
  z-index: 2;
}

.pricing-card-header {
  position: relative;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px 12px 0 0;
}

.pricing-card-featured .pricing-card-header {
  background: rgba(255, 255, 255, 0.1);
}

.pricing-card-header::after {
  content: '';
  position: absolute;
  bottom: -1.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0.5;
}

.pricing-card-header h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
  text-align: left;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lime);
}

.pricing-price .amount {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}


.pricing-price .period {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.pricing-info {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}

.pricing-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
  font-weight: 500;
}

/* Pricing Badges */
.pricing-badges {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.pricing-popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
}

.pricing-popular-badge svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.pricing-discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: var(--lime);
  color: #000;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Border Trail Animation */
.pricing-border-trail {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid transparent;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  mask-clip: padding-box, border-box;
  mask-composite: intersect;
  mask-image: linear-gradient(transparent, transparent), linear-gradient(#000, #000);
  -webkit-mask-clip: padding-box, border-box;
  -webkit-mask-composite: intersect;
  -webkit-mask-image: linear-gradient(transparent, transparent), linear-gradient(#000, #000);
}

.pricing-border-trail::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(169, 208, 79, 0.6);
  border-radius: 50%;
  filter: blur(30px);
  box-shadow: 0px 0px 60px 30px rgba(255, 255, 255, 0.5), 
              0 0 100px 60px rgba(0, 0, 0, 0.5), 
              0 0 140px 90px rgba(0, 0, 0, 0.5);
  animation: borderTrail 5s linear infinite;
}

@keyframes borderTrail {
  0% {
    top: -50px;
    left: -50px;
  }
  25% {
    top: -50px;
    left: calc(100% - 50px);
  }
  50% {
    top: calc(100% - 50px);
    left: calc(100% - 50px);
  }
  75% {
    top: calc(100% - 50px);
    left: -50px;
  }
  100% {
    top: -50px;
    left: -50px;
  }
}

.pricing-card-featured {
  position: relative;
  overflow: hidden;
}


.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex-grow: 1;
}

.pricing-features li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 500;
  transition: color 0.3s ease;
}

.pricing-features li:hover {
  color: var(--text-dark);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lime) 0%, rgba(169, 208, 79, 0.8) 100%);
  color: var(--text-dark);
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(169, 208, 79, 0.3);
}

/* New Features List */
.pricing-features-list {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
  background: transparent;
}

.pricing-card-featured .pricing-features-list {
  background: rgba(255, 255, 255, 0.025);
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.5;
}

.feature-check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #fff;
  stroke-width: 2.5;
}

.pricing-card-footer {
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.pricing-card-featured .pricing-card-footer {
  background: rgba(255, 255, 255, 0.1);
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.pricing-card-featured .btn-primary {
  background: var(--lime);
  color: #000;
  border: none;
}

.pricing-card-featured .btn-primary:hover {
  background: rgba(169, 208, 79, 0.9);
  color: #000;
}

/* All Plans Include Section */
.all-plans-section {
  padding: 80px 0;
  background: #fff;
  color: var(--text-dark);
}

.all-plans-section .about-section-header {
  text-align: center;
  margin-bottom: 48px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.all-plans-section .about-section-header h2 {
  color: #1a1a1a !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.all-plans-section .about-section-header h3 {
  color: #1a1a1a !important;
  font-size: clamp(2rem, 5vw, 3rem) !important;
  font-weight: 700 !important;
  margin-bottom: 16px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.all-plans-section .about-section-header p {
  color: #1a1a1a !important;
  font-size: 1.125rem !important;
  max-width: 42rem !important;
  margin: 0 auto !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.all-plans-header {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 0;
}

.all-plans-header h2 {
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: block;
  visibility: visible;
  opacity: 1;
}

.all-plans-header h3 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.all-plans-header p {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Circular Features Design */
.circular-features-container {
  width: 100%;
  max-width: 56rem;
  padding: 2rem;
  margin: 0 auto;
}

.circular-features-grid {
  display: grid;
  gap: 5rem;
}

.circular-features-image-container {
  position: relative;
  width: 100%;
  height: 24rem;
  perspective: 1000px;
}

.circular-features-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.8s cubic-bezier(0.4, 2, 0.3, 1);
}

.circular-features-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.circular-features-active-content {
  min-height: 200px;
}

.circular-features-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.circular-features-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 2rem;
}

.circular-features-arrows {
  display: flex;
  gap: 1.5rem;
  padding-top: 3rem;
}

.circular-features-arrow {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
  border: none;
  background-color: #141414;
  color: #f1f1f7;
}

.circular-features-arrow:hover {
  background-color: var(--lime);
  color: #000;
}

.circular-features-arrow svg {
  width: 28px;
  height: 28px;
}

@media (min-width: 768px) {
  .circular-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .circular-features-arrows {
    padding-top: 0;
  }
}

.included-feature-card {
  padding: 28px 24px;
  background: linear-gradient(135deg, var(--off-white) 0%, #ffffff 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.included-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), rgba(169, 208, 79, 0.5));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.included-feature-card:hover::before {
  transform: scaleX(1);
}

.included-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(169, 208, 79, 0.3);
}

.included-feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  transition: transform 0.3s ease;
}

.included-feature-card:hover .included-feature-icon {
  transform: scale(1.1);
}

.included-feature-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
}

/* Addons Section */
.addons-section {
  padding: 80px 0;
  background: var(--off-white);
  color: var(--text-dark);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.addon-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.addon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lime), rgba(169, 208, 79, 0.5));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 1;
}

.addon-card:hover::before {
  transform: scaleX(1);
}

.addon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(169, 208, 79, 0.3);
}

.addon-image-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--off-white) 0%, #ffffff 100%);
}

.addon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.addon-card:hover .addon-image {
  transform: scale(1.1);
}

.addon-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.addon-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.addon-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.addon-card .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-weight: 600;
}

.addon-note {
  text-align: center;
  margin-top: 48px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Pricing CTA Section */
.about-final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #000000 0%, #0d0d0d 20%, #1a1a1a 40%, #2d2d2d 60%, #1a1a1a 80%, #0d0d0d 100%);
  color: #fff;
}

.about-final-cta .cta {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.about-final-cta .cta h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.about-final-cta .cta p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.about-final-cta .cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .pricing-section,
  .all-plans-section,
  .addons-section,
  .about-final-cta {
    padding: 60px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .included-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
  }

  .addons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .pricing-card-featured {
    transform: scale(1);
  }

  .pricing-card-featured:hover {
    transform: translateY(-6px) scale(1.02);
  }

  .pricing-badge {
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    font-size: 0.65rem;
  }

  .pricing-card-header h3 {
    font-size: 1.25rem;
  }

  .pricing-price .amount {
    font-size: 2rem;
  }

  .pricing-price .currency {
    font-size: 1.125rem;
    color: var(--lime);
  }

  .pricing-features li {
    padding: 10px 0;
    padding-left: 28px;
    font-size: 0.875rem;
  }

  .pricing-features li::before {
    width: 18px;
    height: 18px;
    top: 10px;
    font-size: 0.7rem;
  }

  .pricing-section {
    padding: 20px 0 60px;
  }

  .pricing-section-header {
    margin-bottom: 16px;
  }

  .pricing-section-header h2 {
    font-size: 1.25rem;
  }

  .pricing-trial-text {
    margin-bottom: 16px;
  }

  .pricing-trial-text p {
    font-size: 0.875rem;
    padding: 0 16px;
  }

  .pricing-frequency-toggle-wrapper {
    margin-bottom: 16px;
  }

  .frequency-btn {
    padding: 6px 16px;
    font-size: 0.8rem;
  }

  .pricing-features-list {
    padding: 20px;
    gap: 12px;
  }

  .pricing-feature-item {
    font-size: 0.8rem;
  }

  .pricing-card-header {
    padding: 20px 20px 16px;
  }

  .pricing-badges {
    top: 8px;
    right: 8px;
    gap: 6px;
  }

  .pricing-popular-badge,
  .pricing-discount-badge {
    padding: 3px 8px;
    font-size: 0.7rem;
  }

  .pricing-card-footer {
    padding: 12px 20px;
  }

  .all-plans-section {
    padding: 60px 0;
  }

  .all-plans-header {
    margin-bottom: 40px;
  }

  .circular-features-container {
    padding: 1rem;
  }

  .circular-features-grid {
    gap: 3rem;
  }

  .circular-features-image-container {
    height: 20rem;
  }

  .circular-features-name {
    font-size: 1.5rem;
  }

  .circular-features-description {
    font-size: 1rem;
    margin-top: 1.5rem;
  }

  .circular-features-arrows {
    padding-top: 2rem;
  }

  .addons-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .addon-image-wrapper {
    height: 200px;
  }

  .addon-content {
    padding: 24px;
  }

  .addon-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }

  .addon-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .about-final-cta .cta-actions {
    flex-direction: column;
  }

  .about-final-cta .cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .included-features-grid {
    grid-template-columns: 1fr;
  }
}

.about-approach {
  padding: 100px 0;
  background: var(--off-white);
  color: var(--text-dark);
}

.about-approach-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.about-approach-content h2 {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 16px;
}

.about-approach-content h3 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.about-approach-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.about-final-cta {
  padding: 100px 0;
  background: #fff;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .about-who-we-are,
  .about-trust-section,
  .about-mission-vision,
  .about-why-stayeazi,
  .about-trust-signals,
  .about-hotel-partners,
  .about-partners-integrations,
  .about-approach,
  .about-final-cta {
    padding: 60px 0;
  }

  .about-what-we-do {
    padding: 60px 0;
  }

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

  .mission-vision-grid,
  .why-stayeazi-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .what-we-do-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .what-we-do-card {
    padding: 24px;
  }

  .what-we-do-card h4 {
    font-size: 1.25rem;
  }

  .what-we-do-card ul li {
    font-size: 0.9rem;
  }
  
  /* Only apply white text to dark background sections */
  .about-what-we-do .about-section-header h2,
  .about-what-we-do .about-section-header h3,
  .about-what-we-do .about-section-header p {
    color: #fff;
  }

  /* Keep dark text for light background sections */
  .about-who-we-are .about-section-header h2,
  .about-who-we-are .about-section-header h3,
  .about-who-we-are .about-section-header p,
  .about-trust-section .about-section-header h2,
  .about-trust-section .about-section-header h3,
  .about-trust-section .about-section-header p,
  .about-mission-vision .about-section-header h2,
  .about-mission-vision .about-section-header h3,
  .about-mission-vision .about-section-header p,
  .about-why-stayeazi .about-section-header h2,
  .about-why-stayeazi .about-section-header h3,
  .about-why-stayeazi .about-section-header p,
  .about-trust-signals .about-section-header h2,
  .about-trust-signals .about-section-header h3,
  .about-trust-signals .about-section-header p,
  .about-hotel-partners .about-section-header h2,
  .about-hotel-partners .about-section-header h3,
  .about-hotel-partners .about-section-header p,
  .about-partners-integrations .about-section-header h2,
  .about-partners-integrations .about-section-header h3,
  .about-partners-integrations .about-section-header p,
  .about-approach .about-section-header h2,
  .about-approach .about-section-header h3,
  .about-approach .about-section-header p,
  .about-final-cta .about-section-header h2,
  .about-final-cta .about-section-header h3,
  .about-final-cta .about-section-header p {
    color: var(--text-dark);
  }

  .about-section-header h3 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .about-section-header p {
    font-size: 1rem;
    padding: 0 16px;
  }

  .trust-signals-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-signal-card {
    padding: 24px;
  }

  .trust-signal-number {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .trust-signal-label {
    font-size: 0.9rem;
  }

  .mission-vision-card,
  .why-stayeazi-card {
    padding: 32px 24px;
  }

  .mission-vision-card h3,
  .why-stayeazi-card h4 {
    font-size: 1.5rem;
  }

  .mission-vision-card p,
  .why-stayeazi-card ul li {
    font-size: 0.95rem;
  }

  .logo-cloud-container {
    margin-top: 48px;
  }

  .logo-card {
    padding: 32px 16px;
  }

  .logo-card img {
    height: 70px;
  }

  .bento-grid {
    padding: 8px;
    gap: 8px;
  }

  .bento-item {
    padding: 20px;
  }

  .bento-grid-title {
    font-size: 1.1rem;
  }

  .bento-grid-description {
    font-size: 0.85rem;
  }
}

/* Metrics Section */
.metrics-section {
  background: var(--off-white);
  padding: var(--section-padding) 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.metric-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.metric-value {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
}

.metric-label {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}

/* Team Section */
.team-section {
  padding: var(--section-padding) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.team-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.avatar-placeholder {
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  color: var(--white);
  text-transform: uppercase;
}

.team-card h3 {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.team-role {
  font-size: 0.95rem;
  color: var(--lime);
  font-weight: var(--fw-semibold);
  margin-bottom: 16px;
}

.team-bio {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.team-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--light-grey);
}

.team-cta p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--text-dark);
}

/* Video Section */
.video-section {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.location-section {
  padding: var(--section-padding) 0;
}

.career-section {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.cta-section {
  padding: var(--section-padding) 0;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.video-placeholder {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: linear-gradient(135deg, #000000 0%, #0d0d0d 20%, #1a1a1a 40%, #2d2d2d 60%, #1a1a1a 80%, #0d0d0d 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.video-placeholder:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hotel-receptionist-work.webp') center/cover;
  opacity: 0.3;
}

.play-button {
  position: absolute;
  z-index: 2;
  transition: transform 0.3s ease;
}

.video-placeholder:hover .play-button {
  transform: scale(1.1);
}

.video-placeholder p {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: var(--fw-medium);
  z-index: 2;
  text-align: center;
  width: 90%;
}

/* Career Section */
.career-cta {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.career-cta h2 {
  margin-bottom: 24px;
  color: var(--text-dark);
}

@media (max-width: 640px) {
  .video-placeholder p {
    font-size: 0.95rem;
    bottom: 24px;
  }
  
  .career-cta {
    padding: 32px 24px;
  }
}

@media (max-width: 980px) {
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-content-image {
    order: -1;
  }
  
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

section { padding: var(--section-padding) 0; }
@media (max-width: 768px) { section { padding: var(--section-padding-mobile) 0; } }

h1, h2, h3, h4 {
  color: var(--text-dark);
  font-weight: var(--fw-bold);
  line-height: 1.15;
}
h1 { font-size: clamp(2.8rem, 4vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.1rem, 3.4vw, 3rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p  { font-size: 1.05rem; color: var(--text-muted); line-height: 1.65; }

.section-header {
  text-align: center;
  max-width: var(--text-max);
  margin: 0 auto var(--gutter);
}
.section-header p { margin-top: 12px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: var(--fw-semibold);
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: none;
}
.btn-primary {
  background: var(--lime);
  color: #0B1A2E;
  border-color: transparent;
}
.btn-primary:hover {
  box-shadow: 0 10px 26px rgba(169, 208, 79, 0.35);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--light-grey);
}
.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(11, 26, 46, 0.08);
}

/* Header */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 14px 0;
  transition: background 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
  overflow: visible;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.03) 49%, rgba(255, 255, 255, 0.03) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.02) 49%, rgba(255, 255, 255, 0.02) 51%, transparent 52%),
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.015) 49%, rgba(255, 255, 255, 0.015) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.01) 49%, rgba(255, 255, 255, 0.01) 51%, transparent 52%);
  background-size: 
    120px 120px,
    80px 80px,
    60px 60px,
    40px 40px;
  background-position: 
    10% 20%,
    70% 40%,
    30% 60%,
    85% 80%;
  opacity: 0.4;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.navbar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.015) 0%, transparent 50%),
    radial-gradient(circle at 45% 85%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
  pointer-events: none;
  mix-blend-mode: overlay;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled::before {
  opacity: 0.5;
}

.navbar.scrolled::after {
  opacity: 0.6;
}
.navbar.scrolled .mega-menu-toggle,
.navbar.scrolled .mega-menu-link {
  color: rgba(255, 255, 255, 0.9);
}
.navbar.scrolled .mega-menu-toggle:hover,
.navbar.scrolled .mega-menu-link:hover {
  color: var(--lime);
}
.navbar.scrolled .nav-cta .btn-ghost {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
}
.navbar.scrolled .nav-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.navbar.scrolled .mobile-toggle {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: var(--fw-bold);
  letter-spacing: -0.015em;
}
.logo-img {
  transition: opacity 300ms ease;
}
/* Mega Menu */
.mega-menu {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.mega-menu-item {
  position: relative;
  z-index: 1001;
}

.mega-menu-toggle,
.mega-menu-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 16px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: var(--fw-medium);
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
}

.mega-menu-link {
  padding: 6px 16px;
}

.mega-menu-toggle:hover,
.mega-menu-link:hover {
  color: rgba(255, 255, 255, 1);
}

.mega-menu-hover-bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mega-menu-toggle:hover .mega-menu-hover-bg,
.mega-menu-item.active .mega-menu-hover-bg {
  opacity: 1;
}

.mega-menu-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.mega-menu-item.active .mega-menu-chevron {
  transform: rotate(180deg);
}

.mega-menu-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  padding-top: 8px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.mega-menu-item.active .mega-menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-content {
  min-width: 600px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0A0A0A;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  gap: 36px;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}

.mega-menu-section {
  min-width: 0;
}

.mega-menu-section-title {
  margin: 0 0 16px 0;
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.5);
}

.mega-menu-items-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mega-menu-item-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.mega-menu-item-link:hover .mega-menu-item-label {
  color: rgba(255, 255, 255, 1);
}

.mega-menu-item-link:hover .mega-menu-item-desc {
  color: rgba(255, 255, 255, 1);
}

.mega-menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
}

.mega-menu-item-link:hover .mega-menu-icon {
  background: rgba(255, 255, 255, 1);
  color: #0A0A0A;
  border-color: rgba(255, 255, 255, 1);
}

.mega-menu-item-content {
  min-width: 0;
  line-height: 1.25;
}

.mega-menu-item-label {
  margin: 0 0 4px 0;
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 1);
}

.mega-menu-item-desc {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.navbar.scrolled .mega-menu-toggle,
.navbar.scrolled .mega-menu-link {
  color: rgba(255, 255, 255, 0.9);
}

.navbar.scrolled .mega-menu-toggle:hover,
.navbar.scrolled .mega-menu-link:hover {
  color: var(--lime);
}

.navbar.scrolled .mega-menu-hover-bg {
  background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .mega-menu-content {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled .mega-menu-section-title {
  color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .mega-menu-item-label {
  color: rgba(255, 255, 255, 1);
}

.navbar.scrolled .mega-menu-item-desc {
  color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .mega-menu-icon {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 1);
}

.navbar.scrolled .mega-menu-item-link:hover .mega-menu-icon {
  background: rgba(255, 255, 255, 1);
  color: rgba(0, 0, 0, 1);
  border-color: rgba(255, 255, 255, 1);
}

@media (max-width: 980px) {
  .mega-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding: 16px 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 999;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  }
  
  .mega-menu.active {
    transform: translateX(0);
  }
  
  .mega-menu-item {
    width: 100%;
  }
  
  .mega-menu-toggle,
  .mega-menu-link {
    width: 100%;
    justify-content: space-between;
    padding: 12px 16px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.95rem;
    font-weight: var(--fw-medium);
    border-radius: 8px;
    margin: 2px 8px;
    transition: all 0.15s ease;
  }
  
  .mega-menu-toggle:hover,
  .mega-menu-link:hover {
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.9);
  }
  
  .mega-menu-toggle:active,
  .mega-menu-link:active {
    background: rgba(0, 0, 0, 0.1);
  }
  
  .mega-menu-hover-bg {
    display: none;
  }
  
  .mega-menu-chevron {
    transition: transform 0.15s ease;
  }
  
  .mega-menu-item.active .mega-menu-chevron {
    transform: rotate(180deg);
  }
  
  .mega-menu-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  
  .mega-menu-item.active .mega-menu-dropdown {
    max-height: 1000px;
    padding-top: 0;
  }
  
  .mega-menu-content {
    min-width: auto;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  
  .mega-menu-section {
    width: 100%;
    margin: 0;
    padding: 0 8px;
  }
  
  .mega-menu-section-title {
    display: none;
  }
  
  .mega-menu-items-list {
    margin: 0;
    padding: 0 0 0 16px;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
    gap: 0;
  }
  
  .mega-menu-item-link {
    padding: 8px 12px;
    margin: 2px 0;
    border-radius: 8px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.875rem;
    font-weight: var(--fw-medium);
  }
  
  .mega-menu-item-link:hover {
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.9);
  }
  
  .mega-menu-item-link:active {
    background: rgba(0, 0, 0, 0.1);
  }
  
  .mega-menu-icon {
    width: 20px;
    height: 20px;
    border: none;
    background: transparent;
    color: rgba(0, 0, 0, 0.5);
  }
  
  .mega-menu-item-link:hover .mega-menu-icon {
    background: transparent;
    color: rgba(0, 0, 0, 0.7);
    border: none;
  }
  
  .mega-menu-item-label {
    color: rgba(0, 0, 0, 0.9);
    font-size: 0.875rem;
  }
  
  .mega-menu-item-desc {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.75rem;
  }
  
  .mobile-toggle {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s ease;
  }
  
  .mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .navbar.scrolled .mobile-toggle {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
  }
}
.nav-cta {
  justify-self: end;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.nav-cta .btn {
  padding: 10px 14px;
  font-size: 0.95rem;
  border-radius: 10px;
}
.nav-cta .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.nav-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
.nav-mobile-brand {
  display: none;
}
.nav-cta .btn-primary {
  padding: 10px 16px;
}
.mobile-toggle { display: none; }
/* Dropdown */
.nav-links .dropdown {
  position: relative;
}
.nav-links .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links .dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 200px;
  background: #0F223D;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 36px rgba(0,0,0,0.24);
  border-radius: 12px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 1200;
}
.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links .dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: rgba(255,255,255,0.9);
  font-weight: var(--fw-medium);
}
.nav-links .dropdown-menu a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--lime);
}
@media (max-width: 980px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 78vw;
    max-width: 340px;
    height: 100vh;
    background: rgba(11, 26, 46, 0.985);
    padding: 24px 20px;
    gap: 4px;
    border-right: 1px solid rgba(255,255,255,0.08);
    box-shadow: 14px 0 30px rgba(0,0,0,0.35);
    z-index: 1200;
    transform: translateX(-110%);
    transition: transform 360ms cubic-bezier(0.4, 0.12, 0.1, 1);
    overflow-y: auto;
  }
  .nav-links a {
    padding: 7px 4px;
    line-height: 1.3;
  }
  .nav-links.active { transform: translateX(0); }
  .nav-cta { display: none; }
  .mobile-toggle {
    display: inline-flex;
    width: 42px; height: 42px;
    align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    color: #fff;
    background: rgba(255,255,255,0.06);
    justify-self: end;
  }
  /* Dropdowns open by default in mobile sidebar */
  .nav-links .dropdown {
    width: 100%;
  }
  .nav-links .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 0 2px 0 0;
  }
  .nav-links .dropdown-toggle .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    margin-left: auto;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 220ms ease;
  }
  .nav-links .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 0;
    margin-top: -6px;
    display: none;
  }
  .nav-links .dropdown-menu.open {
    display: block;
  }
  .nav-links .dropdown-menu a {
    padding: 6px 8px;
    font-size: 0.85rem;
    font-weight: var(--fw-regular);
    color: rgba(255, 255, 255, 0.78);
  }
  .nav-links a:hover,
  .nav-links a:focus {
    color: var(--lime);
  }
  .nav-links .dropdown-menu a:hover,
  .nav-links .dropdown-menu a:focus {
    color: var(--lime);
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-mobile-brand {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
  }
  .nav-mobile-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    padding: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  }
}

/* Hero */
.hero {
  position: relative;
  padding-top: 120px;
  background: linear-gradient(135deg, #000000 0%, #0d0d0d 20%, #1a1a1a 40%, #2d2d2d 60%, #1a1a1a 80%, #0d0d0d 100%);
  color: #fff;
  overflow: hidden;
  transition: background 600ms ease;
}

.hero-dotted-surface {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.hero-dotted-surface canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

@media (max-width: 768px) {
  .hero-dotted-surface {
    opacity: 0.3;
  }
}

/* Hero Geometric Design */
.hero-geometric {
  position: relative;
  padding-top: 120px;
  background: #030303;
  color: #fff;
  overflow: hidden;
}

.hero-geometric-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-geometric::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 780px;
  height: 780px;
  background-image: url("images/hero-bg-pattern.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.26;
  transform: rotate(-90deg);
  transform-origin: center;
  pointer-events: none;
  z-index: 1;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(99, 102, 241, 0.05), transparent, rgba(244, 63, 94, 0.05));
  filter: blur(60px);
  pointer-events: none;
}

.hero-shapes-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.elegant-shape {
  position: absolute;
  opacity: 0;
  transform: translateY(-150px);
  pointer-events: none;
  will-change: transform, opacity;
}

.elegant-shape .shape-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  backdrop-filter: blur(2px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.1);
  will-change: transform;
}

.elegant-shape .shape-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(to right, currentColor, transparent);
  z-index: 1;
  opacity: 1;
}

.elegant-shape .shape-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 70%);
  z-index: 2;
}

/* Shape positions and colors - exact Tailwind colors with opacity */
.shape-1 {
  left: -10%;
  top: 15%;
  color: rgba(99, 102, 241, 0.15); /* indigo-500/[0.15] */
}

.shape-1 .shape-inner::before {
  background: linear-gradient(to right, rgba(99, 102, 241, 0.15), transparent);
}
@media (min-width: 768px) {
  .shape-1 {
    left: -5%;
    top: 20%;
  }
}

.shape-2 {
  right: -5%;
  top: 70%;
  color: rgba(244, 63, 94, 0.15); /* rose-500/[0.15] */
}

.shape-2 .shape-inner::before {
  background: linear-gradient(to right, rgba(244, 63, 94, 0.15), transparent);
}
@media (min-width: 768px) {
  .shape-2 {
    right: 0%;
    top: 75%;
  }
}

.shape-3 {
  left: 5%;
  bottom: 5%;
  color: rgba(139, 92, 246, 0.15); /* violet-500/[0.15] */
}

.shape-3 .shape-inner::before {
  background: linear-gradient(to right, rgba(139, 92, 246, 0.15), transparent);
}
@media (min-width: 768px) {
  .shape-3 {
    left: 10%;
    bottom: 10%;
  }
}

.shape-4 {
  right: 15%;
  top: 10%;
  color: rgba(245, 158, 11, 0.15); /* amber-500/[0.15] */
}

.shape-4 .shape-inner::before {
  background: linear-gradient(to right, rgba(245, 158, 11, 0.15), transparent);
}
@media (min-width: 768px) {
  .shape-4 {
    right: 20%;
    top: 15%;
  }
}

.shape-5 {
  left: 20%;
  top: 5%;
  color: rgba(6, 182, 212, 0.15); /* cyan-500/[0.15] */
}

.shape-5 .shape-inner::before {
  background: linear-gradient(to right, rgba(6, 182, 212, 0.15), transparent);
}
@media (min-width: 768px) {
  .shape-5 {
    left: 25%;
    top: 10%;
  }
}

.hero-geometric-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  padding: 40px 24px;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-geometric::before {
    background-position: center top;
    background-size: cover;
  }
}

.hero-badge-geometric {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-badge-circle {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  color: rgba(244, 63, 94, 0.8); /* rose-500/80 */
  fill: currentColor;
}

.hero-badge-geometric span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  font-weight: 400;
}

.hero-title-geometric {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(30px);
}

.hero-title-line-1 {
  display: block;
  background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
  line-height: 1.1;
}

.hero-title-line-2 {
  display: block;
  background: linear-gradient(to right, rgba(165, 180, 252, 0.9), rgba(255, 255, 255, 0.9), rgba(253, 164, 175, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: calc(1em / 3);
  line-height: 1.2;
  margin-top: 4px;
}

@media (min-width: 640px) {
  .hero-title-line-2 {
    font-size: calc(1em / 3);
  }
}

@media (min-width: 768px) {
  .hero-title-line-2 {
    font-size: calc(1em / 3);
  }
}

.hero-description-geometric {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 100%;
  margin: 12px auto 0;
  padding: 0;
  opacity: 0;
  transform: translateY(30px);
}

.hero-bottom-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #030303, transparent, rgba(3, 3, 3, 0.8));
  pointer-events: none;
  z-index: 1;
}

.hero-geometric-content {
  position: relative;
  z-index: 10;
}

@media (min-width: 640px) {
  .hero-title-geometric {
    font-size: clamp(2.25rem, 6.5vw, 4rem);
  }
  
  .hero-description-geometric {
    font-size: clamp(1rem, 2vw, 1.15rem);
  }
}

@media (min-width: 768px) {
  .hero-title-geometric {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
  }
  
  .hero-geometric-content {
    max-width: 48rem;
    padding: 40px 32px;
  }
}

@media (min-width: 768px) {
  .shape-1 {
    left: -5%;
    top: 20%;
  }
  
  .shape-2 {
    right: 0%;
    top: 75%;
  }
  
  .shape-3 {
    left: 10%;
    bottom: 10%;
  }
  
  .shape-4 {
    right: 20%;
    top: 15%;
  }
  
  .shape-5 {
    left: 25%;
    top: 10%;
  }
  
  .hero-geometric-content {
    padding: 40px 24px;
  }
  
  .hero-badge-geometric {
    margin-bottom: 32px;
  }
  
  .hero-title-geometric {
    margin-bottom: 12px;
  }
}

@media (max-width: 767px) {
  .hero-geometric-content {
    padding: 40px 16px;
  }
  
  .hero-title-geometric {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 16px;
  }
  
  .hero-title-line-2 {
    font-size: calc(1em / 1.25);
  }
  
  .hero-description-geometric {
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .hero-geometric::before {
    width: 140vw;
    height: 520px;
    bottom: -60px;
    left: 50%;
    right: auto;
    background-position: center bottom;
    background-size: cover;
    transform: translateX(-50%);
    transform-origin: center;
    opacity: 0.22;
  }
}
.hero.slide-purple {
  background: linear-gradient(135deg, #000000 0%, #0d0d0d 20%, #1a1a1a 40%, #2d2d2d 60%, #1a1a1a 80%, #0d0d0d 100%);
}
.hero-slider {
  position: relative;
  min-height: 550px;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 600ms ease, transform 600ms ease;
  pointer-events: none;
}
.hero-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.hero-grid-right {
  direction: rtl;
}
.hero-grid-right > * {
  direction: ltr;
}
.hero-grid-right .hero-copy {
  text-align: left;
}
.hero-grid-right .hero-actions {
  justify-content: flex-start;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 780px;
  height: 780px;
  background-image: url("images/hero-bg-pattern.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.26;
  transform: rotate(-90deg);
  transform-origin: center;
  pointer-events: none;
  z-index: 0;
}
.hero > .container {
  position: relative;
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #E6E9EF;
  border-radius: 999px;
  font-size: 0.9rem;
  transition: opacity 600ms ease 300ms, transform 600ms ease 300ms;
}
.hero h1 { 
  color: #fff;
  transition: opacity 600ms ease 100ms, transform 600ms ease 100ms;
}
.hero-slide:not(.active) h1 {
  opacity: 0;
  transform: translateY(20px);
}
.hero-slide.active h1 {
  opacity: 1;
  transform: translateY(0);
}
.hero p { 
  color: rgba(255, 255, 255, 0.82); 
  max-width: var(--text-max);
  transition: opacity 600ms ease 200ms, transform 600ms ease 200ms;
}
.hero-slide:not(.active) p {
  opacity: 0;
  transform: translateY(20px);
}
.hero-slide.active p {
  opacity: 1;
  transform: translateY(0);
}
.hero-slide:not(.active) .hero-badge {
  opacity: 0;
  transform: translateY(20px);
}
.hero-slide.active .hero-badge {
  opacity: 1;
  transform: translateY(0);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
  transition: opacity 600ms ease 400ms, transform 600ms ease 400ms;
}
.hero-slide:not(.active) .hero-actions {
  opacity: 0;
  transform: translateY(20px);
}
.hero-slide.active .hero-actions {
  opacity: 1;
  transform: translateY(0);
}
.hero-mock {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: opacity 600ms ease 200ms, transform 600ms ease 200ms;
  transform-style: preserve-3d;
}
.hero-slide:not(.active) .hero-mock {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}
.hero-slide.active .hero-mock {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hero-slide:nth-child(2) .hero-mock {
  max-width: 70%;
}
.hero-slide:nth-child(2) .hero-mock img {
  width: 100%;
  height: auto;
}
.hero-mock-mobile {
  display: none;
}
.hero-mock img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slider-dots {
  position: absolute;
  bottom: 30px;
  left: 24px;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--lime);
  transform: scale(1.15);
}
.hero-nav-arrows {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 12px;
  z-index: 2;
}
.hero-nav-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 220ms ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-nav-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero-nav-arrow:active {
  transform: scale(0.9);
}

/* Features */
.features { background: var(--off-white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(169, 208, 79, 0.35);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1.5px solid rgba(169, 208, 79, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.feature-card h3 { margin-bottom: 8px; font-weight: var(--fw-semibold); }
.feature-card p  { margin-bottom: 0; font-size: 0.98rem; }

/* Scroll Animation Section */
.scroll-animation-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 60px 0 120px 0;
  overflow: hidden;
  position: relative;
}

.scroll-animation-container {
  height: 60rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
}

.scroll-animation-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  perspective: 1000px;
}

.scroll-animation-header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  z-index: 10;
  position: relative;
}

.scroll-animation-title {
  font-size: 2.5rem;
  font-weight: var(--fw-semibold);
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.scroll-animation-title-large {
  display: block;
  font-size: 4rem;
  font-weight: var(--fw-bold);
  margin-top: 0.5rem;
  line-height: 1;
}

.scroll-animation-card {
  max-width: 1000px;
  margin: -3rem auto 0;
  height: 25rem;
  width: 90%;
  border: 4px solid #6C6C6C;
  padding: 0.5rem;
  background: #222222;
  border-radius: 30px;
  box-shadow: 0 0 #0000004d, 0 9px 20px #0000004a, 0 37px 37px #00000042, 0 84px 50px #00000026, 0 149px 60px #0000000a, 0 233px 65px #00000003;
  transform-style: preserve-3d;
}

.scroll-animation-card-inner {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--light-grey);
  padding: 1rem;
}

.scroll-animation-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
}

.scroll-animation-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  border-radius: 0.5rem;
}

.scroll-animation-text {
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 0 2rem;
  text-align: center;
}

.scroll-animation-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--white);
  margin: 0;
}

.scroll-animation-cta {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-animation-cta .btn {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.scroll-animation-cta .btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.scroll-animation-cta .btn-outline-white:hover {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--navy);
}

.scroll-animation-cta .btn-lime {
  background: #a9d04f;
  color: var(--text-dark);
  border: 2px solid #a9d04f;
}

.scroll-animation-cta .btn-lime:hover {
  background: #95b844;
  border-color: #95b844;
}

.scroll-animation-text-mobile {
  display: none; /* Hide mobile text on desktop */
}

@media (min-width: 768px) {
  .scroll-animation-text {
    padding: 0 5rem;
  }
  
  .scroll-animation-text p {
    font-size: 1.2rem;
  }
}

/* Mobile styles for scroll animation section */
@media screen and (max-width: 767px) {
  .scroll-animation-section {
    padding: 120px 0 60px 0 !important; /* Increased top padding for mobile */
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%) !important; /* Ensure background applies */
  }
  
  .scroll-animation-header {
    padding-top: 40px !important; /* Extra padding at top of header */
  }
  
  .scroll-animation-container {
    height: 45rem !important; /* Reduced height */
    padding: 0.5rem !important;
    min-height: 45rem !important;
  }
  
  .scroll-animation-header {
    margin-bottom: 20px !important; /* Reduced margin */
  }
  
  .scroll-animation-header {
    margin-bottom: 30px !important;
  }
  
  .scroll-animation-title {
    font-size: 2rem !important;
  }
  
  .scroll-animation-title-large {
    font-size: 3rem !important;
  }
  
  #scrollAnimationCard.scroll-animation-card {
    height: fit-content !important; /* Fit content exactly */
    width: 95% !important;
    max-width: 95% !important;
    display: block !important;
    margin: -3rem auto 0 !important;
    padding: 0.5rem !important; /* Border padding only */
    box-sizing: border-box !important;
  }
  
  .scroll-animation-card-inner {
    height: fit-content !important; /* Fit content exactly */
    width: 100% !important;
    padding: 0 !important; /* Force remove all padding */
    display: block !important;
    line-height: 0 !important; /* Remove extra space */
    margin: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    min-height: 0 !important;
  }
  
  .scroll-animation-image-wrapper {
    height: fit-content !important; /* Fit content exactly */
    width: 100% !important;
    display: block !important;
    line-height: 0 !important; /* Remove extra space */
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    min-height: 0 !important;
  }
  
  .scroll-animation-image {
    object-fit: contain !important; /* Prevent image stretching */
    object-position: center top !important; /* Align to top */
    width: 100% !important;
    height: auto !important; /* Auto height to match image size */
    max-height: none !important;
    min-height: 0 !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: top !important; /* Align to top to remove space */
    box-sizing: border-box !important;
  }
  
  .scroll-animation-text-desktop {
    display: none; /* Hide desktop text on mobile */
  }
  
  .scroll-animation-text-mobile {
    display: block; /* Show mobile text */
  }
  
  .scroll-animation-text {
    margin-top: 40px;
    padding: 0 1rem;
    margin-bottom: 40px; /* Extra margin to prevent cutoff */
  }
  
  .scroll-animation-text p {
    font-size: 0.9rem; /* Reduced text size on mobile */
    line-height: 1.6;
  }
  
  .scroll-animation-cta {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }
  
  .scroll-animation-cta .btn {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .scroll-animation-container {
    height: 80rem;
    padding: 5rem;
  }
  
  .scroll-animation-card {
    height: 35rem;
    padding: 1.5rem;
  }
  
  .scroll-animation-title {
    font-size: 3rem;
  }
  
  .scroll-animation-title-large {
    font-size: 6rem;
  }
}

@media (max-width: 767px) {
  .scroll-animation-section {
    padding: 80px 0;
  }
  
  .scroll-animation-container {
    height: 50rem;
    padding: 1rem;
  }
  
  .scroll-animation-header {
    margin-bottom: 40px;
  }
  
  .scroll-animation-title {
    font-size: 2rem;
  }
  
  .scroll-animation-title-large {
    font-size: 3rem;
  }
  
  .scroll-animation-card {
    height: 25rem;
    padding: 0.5rem;
  }
  
  .scroll-animation-card-inner {
    padding: 0.5rem;
  }
}

/* Expertise Section */
.expertise-section {
  background: linear-gradient(135deg, #000000 0%, #0d0d0d 20%, #1a1a1a 40%, #2d2d2d 60%, #1a1a1a 80%, #0d0d0d 100%);
  background-image: url('images/section-patern.png');
  background-repeat: repeat;
  background-position: top left;
  background-size: 250px 250px; /* Larger size for repeating pattern */
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.expertise-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  opacity: 0.70; /* 100% - 30% = 70% white overlay to make pattern 30% visible */
  z-index: 0;
  pointer-events: none;
}

.expertise-section > .container {
  position: relative;
  z-index: 1;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.expertise-left {
  display: flex;
  flex-direction: column;
}

.expertise-title {
  font-size: 3rem;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.expertise-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 600px;
}

.expertise-progress-bars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.progress-bar-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.progress-bar-container {
  width: 100%;
  height: 50px;
  background: var(--light-grey);
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #000000 0%, #0d0d0d 20%, #1a1a1a 40%, #2d2d2d 60%, #1a1a1a 80%, #0d0d0d 100%);
  border-radius: 25px;
  width: 0%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-bar-label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  pointer-events: none;
}

.progress-bar-name {
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  color: var(--white);
}

.progress-bar-value {
  display: none; /* Hide percentage in label, only show in fill */
}

.progress-bar-value-fill {
  font-size: 0.95rem;
  font-weight: var(--fw-bold);
  color: var(--white);
  display: block; /* Always show percentage inside fill */
}

.expertise-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.expertise-animation-card {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #000000 0%, #0d0d0d 20%, #1a1a1a 40%, #2d2d2d 60%, #1a1a1a 80%, #0d0d0d 100%);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
}

.expertise-animation-wrapper {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.expertise-animation-wrapper svg,
.expertise-animation-wrapper .lottie-animation-svg,
.expertise-animation-wrapper canvas,
.expertise-animation-wrapper .lottie-animation-canvas {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.expertise-animation-wrapper canvas {
  image-rendering: auto !important;
  image-rendering: -webkit-optimize-contrast !important;
}

.expertise-animation-wrapper img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

@media (max-width: 1024px) {
  .expertise-grid {
    gap: 60px;
  }
  
  .expertise-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .expertise-section {
    padding: 80px 0;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .expertise-title {
    font-size: 1.75rem;
  }
  
  .expertise-description {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }
  
  .expertise-progress-bars {
    gap: 24px;
  }
  
  .expertise-animation-card {
    max-width: 100%;
    padding: 1.5rem;
  }
  
  .expertise-animation-wrapper {
    height: 300px !important; /* Reduced height on mobile */
  }
  
  .expertise-animation-wrapper canvas,
  .expertise-animation-wrapper svg {
    height: 300px !important;
    max-height: 300px !important;
  }
}

/* Compliance Section */
.compliance-section {
  background: #a9d04f;
  padding: 80px 0;
}

.compliance-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.compliance-left {
  display: flex;
  align-items: center;
}

.compliance-title {
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

.compliance-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.compliance-box {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.compliance-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
}

.compliance-text {
  font-size: 1.1rem;
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  margin: 0;
}

@media (max-width: 1024px) {
  .compliance-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .compliance-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .compliance-right {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .compliance-section {
    padding: 60px 0;
  }
  
  .compliance-content {
    gap: 32px;
  }
  
  .compliance-title {
    font-size: 1.75rem;
  }
  
  .compliance-right {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .compliance-box {
    padding: 24px 20px;
  }
  
  .compliance-icon {
    width: 60px;
    height: 60px;
  }
}

/* Comparison */
.comparison { 
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.comparison .section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.comparison .section-header h2 {
  font-size: 2.75rem;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.comparison .section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
}

.comparison::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 26, 46, 0.1), transparent);
}

.comparison-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.compare-col {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.compare-col:first-child {
  border-color: rgba(169, 208, 79, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, rgba(169, 208, 79, 0.03) 100%);
}

.compare-col:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #a9d04f 0%, #95b844 100%);
}

.compare-col:last-child {
  border-color: rgba(208, 58, 58, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 81, 81, 0.02) 100%);
}

.compare-col:last-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d03a3a 0%, #b83232 100%);
}

.compare-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.compare-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(11, 26, 46, 0.08);
}

.compare-head h3 { 
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin: 0;
}

.pill {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  border: 2px solid rgba(169, 208, 79, 0.4);
  color: var(--navy);
  background: linear-gradient(135deg, rgba(169, 208, 79, 0.15) 0%, rgba(169, 208, 79, 0.08) 100%);
  box-shadow: 0 2px 8px rgba(169, 208, 79, 0.2);
}

.compare-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
  padding: 12px;
  border-radius: 10px;
  background: rgba(11, 26, 46, 0.02);
  transition: all 0.2s ease;
}

.compare-item:hover {
  background: rgba(11, 26, 46, 0.04);
  transform: translateX(4px);
}

.compare-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a9d04f 0%, #95b844 100%);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: var(--fw-bold);
  box-shadow: 0 2px 8px rgba(169, 208, 79, 0.3);
  flex-shrink: 0;
}

.compare-icon.negative {
  background: linear-gradient(135deg, #d03a3a 0%, #b83232 100%);
  box-shadow: 0 2px 8px rgba(208, 58, 58, 0.3);
  color: var(--white);
}

.compare-item span:last-child {
  flex: 1;
  font-weight: var(--fw-medium);
}

@media (max-width: 1024px) {
  .comparison-table {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 600px;
  }
  
  .compare-col {
    padding: 32px 24px;
  }
}

@media (max-width: 767px) {
  .comparison {
    padding: 60px 0;
  }
  
  .compare-col {
    padding: 24px 20px;
  }
  
  .compare-head h3 {
    font-size: 1.5rem;
  }
  
  .compare-item {
    font-size: 0.95rem;
    padding: 10px;
  }
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #000000 0%, #0d0d0d 20%, #1a1a1a 40%, #2d2d2d 60%, #1a1a1a 80%, #0d0d0d 100%);
  color: #fff;
  border-radius: 18px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px at 80% 20%, rgba(169,208,79,0.2), transparent 60%);
  pointer-events: none;
}
.cta h2 { color: #fff; }
.cta p  { color: rgba(255,255,255,0.84); max-width: 560px; }
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--off-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 60px;
}

.testimonials-badge {
  display: inline-block;
  border: 1px solid rgba(11, 26, 46, 0.15);
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  color: var(--text-dark);
  margin-bottom: 20px;
  background: rgba(11, 26, 46, 0.03);
}

.testimonials-title {
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.testimonials-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  opacity: 0.75;
  line-height: 1.6;
}

.testimonials-columns-wrapper {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-height: 740px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.testimonials-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
  width: 100%;
  max-width: 320px;
}

@keyframes testimonialsScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.testimonials-column-hidden-md {
  display: none;
}

.testimonials-column-hidden-lg {
  display: none;
}

.testimonial-card {
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(11, 26, 46, 0.1);
  box-shadow: 0 4px 24px rgba(11, 26, 46, 0.08), 0 0 0 1px rgba(59, 130, 246, 0.1);
  background: var(--white);
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(11, 26, 46, 0.12), 0 0 0 1px rgba(59, 130, 246, 0.15);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  background: var(--white);
  padding: 4px;
  border: 1px solid rgba(11, 26, 46, 0.08);
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-author-name {
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  color: var(--text-dark);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.testimonial-author-role {
  font-size: 0.875rem;
  color: var(--text-muted);
  opacity: 0.6;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .testimonials-title {
    font-size: 2.5rem;
  }
  
  .testimonials-columns-wrapper {
    gap: 32px;
  }
  
  .testimonials-column-hidden-md {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .testimonials-title {
    font-size: 3rem;
  }
  
  .testimonials-column-hidden-lg {
    display: flex;
  }
  
  .testimonials-columns-wrapper {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-header {
    margin-bottom: 40px;
  }
  
  .testimonials-title {
    font-size: 1.75rem;
  }
  
  .testimonials-columns-wrapper {
    max-height: 600px;
  }
  
  .testimonial-card {
    padding: 32px 24px;
  }
}

/* Partner Logos Section */
.partner-logos-section {
  background: linear-gradient(135deg, #1a4d2e 0%, #2d6a4f 50%, #1a4d2e 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.partner-logos-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: var(--white);
}

.partner-logos-title {
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.partner-logos-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.partner-logos-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.partner-logos-row {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.partner-logos-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: fit-content;
  will-change: transform;
}

.partner-logos-row-top .partner-logos-track {
  animation: scrollLeft 30s linear infinite;
}

.partner-logos-row-bottom .partner-logos-track {
  animation: scrollRight 30s linear infinite;
  transform: translateX(-50%);
}

.partner-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.partner-logo-item:hover {
  opacity: 1;
}

.partner-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.partner-logo-item:hover {
  opacity: 1;
}

.partner-logo-item img {
  height: 100%;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: invert(1) brightness(1.2) contrast(1.1);
  transition: all 0.3s ease;
  display: block;
}

.partner-logo-item:hover img {
  filter: invert(1) brightness(1.4) contrast(1.2) drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
  transform: scale(1.05);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 767px) {
  .partner-logos-section {
    padding: 120px 0 60px 0;
  }
  
  .partner-logos-header {
    margin-bottom: 40px;
    padding-top: 40px;
  }
  
  .partner-logos-title {
    font-size: 1.75rem;
  }
  
  .partner-logos-description {
    font-size: 1rem;
  }
  
  .partner-logos-wrapper {
    gap: 30px;
  }
  
  .partner-logos-track {
    gap: 40px;
  }
  
  .partner-logo-item {
    height: 50px;
  }
  
  .partner-logo-item img {
    max-width: 120px;
  }
}

/* Footer */
.footer {
  background: #0B1A2E;
  color: rgba(255,255,255,0.82);
  padding: 64px 0 38px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 32px;
  margin-bottom: 36px;
}
.footer h4 {
  color: #fff;
  margin-bottom: 14px;
  font-weight: var(--fw-semibold);
}
.footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.footer a:hover { color: var(--lime); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.62);
}
@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* New Flickering Footer */
.footer-new {
  background: linear-gradient(135deg, #000000 0%, #0d0d0d 20%, #1a1a1a 40%, #2d2d2d 60%, #1a1a1a 80%, #0d0d0d 100%);
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.footer-new-content {
  display: flex;
  flex-direction: column;
  padding: 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-new-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 320px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white);
}

.footer-logo-img {
  height: 32px;
  width: auto;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  color: var(--white);
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-compliance-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.compliance-badge {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compliance-badge-round {
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
}

.compliance-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-new-right {
  width: 100%;
  position: relative;
}

.footer-links-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-title {
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  color: var(--white);
  margin: 0 0 8px 0;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.footer-link:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-link::after {
  content: '→';
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.footer-flickering-grid-wrapper {
  width: 100%;
  height: 192px;
  position: relative;
  margin-top: 96px;
  z-index: 0;
}

.footer-flickering-grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.8) 30%, transparent 60%);
  z-index: 10;
  pointer-events: none;
}

.footer-flickering-grid-canvas {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

@media (min-width: 768px) {
  .footer-new-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 60px;
  }
  
  .footer-new-left {
    margin-bottom: 0;
  }
  
  .footer-new-right {
    width: 50%;
    padding-left: 40px;
  }
  
  .footer-links-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }
  
  .footer-flickering-grid-wrapper {
    height: 256px;
  }
}

/* Tablet: 2x2 grid for Company and Products */
@media (min-width: 768px) and (max-width: 1024px) {
  .footer-links-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
    flex-direction: unset !important;
  }
  
  /* Company and Products in 2x2 grid (side by side) */
  .footer-links-column:first-child {
    grid-column: 1;
    grid-row: 1;
  }
  
  .footer-links-column:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  
  /* Resources stays as is (full width below) */
  .footer-links-column:nth-child(3) {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 767px) {
  .footer-new-content {
    padding: 40px 20px;
  }
  
  .footer-new-left {
    max-width: 100%;
  }
  
  .footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  /* Company and Products in grid */
  .footer-links-column:first-child,
  .footer-links-column:nth-child(2) {
    grid-column: span 1;
  }
  
  /* Resources as list (full width) */
  .footer-links-column:nth-child(3) {
    grid-column: 1 / -1;
  }
}

/* Glass helper */
.glass {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
}

/* Animations */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 420ms ease, transform 420ms ease;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade Up Animation */
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-slider-dots { position: static; margin-top: 18px; }
}
@media (max-width: 640px) {
  .btn { width: 100%; justify-content: center; }
  .cta { padding: 32px; }
  .hero {
    padding-top: 110px;
  }
  .hero::before {
    width: 140vw;
    height: 520px;
    bottom: -60px;
    left: 50%;
    right: auto;
    background-position: center bottom;
    background-size: cover;
    transform: translateX(-50%);
    transform-origin: center;
    opacity: 0.22;
  }
  .hero h1 { font-size: 1.55rem; text-align: center; }
  .hero p { text-align: center; }
  .hero-grid { place-items: center; }
  .hero-grid-right {
    direction: ltr;
  }
  .hero-grid-right .hero-copy {
    text-align: center;
  }
  .hero-grid-right .hero-actions {
    justify-content: center;
  }
  .hero-copy { text-align: center; }
  .hero-badge { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-mock { display: none; }
  .hero-mock-mobile {
    display: block;
    margin: 14px auto 6px;
    max-width: 520px;
  }
  .hero-slide:nth-child(2) .hero-mock-mobile {
    max-width: 85%;
  }
  .hero-nav-arrows {
    bottom: auto;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    gap: 0;
  }
  .hero-nav-arrow {
    width: 44px;
    height: 44px;
    font-size: 26px;
    flex-shrink: 0;
  }
}

/* Feature Cards Slider */
.feature-cards-section {
  position: relative;
  width: 100%;
  padding: var(--section-padding) 0;
  background: var(--off-white);
}
.feature-slider-header {
  text-align: center;
  margin-bottom: 0px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}
.feature-slider-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.feature-slider-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Feature Cards Stack Section */
.feature-cards-stack-section {
  background: var(--off-white);
  padding: 100px 0;
  position: relative;
  min-height: 100vh;
}

.feature-cards-stack-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .feature-cards-stack-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.feature-cards-stack-left {
  position: sticky;
  top: 120px;
  height: fit-content;
  align-self: start;
}

.feature-cards-stack-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: var(--fw-medium);
}

.feature-cards-stack-title {
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.feature-cards-stack-title-accent {
  color: var(--lime);
}

.feature-cards-stack-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 500px;
}

.feature-cards-stack-container {
  position: relative;
  min-height: 400vh;
  perspective: 1000px;
}

.feature-cards-stack-card {
  position: sticky;
  top: 120px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--light-grey);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backface-visibility: hidden;
}

.feature-cards-stack-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.feature-cards-stack-card-title {
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0;
  flex: 1;
}

.feature-cards-stack-card-number {
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--lime);
  flex-shrink: 0;
}

.feature-cards-stack-card-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .feature-cards-stack-section {
    padding: 60px 0;
  }
  
  .feature-cards-stack-left {
    position: static;
    margin-bottom: 40px;
  }
  
  .feature-cards-stack-title {
    font-size: 2rem;
  }
  
  .feature-cards-stack-container {
    min-height: auto;
  }
  
  .feature-cards-stack-card {
    position: relative;
    top: 0;
    margin-bottom: 24px;
  }
}

.feature-carousel-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.feature-carousel-header h2 {
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.feature-carousel-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-carousel-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.feature-carousel-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: var(--container);
  margin: 0 auto;
}

.feature-carousel-container::-webkit-scrollbar {
  display: none;
}

.feature-carousel-card {
  flex-shrink: 0;
  width: 300px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  scroll-snap-align: start;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

.feature-carousel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.feature-carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
  background: rgba(255, 255, 255, 0.05);
}

.feature-carousel-card:hover .feature-carousel-image {
  transform: scale(1.1);
}

.feature-carousel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  min-height: 190px;
  background: transparent;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

.feature-carousel-content > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-height: 0;
}

.feature-carousel-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.feature-carousel-tag svg {
  width: 16px;
  height: 16px;
  color: var(--lime);
  flex-shrink: 0;
}

.feature-carousel-title {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

.feature-carousel-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.feature-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
  flex-shrink: 0;
}

.feature-carousel-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-carousel-brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  color: var(--white);
}

.feature-carousel-brand-info {
  display: flex;
  flex-direction: column;
}

.feature-carousel-brand-name {
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  color: var(--white);
  margin: 0;
  line-height: 1.4;
}

.feature-carousel-brand-type {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}

.feature-carousel-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.feature-carousel-card:hover .feature-carousel-arrow {
  background: var(--lime);
  color: var(--navy);
  transform: rotate(-45deg);
}

.feature-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
  z-index: 10;
  color: var(--text-dark);
}

.feature-carousel-wrapper:hover .feature-carousel-btn {
  opacity: 1;
}

.feature-carousel-btn:hover {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
}

.feature-carousel-btn-left {
  left: 0;
}

.feature-carousel-btn-right {
  right: 0;
}

.feature-carousel-btn:disabled {
  opacity: 0;
  cursor: not-allowed;
}

@media (max-width: 767px) {
  .feature-carousel-section {
    padding: 60px 0;
  }
  
  .feature-carousel-header h2 {
    font-size: 1.75rem;
  }
  
  .feature-carousel-header p {
    font-size: 1rem;
  }
  
  .feature-carousel-card {
    width: 280px;
    height: 360px;
  }
  
  .feature-carousel-btn {
    opacity: 0.7;
  }
  
  .feature-carousel-wrapper:hover .feature-carousel-btn {
    opacity: 0.7;
  }
}

/* Timeline Layout */
.feature-timeline-wrapper {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.feature-timeline-container {
  position: relative;
  padding-bottom: 80px;
  max-width: var(--container); /* Match other sections */
  margin: 0 auto;
  padding-left: 24px; /* Match container padding */
  padding-right: 24px; /* Match container padding */
  box-sizing: border-box;
}

.feature-timeline-entry {
  display: flex;
  justify-content: flex-start;
  padding-top: 40px; /* pt-10 = 40px */
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-timeline-entry:first-of-type {
  padding-top: 0px;
}

@media (min-width: 768px) {
  .feature-timeline-entry {
    padding-top: 160px; /* md:pt-40 = 160px */
    gap: 40px; /* md:gap-10 = 40px */
  }
}

.feature-timeline-entry.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-timeline-left {
  position: sticky;
  top: 160px; /* top-40 = 160px */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 60%; /* 60% of the entry width */
  flex-shrink: 0;
  z-index: 40;
  padding-right: 40px; /* Added spacing */
  align-self: flex-start;
}

@media (min-width: 768px) {
  .feature-timeline-left {
    flex-direction: column; /* Stack title and description vertically */
    align-items: flex-start; /* Align to start */
    width: 60%; /* 60% on desktop */
  }
}

.feature-timeline-dot {
  position: absolute;
  left: 12px; /* left-3 = 12px */
  top: 0; /* Align with top of title container */
  width: 40px; /* h-10 w-10 = 40px */
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(0); /* Center will be at 20px from top */
}

.feature-timeline-dot::after {
  content: '';
  width: 16px; /* h-4 w-4 = 16px */
  height: 16px;
  border-radius: 50%;
  background: var(--light-grey);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px; /* p-2 = 8px (but this doesn't make sense for a circle, so we'll use the size directly) */
  box-sizing: border-box;
}

.feature-timeline-entry.active .feature-timeline-dot {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.feature-timeline-entry.active .feature-timeline-dot::after {
  background: var(--primary);
  border-color: var(--primary);
}

.feature-timeline-title {
  display: none; /* Hidden on mobile */
  font-size: 1.25rem; /* text-xl */
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
  width: 100%; /* Full width of 60% section */
  padding-left: 100px; /* Spacing from dot */
  padding-right: 40px; /* Spacing */
  padding-top: 20px; /* Top spacing */
  padding-bottom: 20px; /* Bottom spacing */
  line-height: 1.2; /* Tighter line height */
  letter-spacing: -0.02em; /* Slight letter spacing for large text */
  box-sizing: border-box;
}

.feature-timeline-entry.active .feature-timeline-title {
  color: var(--text-dark);
}

/* Description under title on left */
.feature-timeline-description {
  display: none; /* Hidden on mobile */
  font-size: 0.875rem; /* text-sm */
  line-height: 1.5;
  color: var(--text-muted);
  margin-top: 0; /* No top margin, directly under title */
  margin-bottom: 0;
  padding-left: 120px; /* Match title padding */
  padding-right: 60px;
  padding-top: 0;
  padding-bottom: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .feature-timeline-title {
    display: block; /* Shown on desktop */
    font-size: 3rem; /* md:text-5xl = 3rem */
    padding-left: 120px; /* Spacing from dot */
    padding-right: 60px; /* Spacing */
    padding-top: 0px; /* Start at top to align with dot */
    padding-bottom: 0; /* No bottom padding, description follows */
    margin-bottom: 0;
    margin-top: 0;
    line-height: 40px; /* Match dot height to center single-line text */
    min-height: 40px; /* Match dot height for alignment */
  }
  
  .feature-timeline-description {
    display: block !important; /* Shown on desktop - force override */
    margin-top: 8px; /* Small gap between title and description */
    padding-top: 0;
  }
}

.feature-timeline-right {
  width: 40%; /* 40% for image and card section */
  flex-shrink: 0;
  padding-left: 10px; /* Reduced by 5 steps (20px) from 30px */
  padding-right: 16px;
  min-width: 0;
  position: relative;
}

.feature-timeline-title-mobile {
  display: block;
  font-size: 1.5rem; /* text-2xl */
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 32px; /* Increased spacing */
  margin-top: 0;
  text-align: left;
  padding-right: 40px; /* Increased spacing */
  padding-top: 16px; /* Added top spacing */
  padding-bottom: 16px; /* Added bottom spacing */
  max-width: 90%; /* Increased width to prevent wrapping */
  line-height: 1.2; /* Tighter line height */
}

@media (min-width: 768px) {
  .feature-timeline-title-mobile {
    display: none; /* Hidden on desktop, shown on mobile */
  }
}

.feature-timeline-card {
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 110%; /* Increased from 100% */
  max-width: none; /* Remove max-width constraint */
  position: relative;
  background-size: cover;
  background-position: center;
  margin-left: auto;
  margin-right: auto;
  height: auto; /* Let height be determined by image */
  display: flex;
  flex-direction: column;
}

/* Pattern overlay for each card - matching hero section implementation */
.feature-timeline-card::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  right: -10%;
  bottom: -10%;
  width: 120%;
  height: 120%;
  background-image: url("images/patetrn-net.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; /* Cover the entire card */
  opacity: 0.03; /* Further reduced opacity - 97% transparency = 3% opacity */
  transform: rotate(-90deg);
  transform-origin: center;
  pointer-events: none;
  z-index: 0;
  border-radius: 16px; /* Match card border radius */
}


/* Different dark gradient backgrounds for each card - matching hero section style */
.feature-timeline-card-1 {
  background: linear-gradient(135deg, #0B1A2E 0%, #162A45 100%);
}

.feature-timeline-card-2 {
  background: linear-gradient(135deg, #2D1B4E 0%, #4A2C6B 100%);
}

.feature-timeline-card-3 {
  background: linear-gradient(135deg, #0B1A2E 0%, #1a2d3d 100%);
}

.feature-timeline-card-4 {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d45 100%);
}

.feature-timeline-card-5 {
  background: linear-gradient(135deg, #0B1A2E 0%, #162A45 100%);
}

.feature-timeline-content {
  padding: 16px; /* Add padding so image doesn't touch card edges */
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  z-index: 1; /* Above the pattern overlay */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center align content */
  text-align: center; /* Center align text */
  height: 100%; /* Match card height */
  box-sizing: border-box;
}

.feature-timeline-content p {
  font-size: 1rem; /* Increased from 0.875rem */
  color: #ffffff; /* White text */
  line-height: 1.5;
  margin-bottom: 0; /* No bottom margin since it's at bottom */
  margin-top: 0;
  font-weight: 400;
}

@media (min-width: 768px) {
  .feature-timeline-content p {
    font-size: 1.125rem; /* Increased from 0.875rem - md:text-base */
  }
}

/* Single Image - Now at top of card */
.feature-timeline-image {
  width: 100%;
  margin-bottom: 0; /* Remove margin to match card height */
  margin-top: 0;
  margin-left: 0; /* Remove margins */
  margin-right: 0; /* Remove margins */
  border-radius: 0; /* Match card border radius */
  overflow: hidden;
  order: 1; /* Image first */
  align-self: stretch; /* Stretch to fill card */
  display: block;
  flex: 1; /* Take available space */
}

.feature-timeline-image img {
  width: 100%;
  height: 240px; /* Card height matches this */
  object-fit: contain; /* Show full image without cropping */
  display: block;
  margin: 0; /* Remove all margins */
  box-shadow: 0 0 24px rgba(34, 42, 53, 0.06), 0 1px 1px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(34, 42, 53, 0.04), 0 0 4px rgba(34, 42, 53, 0.08), 0 16px 68px rgba(47, 48, 55, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .feature-timeline-image img {
    height: auto; /* Remove height constraint on mobile */
    max-height: none;
    width: 100%;
    object-fit: contain;
  }
  
  .feature-timeline-card {
    width: 100%;
    max-width: 100%;
    height: auto; /* Card takes height of image */
    margin: 0;
  }
  
  .feature-timeline-content {
    padding: 0;
    height: auto; /* Content takes height of image */
  }
  
  .feature-timeline-image {
    width: 100%;
    flex: none;
    margin: 0;
    height: auto; /* Image container takes natural image height */
  }
}

@media (min-width: 768px) {
  .feature-timeline-image img {
    height: 380px; /* Card height matches this */
  }
}

@media (min-width: 1024px) {
  .feature-timeline-image img {
    height: 480px; /* Card height matches this */
  }
}

/* Description removed from card - now under title on left */

/* Vertical Timeline Line */
.feature-timeline-line {
  position: absolute;
  left: 32px; /* left-8 = 32px */
  top: 0;
  width: 2px;
  height: 0; /* Will be set dynamically by JS */
  overflow: hidden;
  background: linear-gradient(to bottom, transparent 0%, var(--light-grey) 10%, var(--light-grey) 90%, transparent 100%);
  z-index: 1;
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

@media (min-width: 768px) {
  .feature-timeline-line {
    left: 32px; /* md:left-8 = 32px (same as mobile) */
  }
}

.feature-timeline-line-progress {
  position: absolute;
  inset-x: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to top, #9333ea 0%, #3b82f6 50%, transparent 100%);
  border-radius: 2px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Blur fade effects on left and right edges */
.feature-cards-wrapper::before,
.feature-cards-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.feature-cards-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white) 0%, rgba(248, 249, 251, 0.8) 50%, transparent 100%);
}

.feature-cards-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white) 0%, rgba(248, 249, 251, 0.8) 50%, transparent 100%);
}

.feature-cards-wrapper.at-start::before,
.feature-cards-wrapper.at-end::after {
  opacity: 0;
}

.feature-cards-container {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.feature-card {
  flex: 0 0 calc(25% - 15px); /* 4 cards on desktop */
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-card-image {
  width: 100%;
  height: 180px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--off-white);
  flex-shrink: 0;
}

.feature-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.feature-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-card-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.feature-card-btn {
  padding: 10px 20px;
  border-radius: 8px;
  background: rgba(128, 128, 128, 0.1);
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  width: fit-content;
  align-self: flex-start;
  border: 1px solid rgba(128, 128, 128, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.feature-card-btn:hover {
  background: rgba(128, 128, 128, 0.2);
  border-color: rgba(128, 128, 128, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-cards-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  transform: translateY(-50%);
  z-index: 20;
  pointer-events: none;
}

.feature-cards-nav .feature-nav-btn {
  pointer-events: auto;
}

.feature-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(128, 128, 128, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-dark);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(128, 128, 128, 0.4);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-nav-btn:active {
  transform: scale(0.95);
}

.feature-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* Timeline Mobile Styles */
@media (max-width: 767px) {
  .feature-timeline-wrapper {
    padding: 0 16px; /* px-4 = 16px */
  }
  
  .feature-timeline-container {
    padding-left: 20px; /* Match container padding on mobile */
    padding-right: 20px;
  }
  
  .feature-timeline-entry {
    flex-direction: column;
    padding-top: 40px; /* pt-10 = 40px */
    padding-left: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
  }
  
  .feature-timeline-left {
    position: static;
    flex-direction: column;
    width: 100%; /* Full width on mobile */
    padding-right: 0;
    padding-left: 30px; /* Reduced padding to make content wider */
    margin-bottom: 0;
    margin-top: 0; /* Already aligned with title above */
    align-items: flex-start;
    order: 2;
    box-sizing: border-box;
  }
  
  .feature-timeline-dot {
    display: none; /* Hide dots on mobile to save space */
  }
  
  .feature-timeline-dot::after {
    width: 12px;
    height: 12px;
  }
  
  .feature-timeline-left .feature-timeline-title {
    display: none; /* Hidden on mobile in left column */
  }
  
  .feature-timeline-description {
    display: block !important; /* Show description on mobile */
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
  }
  
  .feature-timeline-right {
    padding-left: 30px; /* Reduced padding to make content wider */
    padding-right: 0;
    width: 100%; /* Full width on mobile */
    order: 3;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }
  
  .feature-timeline-title-mobile {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    margin-top: 40px; /* Align with dot position */
    text-align: left;
    padding: 0;
    padding-left: 30px; /* Reduced padding to make content wider */
    width: 100%;
    order: 1;
    box-sizing: border-box;
  }
  
  .feature-timeline-right .feature-timeline-card {
    margin-top: 0;
    height: auto; /* Card takes height of image */
  }
  
  .feature-timeline-entry {
    display: flex;
    flex-direction: column;
  }
  
  .feature-timeline-line {
    left: 20px; /* Move line to the left */
    z-index: 1; /* Ensure line is visible */
    display: block !important; /* Ensure line is visible */
    visibility: visible !important; /* Ensure line is visible */
    opacity: 1 !important; /* Ensure line is visible */
  }
  
  .feature-timeline-wrapper {
    position: relative; /* Ensure wrapper is positioned for absolute line */
  }
}

/* Tablet: 2 cards visible */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }
  
  .feature-card {
    flex: 0 0 calc(50% - 14px); /* 2 cards on tablet */
  }
  
  .feature-timeline-left {
    width: 240px;
  }
  
  .feature-timeline-title {
    font-size: 1.3rem;
  }
}

/* Mobile: 1 card visible */
@media (max-width: 767px) {
  .feature-slider-header h2 {
    font-size: 1.5rem;
  }
  
  .feature-cards-wrapper {
    overflow: hidden; /* Prevent scrolling, use transform instead */
    min-height: auto;
  }
  
  .feature-cards-container {
    gap: 0;
    overflow-x: hidden; /* Prevent scroll, use transform */
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
    position: relative; /* Ensure proper positioning context */
  }
  
  .feature-card {
    flex: 0 0 100%; /* Full width of container content area */
    margin: 0;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    box-sizing: border-box;
  }
  
  .feature-card-image {
    height: 240px; /* Increased from 180px */
  }
  
  .feature-card-content {
    padding: 18px;
  }
  
  .feature-card-content h3 {
    font-size: 1.2rem;
  }
  
  .feature-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  
  .feature-cards-nav {
    top: calc(50% - 60px); /* Shift up 15 steps (60px) on mobile */
  }
  
  /* Show blur effects on mobile too */
  .feature-cards-wrapper::before,
  .feature-cards-wrapper::after {
    width: 60px; /* Smaller blur on mobile */
  }
}
.feature-nav-mobile {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 5;
}
.feature-nav-mobile button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.72);
  color: #0A1833;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, opacity 0.2s ease;
  pointer-events: auto;
}
.feature-nav-mobile button:active {
  transform: translateY(1px) scale(0.98);
  opacity: 0.85;
}
.feature-slider-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--feature-bg, #0A1833);
  opacity: 0.78;
  z-index: 1;
  border-radius: 22px;
  transform: translateX(var(--bg-shift, 0%));
  transition: background 600ms ease, opacity 400ms ease, transform 700ms ease;
  will-change: transform, background, opacity;
}
.feature-slider-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/patetrn-net.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.04;
  transform: none;
  pointer-events: none;
  z-index: 1;
  filter: saturate(80%);
}
.feature-slider-container > * {
  position: relative;
  z-index: 2;
}
.feature-slide {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out, filter 0.8s ease-in-out;
  transform: translateY(40px);
  filter: blur(8px);
}
.feature-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  filter: blur(0);
}
.feature-slide.slide-out-up {
  transform: translateY(-40px);
  opacity: 0;
  filter: blur(8px);
}
.feature-slide.slide-out-down {
  transform: translateY(40px);
  opacity: 0;
  filter: blur(8px);
}
.feature-slide.slide-in-up {
  animation: slideInUp 0.8s ease-in-out forwards;
}
.feature-slide.slide-in-down {
  animation: slideInDown 0.8s ease-in-out forwards;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.feature-image {
  width: 50%;
  background-size: 85%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 22px 0 0 22px;
  position: relative;
}
.feature-content {
  width: 50%;
  padding: 60px 60px 60px 85px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-label {
  font-size: 13px;
  opacity: 0.6;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.feature-content h2 {
  font-size: 38px;
  margin: 12px 0 18px;
  font-weight: 700;
  color: #fff;
}
.feature-slider-section.is-mobile .feature-content h2 {
  font-size: 28px;
  line-height: 1.15;
}
.feature-content p {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.88;
  max-width: 450px;
  color: rgba(255, 255, 255, 0.88);
}
.feature-btn {
  margin-top: 25px;
  padding: 13px 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #A9D04F, #8EBF42);
  color: #0A1833;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  width: fit-content;
}
.feature-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.feature-slider-section.is-mobile {
  min-height: auto;
  padding: 16px 0 0 0;
}
.feature-slider-section.is-mobile .container {
  min-height: auto;
}
.feature-slider-section.is-mobile .feature-slider-container {
  height: auto;
  min-height: 100vh;
  flex-direction: column;
  margin: 0 12px;
  overflow: hidden;
  padding: 18px 18px 26px;
}
.feature-slider-section.is-mobile .feature-slide {
  position: relative;
  flex-direction: column;
  height: auto;
  display: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  filter: none;
  align-items: center;
}
.feature-slider-section.is-mobile .feature-slide.active {
  display: flex;
}
.feature-slider-section.is-mobile .feature-image {
  width: 100%;
  height: 200px;
  border-radius: 22px 22px 0 0;
  transform: none;
  margin: 0;
  background-size: contain;
}
.feature-slider-section.is-mobile .feature-content {
  width: 100%;
  padding: 22px 18px 30px;
  text-align: center;
  align-items: center;
}
.feature-slider-section.is-mobile .feature-content .feature-btn {
  margin-left: 0;
  margin-right: 0;
}
.feature-slider-section.is-mobile .feature-nav-mobile {
  top: 35%;
  bottom: auto;
  transform: translateY(-50%);
  padding: 0 10px;
}
.feature-slider-section.is-mobile .feature-nav-mobile {
  display: flex;
  align-items: center;
}
.feature-slider-section.is-mobile .feature-nav-mobile button {
  width: 36px;
  height: 36px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.68);
}
.feature-slider-section.is-tablet .feature-image {
  width: 40%;
  background-size: 85%;
}
.feature-slider-section.is-tablet .feature-content {
  width: 60%;
}
.feature-slider-section.is-tablet .feature-nav-mobile {
  display: flex;
  align-items: center;
}
.feature-slider-section.is-desktop .feature-nav-mobile {
  display: none;
}

/* Desktop flipbook effect styling */
@media (min-width: 1025px) {
  :root {
    --page-gap: 40px;
  }
  .feature-slider-section.is-desktop .feature-slider-container {
    height: 100vh;
    min-height: 100vh;
    perspective: 1600px;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
  }
  .feature-slider-section.is-desktop .feature-slide {
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    flex-direction: row;
    gap: var(--page-gap);
    align-items: stretch;
    justify-content: center;
    transform-origin: center bottom;
    will-change: transform, opacity;
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
    background: var(--feature-bg, #0A1833);
    border-radius: 22px;
    overflow: hidden;
    backface-visibility: hidden;
    filter: blur(0px) !important;
    transform-style: preserve-3d;
  }
  .feature-slider-section.is-desktop .feature-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('images/patetrn-net.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.06;
    pointer-events: none;
  }
  .feature-slider-section.is-desktop .feature-slide:first-child {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1) rotateY(0);
  }
  .feature-slider-section.is-desktop .feature-image,
  .feature-slider-section.is-desktop .feature-content {
    width: 50%;
  }
  /* Slide-specific gradients */
  .feature-slider-section.is-desktop .feature-slide:nth-child(1) { background: linear-gradient(135deg, #2D1B4E, #4A2C6B); }
  .feature-slider-section.is-desktop .feature-slide:nth-child(2) { background: linear-gradient(135deg, #0E2C24, #0A3A2E); }
  .feature-slider-section.is-desktop .feature-slide:nth-child(3) { background: linear-gradient(135deg, #0B1E3A, #0A2C50); }
  .feature-slider-section.is-desktop .feature-slide:nth-child(4) { background: linear-gradient(135deg, #3D2A00, #5C4205); }
  .feature-slider-section.is-desktop .feature-slide:nth-child(5) { background: linear-gradient(135deg, #10212F, #0B1B28); }
  .feature-slider-section.is-desktop .feature-image {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 80%;
    min-height: 0;
    border-radius: 0;
    box-shadow: none;
    align-self: center;
    padding: 16px;
    will-change: transform, opacity;
    transform-origin: center center;
  }
  .feature-slider-section.is-desktop .feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    padding: 60px;
    will-change: transform, opacity;
  }
}

/* Hard enforce nav position on narrow viewports in case class toggles fail */
@media (max-width: 767px) {
  /* Ensure positioning context for mobile slider */
  .feature-slider-section .feature-slider-container {
    position: relative !important;
  }

  /* Force nav arrows overlay position and layout on mobile */
  .feature-slider-section .feature-slider-container .feature-nav-mobile {
    position: absolute !important;
    top: 32% !important; /* around upper third */
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 15px !important;
    width: 100% !important;
    z-index: 100 !important;
    margin: 0 !important;
  }

  /* Normalize button sizing on mobile */
  .feature-slider-section .feature-slider-container .feature-nav-mobile button {
    width: 40px !important;
    height: 40px !important;
    font-size: 18px !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 50% !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
  }
}

/* Contact Section Styles */
.contact-section {
  padding: 80px 0;
  background: #ffffff;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.contact-dotted-surface {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.contact-dotted-surface canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-top-three-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1250px;
  margin: 0 auto 48px auto;
  align-items: stretch;
}

.contact-top-three-columns > * {
  display: flex;
  flex-direction: column;
}

.contact-info,
.contact-form-wrapper {
  display: flex;
  flex-direction: column;
}

.contact-info-card,
.contact-form-card,
.contact-intro-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-faq-section {
  max-width: 1250px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-card,
.contact-info-card,
.contact-intro-card {
  background: #f8f9fa !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  height: 100%;
}

.contact-form-card:hover,
.contact-info-card:hover,
.contact-intro-card:hover {
  background: #f0f2f5 !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-form-card h2,
.contact-info-card h2,
.contact-intro-card h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: #ffffff;
  color: #1a1a1a;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--lime);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(169, 208, 79, 0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.info-items-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.info-item-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(169, 208, 79, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(169, 208, 79, 0.3);
  border-radius: 12px;
  color: var(--lime);
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.info-content p {
  font-size: 0.9rem;
  color: #4a4a4a;
  margin: 0;
  line-height: 1.5;
}

.social-links-section {
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-links-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.social-icons-grid {
  display: flex;
  gap: 12px;
}

.social-icon-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: #1a1a1a;
  transition: all 0.2s ease;
}

.social-icon-link:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: #000;
  transform: translateY(-2px);
}

/* Multi-Step Form Styles */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  background: #e9ecef;
  color: #6c757d;
  border: 2px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.progress-step.active .step-number {
  background: var(--lime);
  color: #000;
  border-color: var(--lime);
}

.progress-step.completed .step-number {
  background: rgba(169, 208, 79, 0.3);
  color: var(--lime);
  border-color: rgba(169, 208, 79, 0.5);
}

.progress-step.completed .step-number::before {
  content: '✓';
}

.step-label {
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: 500;
}

.progress-step.active .step-label {
  color: #1a1a1a;
  font-weight: 600;
}

.progress-line {
  flex: 1;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0 8px;
  position: relative;
  top: -18px;
}

.progress-line.completed {
  background: var(--lime);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

.form-review {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.form-review h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.review-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.review-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.review-item strong {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 600;
}

.review-item span {
  font-size: 1rem;
  color: #1a1a1a;
  word-break: break-word;
}

@media (max-width: 768px) {
  .contact-dotted-surface {
    opacity: 0.2;
  }
  
  .form-progress {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }
  
  .step-label {
    font-size: 0.7rem;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions .btn {
    width: 100%;
  }
}

/* Contact Intro Card - styles now in main card definition above */

.contact-intro-text {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  color: #1a1a1a;
  transition: all 0.2s ease;
}

.service-item:hover {
  background: #f0f2f5;
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateX(4px);
}

.service-item svg {
  color: var(--lime);
  flex-shrink: 0;
}

.service-item span {
  font-size: 1rem;
  font-weight: 500;
}

.partner-login-link {
  margin-top: auto;
  padding-top: 24px;
}

.partner-login-link .btn {
  width: 100%;
  justify-content: center;
}

/* FAQ Section */
.contact-faq-section {
  position: relative;
}

.contact-faq-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 32px;
}

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

.faq-item-card {
  background: #f8f9fa !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item-card:hover {
  background: #f0f2f5 !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--lime);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #4a4a4a;
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
  color: var(--lime);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-answer.active {
  max-height: 500px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .contact-top-three-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .contact-top-three-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form-card,
  .contact-info-card,
  .contact-intro-card {
    padding: 24px;
  }

  .contact-intro-card h2 {
    font-size: 1.5rem;
  }

  .contact-faq-section h2 {
    font-size: 1.5rem;
  }
}

/* Product Features Section */
.product-features-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #000000 0%, #0d0d0d 20%, #1a1a1a 40%, #2d2d2d 60%, #1a1a1a 80%, #0d0d0d 100%);
  color: #fff;
}

.product-features-section .about-section-header h2,
.product-features-section .about-section-header h3,
.product-features-section .about-section-header p {
  color: #fff;
}

.product-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.product-feature-card {
  padding: 40px;
  background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 50%, #c0c0c0 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.product-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.9) 0%, rgba(232, 232, 232, 0.9) 50%, rgba(192, 192, 192, 0.9) 100%);
  z-index: 0;
}

.product-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.product-feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

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

.product-feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.product-feature-card p {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin: 0;
}

@media (max-width: 768px) {
  .product-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
  }

  .product-feature-card {
    padding: 32px 24px;
  }

  .product-feature-card h3 {
    font-size: 1.25rem;
  }

  .product-feature-card p {
    font-size: 0.9rem;
  }
}
