* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #f97316 0%, #545454 100%);
  border-radius: 10px;
}

body::-webkit-scrollbar-button {
  display: none;
}


code {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.highlight {
  background: linear-gradient(135deg, #ef7e1e, #545454);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}/* NAVBAR CONTAINER */
.navbar {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    overflow: visible;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    margin: 0 auto;
    height: 65px;
    max-width: 1400px;
    position: relative;
    overflow: visible;
}

/* LOGO */
.navbar-logo {
    flex-shrink: 0;
}

.navbar-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* DESKTOP NAVIGATION */
.navbar-desktop {
    display: flex;
    align-items: center;
    position: relative;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}

.navbar-nav-item {
    position: relative;
}

.navbar-nav-link {
    position: relative;
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 16px;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-radius: 6px;
}

.navbar-nav-button {
    border: none;
    background: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
    width: auto;
    text-align: left;
}

/* Hover effect - subtle highlight */
.navbar-nav-link:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #333333;
}

/* Active submenu state */
.navbar-nav-link.active {
    background: rgba(239, 126, 26, 0.1);
    color: #ef7e1a;
}

/* Current page - gradient underline */
.navbar-nav-link.current-page::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, #ef7e1a 0%, #545454 100%);
    border-radius: 2px;
}

/* HORIZONTAL SUBMENU - REDESIGNED */
.submenu-container {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 999;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 70vh;
    overflow-y: auto;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.submenu-wrapper {
    width: 100%;
    padding: 0;
}

/* NEW: Clean submenu content layout */
.submenu-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
}

/* NEW: Submenu for items with nested sections (like Solutions) */
.submenu-with-sections {
    display: flex;
    gap: 0;
}

.submenu-section {
    flex: 1;
    padding: 0 30px;
    position: relative;
}

/* Grey divider between sections */
.submenu-section:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e5e7eb;
}

.submenu-section-title {
    color: #ef7e1a;
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #ef7e1a;
}

.submenu-section-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.submenu-section-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 8px;
}

.submenu-section-link:hover {
    color: #ef7e1a;
    border-left-color: #ef7e1a;
    padding-left: 12px;
    font-weight: 600;
}

/* NEW: Submenu for simple lists (like Services, Industry) - 3 column layout */
.submenu-simple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.submenu-simple-column {
    padding: 0 30px;
    position: relative;
}

/* Grey divider between columns */
.submenu-simple-column:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e5e7eb;
}

.submenu-simple-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.submenu-simple-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 8px;
}

.submenu-simple-link:hover {
    color: #ef7e1a;
    border-left-color: #ef7e1a;
    padding-left: 12px;
    font-weight: 600;
}

/* MOBILE TOGGLE BUTTON */
.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    gap: 4px;
}

.navbar-bar {
    width: 25px;
    height: 3px;
    background-color: #545454;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.navbar-bar.active:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-bar.active:nth-child(2) {
    opacity: 0;
}

.navbar-bar.active:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
.navbar-mobile-menu {
    position: fixed;
    top: 65px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 65px);
    background: #ffffff;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    overflow-y: auto;
}

.navbar-mobile-menu.active {
    left: 0;
}

.navbar-mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 997;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.navbar-mobile-content {
    padding: 24px 20px;
}

.navbar-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.navbar-mobile-item {
    border-radius: 8px;
    overflow: hidden;
    background: #fafbfc;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 20px;
    border: none;
    background: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.navbar-mobile-link:hover {
    background: rgba(239, 126, 26, 0.08);
    color: #ef7e1a;
}

.navbar-mobile-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-mobile-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #666;
}

.navbar-mobile-arrow.expanded {
    transform: rotate(180deg);
}

.navbar-mobile-submenu {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    animation: expandDown 0.3s ease;
}

@keyframes expandDown {
    from {
        max-height: 0;
        opacity: 0;
    }

    to {
        max-height: 500px;
        opacity: 1;
    }
}

.navbar-mobile-subitem {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 0;
}

.navbar-mobile-subitem:last-child {
    border-bottom: none;
}

.navbar-mobile-sublink {
    display: block;
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 15px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.navbar-mobile-subtitle {
    display: block;
    color: #ef7e1a;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 20px 12px 20px;
    margin: 0;
    background: rgba(239, 126, 26, 0.05);
}

.navbar-mobile-nested {
    background: rgba(0, 0, 0, 0.02);
    padding: 8px 0;
}

.navbar-mobile-nested-link {
    display: block;
    text-decoration: none;
    color: #6a7280;
    font-weight: 400;
    font-size: 14px;
    padding: 10px 32px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.navbar-mobile-nested-link:hover,
.navbar-mobile-sublink:hover {
    background: rgba(239, 126, 26, 0.1);
    color: #ef7e1a;
    border-left-color: #ef7e1a;
    padding-left: 36px;
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 1200px) {
    .navbar-container {
        padding: 0 30px;
    }

    .navbar-nav {
        gap: 24px;
    }

    .submenu-content {
        padding: 32px 30px;
    }

    .submenu-section {
        padding: 0 20px;
    }

    .submenu-simple-column {
        padding: 0 20px;
    }
}

@media screen and (max-width: 992px) {
    .navbar-nav {
        gap: 20px;
    }

    .navbar-nav-link {
        font-size: 15px;
        padding: 10px 12px;
    }

    .submenu-content {
        padding: 28px 25px;
    }

    .submenu-section {
        padding: 0 15px;
    }

    .submenu-simple-column {
        padding: 0 15px;
    }

    /* Stack simple grid to 2 columns on medium screens */
    .submenu-simple-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .navbar-desktop {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-container {
        padding: 0 20px;
    }

    .submenu-container {
        display: none;
    }

    /* Stack everything to single column on mobile */
    .submenu-with-sections {
        flex-direction: column;
        gap: 30px;
    }

    .submenu-section::after {
        display: none;
    }

    .submenu-simple-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .submenu-simple-column::after {
        display: none;
    }
}

@media screen and (min-width: 769px) {
    .navbar-desktop {
        display: flex;
    }

    .navbar-toggle {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .navbar-container {
        height: 65px;
        padding: 0 16px;
    }

    .navbar-logo-img {
        height: 42px;
    }

    .navbar-mobile-menu {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .navbar-mobile-content {
        padding: 20px 16px;
    }

    .navbar-mobile-link {
        font-size: 15px;
        padding: 14px 16px;
    }

    .navbar-mobile-sublink,
    .navbar-mobile-nested-link {
        font-size: 14px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar-mobile-nested-link {
        padding-left: 28px;
    }

    .navbar-mobile-nested-link:hover,
    .navbar-mobile-sublink:hover {
        padding-left: 32px;
    }
}.linkstead-root {
  --linkstead-primary: #f97316;
  --linkstead-secondary: #545454;
  --linkstead-text: #0f172a;
  --linkstead-text-light: #64748b;
  --linkstead-bg: #ffffff;
  --linkstead-surface: #f8fafc;
  --linkstead-border: #e2e8f0;
  --linkstead-hover: #fef3e2;

  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  background: var(--linkstead-bg);
  color: var(--linkstead-text);
  line-height: 1.6;
}

/* Main Hero Layout */
.linkstead-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  padding: 3rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.linkstead-hero.linkstead-loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Clean background */
.linkstead-bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.linkstead-bg-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
}

.linkstead-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Hero Grid Layout */
.linkstead-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  min-height: 85vh;
}

/* Left Content */
.linkstead-hero-content {
  padding-top: 2rem;
}

.linkstead-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.linkstead-gradient-text {
  background: linear-gradient(135deg, var(--linkstead-primary) 0%, var(--linkstead-secondary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.linkstead-hero-description {
  font-size: 1.125rem;
  color: var(--linkstead-text-light);
  margin: 2rem 0;
  max-width: 500px;
  line-height: 1.7;
}

/* Enhanced Buttons */
.linkstead-hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.linkstead-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.linkstead-btn-primary {
  background: linear-gradient(135deg, var(--linkstead-primary), var(--linkstead-secondary));
  color: white;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.linkstead-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

.linkstead-btn-secondary {
  background: white;
  color: var(--linkstead-text);
  border: 2px solid var(--linkstead-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.linkstead-btn-secondary:hover {
  border-color: var(--linkstead-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.linkstead-btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.linkstead-btn:hover .linkstead-btn-icon {
  transform: translateX(2px);
}

.linkstead-navigation-grid {
  display: grid;
  gap: 1.5rem;
  max-height: 85vh;
  overflow-y: auto;
  padding-right: 0.5rem;
  padding-top: 2.5rem;
}

.linkstead-navigation-grid::-webkit-scrollbar {
  width: 6px;
}

.linkstead-navigation-grid::-webkit-scrollbar-track {
  background: var(--linkstead-surface);
  border-radius: 3px;
}

.linkstead-navigation-grid::-webkit-scrollbar-thumb {
  background: var(--linkstead-border);
  border-radius: 3px;
}

.linkstead-navigation-grid::-webkit-scrollbar-thumb:hover {
  background: var(--linkstead-text-light);
}

/* Navigation Card */
.linkstead-nav-card {
  background: white;
  border: 2px solid var(--linkstead-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.linkstead-nav-card:hover {
  border-color: var(--linkstead-primary);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.1);
  transform: translateY(-2px);
}

.linkstead-nav-card.linkstead-expanded {
  border-color: var(--linkstead-primary);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.15);
}

/* Card Header */
.linkstead-card-header {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease;
}

.linkstead-nav-card:hover .linkstead-card-header {
  background-color: var(--linkstead-hover);
}

.linkstead-nav-card.linkstead-expanded .linkstead-card-header {
  background-color: var(--linkstead-hover);
  border-bottom: 1px solid var(--linkstead-border);
}

.linkstead-card-main-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.linkstead-card-icon {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

.linkstead-card-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: var(--linkstead-text);
}

.linkstead-card-info p {
  font-size: 0.875rem;
  color: var(--linkstead-text-light);
  margin: 0;
}

.linkstead-card-description {
  font-size: 0.95rem;
  color: var(--linkstead-text-light);
  margin-top: 0.5rem;
  max-width: 400px;
}

.linkstead-expand-icon {
  color: var(--linkstead-text-light);
  transition: transform 0.3s ease;
}

.linkstead-nav-card.linkstead-expanded .linkstead-expand-icon {
  transform: rotate(180deg);
}

/* Card Content (Expandable) - Fixed transition */
.linkstead-card-content {
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
}

.linkstead-nav-card.linkstead-expanded .linkstead-card-content {
  max-height: 800px; /* Set a reasonable max height */
}

.linkstead-subcards {
  padding: 0.5rem 1.5rem 1.5rem;
}

/* Sub Cards */
.linkstead-subcard {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  margin: 0.5rem 0;
  background: var(--linkstead-surface);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.linkstead-subcard:hover {
  background: white;
  border-color: var(--linkstead-border);
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.linkstead-subcard-icon {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}

.linkstead-subcard-content {
  flex: 1;
}

.linkstead-subcard-content h4 {
  margin: 0 0 0.25rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--linkstead-text);
}

.linkstead-subcard-content p {
  margin: 0;
  font-size: 0.825rem;
  color: var(--linkstead-text-light);
}

.linkstead-subcard-arrow {
  color: var(--linkstead-text-light);
  transition: transform 0.3s ease;
}

.linkstead-subcard:hover .linkstead-subcard-arrow {
  transform: translateX(2px);
  color: var(--linkstead-primary);
}

/* Nested Sub Cards */
.linkstead-nested-subcards {
  margin-left: 1.5rem;
  margin-top: 0.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--linkstead-border);
  /* Added smooth transition for nested cards */
  opacity: 0;
  transform: translateY(-10px);
  animation: slideInFade 0.3s ease-out 0.2s forwards;
}

@keyframes slideInFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.linkstead-nested-subcard {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  margin: 0.25rem 0;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.linkstead-nested-subcard:hover {
  border-color: var(--linkstead-border);
  transform: translateX(2px);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.linkstead-nested-subcard-icon {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}

.linkstead-nested-subcard-content h5 {
  margin: 0 0 0.1rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--linkstead-text);
}

.linkstead-nested-subcard-content p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--linkstead-text-light);
}

.linkstead-nested-subcard-arrow {
  color: var(--linkstead-text-light);
  transition: all 0.3s ease;
}

.linkstead-nested-subcard:hover .linkstead-nested-subcard-arrow {
  transform: translateX(1px);
  color: var(--linkstead-primary);
}

@media (max-height: 1060px) {
  .linkstead-hero{
    padding: 1rem 0;
  }

  .linkstead-navigation-grid{
    max-height: 95vh;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .linkstead-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .linkstead-navigation-grid {
    max-height: none;
    overflow-y: visible;
  }
  
  .linkstead-hero-content {
    text-align: center;
    padding-top: 1rem;
  }
  
  .linkstead-hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .linkstead-hero-actions {
    justify-content: center;
  }
  
  .linkstead-nav-card.linkstead-expanded .linkstead-card-content {
    max-height: none; /* Allow full height on mobile */
  }
}

@media (max-width: 768px) {
  .linkstead-container {
    padding: 0 1rem;
  }
  
  .linkstead-hero {
    padding: 2rem 0;
  }
  
  .linkstead-hero-grid {
    gap: 2rem;
  }
  
  .linkstead-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .linkstead-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .linkstead-navigation-grid {
    gap: 1rem;
  }
  
  .linkstead-card-header {
    padding: 1.25rem;
  }
  
  .linkstead-subcards {
    padding: 0.5rem 1.25rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .linkstead-container {
    padding: 0 1rem;
  }
  
  .linkstead-hero-title {
    font-size: 2rem;
  }
  
  .linkstead-hero-description {
    font-size: 1rem;
  }
}/* LinkStead Professional Light Theme Intro Styles */
.linkstead-intro-wrapper {
    position: fixed;
    inset: 0;
    z-index: 10000;
    cursor: pointer;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

/* Professional Light Background System */
.intro-bg-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.intro-bg-gradient {
    position: absolute;
    inset: 0;
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.7;
}

.intro-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(239, 126, 26, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(113, 113, 111, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(239, 126, 26, 0.03) 0%, transparent 50%);
}

/* Modern Corporate Grid Pattern */
.intro-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(239, 126, 26, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 126, 26, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: introGridMove 20s ease-in-out infinite;
}

/* Professional Floating Elements */
.intro-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.intro-floating-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(239, 126, 26, 0.6);
    border-radius: 50%;
    animation: introFloatProfessional 8s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(239, 126, 26, 0.4);
}

.intro-floating-dot:nth-child(odd) {
    background: rgba(113, 113, 111, 0.5);
    box-shadow: 0 0 10px rgba(113, 113, 111, 0.3);
    animation-direction: reverse;
}

/* Modern Light Geometric Shapes */
.intro-geometric-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.intro-shape {
    position: absolute;
    border: 2px solid rgba(239, 126, 26, 0.15);
}

.intro-shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(239, 126, 26, 0.05) 0%, transparent 70%);
    animation: introShapeRotateSlow 30s linear infinite;
    border: 2px solid rgba(239, 126, 26, 0.12);
}

.intro-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -5%;
    left: -5%;
    background: linear-gradient(45deg, rgba(113, 113, 111, 0.06) 0%, transparent 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: introShapeFloat 25s ease-in-out infinite;
    border: 1px solid rgba(113, 113, 111, 0.1);
}

.intro-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    background: rgba(239, 126, 26, 0.04);
    border-radius: 15px;
    transform: rotate(45deg);
    animation: introShapePulseProfessional 15s ease-in-out infinite;
    border: 2px solid rgba(239, 126, 26, 0.1);
    box-shadow: 0 8px 32px rgba(239, 126, 26, 0.1);
}

/* Professional Light Content Container */
.intro-content-container {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #1e293b;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.intro-content-container.intro-content-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Professional Light Logo Section */
.intro-logo-section {
    margin-bottom: 4rem;
    animation: introLogoEntranceProfessional 1.8s ease-out;
}

.intro-logo-container {
    position: relative;
    display: inline-block;
    padding: 2rem;
}

.intro-logo-bg {
    position: absolute;
    inset: -30px;
    background:
        radial-gradient(circle, rgba(239, 126, 26, 0.12) 0%, transparent 60%),
        radial-gradient(circle, rgba(113, 113, 111, 0.08) 20%, transparent 80%);
    border-radius: 50%;
    animation: introLogoPulseProfessional 4s ease-in-out infinite;
}

.intro-logo-border {
    position: absolute;
    inset: -25px;
    border: 3px solid transparent;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(239, 126, 26, 0.4), rgba(113, 113, 111, 0.3)) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: introLogoBorderRotate 20s linear infinite;
}

.intro-main-logo {
    width: 320px;
    height: auto;
    position: relative;
    z-index: 2;
}

/* Professional Light Slides Container */
.intro-slides-container {
    margin-bottom: 3rem;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.intro-slide {
    max-width: 700px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

.intro-slide.intro-slide-animating {
    opacity: 0;
    transform: translateY(40px) rotateX(15deg);
}

.intro-slide-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg,
            #1e293b 0%,
            #ef7e1a 30%,
            #334155 60%,
            #71716f 90%);
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* animation: introTextFlow 4s ease-in-out infinite; */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.intro-slide-description {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #475569;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Professional Light Progress Indicators */
.intro-progress-container {
    margin-bottom: 3rem;
}

.intro-progress-dots {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.intro-progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(113, 113, 111, 0.3);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 2px solid rgba(113, 113, 111, 0.1);
}

.intro-progress-dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(239, 126, 26, 0.2), rgba(113, 113, 111, 0.15));
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(239, 126, 26, 0.1);
}

.intro-progress-dot.active {
    background: linear-gradient(135deg, #ef7e1a, #f59e0b);
    transform: scale(1.4);
    border: 2px solid rgba(239, 126, 26, 0.3);
    box-shadow:
        0 0 20px rgba(239, 126, 26, 0.4),
        0 0 40px rgba(239, 126, 26, 0.15),
        0 4px 12px rgba(239, 126, 26, 0.2);
}

.intro-progress-dot.active::before {
    opacity: 1;
    transform: scale(1.5);
}

/* Professional Light Call to Action */
.intro-cta-section {
    margin-bottom: 2rem;
}

.intro-skip-text {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
    letter-spacing: 0.5px;
    animation: introTextGlow 3s ease-in-out infinite;
}

/* Professional Light Animations */
@keyframes introLogoEntranceProfessional {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-50px);
        filter: blur(10px);
    }

    60% {
        opacity: 0.8;
        transform: scale(1.05) translateY(0);
        filter: blur(2px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

@keyframes introLogoPulseProfessional {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.08);
    }
}

@keyframes introLogoBorderRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes introTextFlow {
    0% {
        background-position: -300% center;
    }

    100% {
        background-position: 300% center;
    }
}

@keyframes introTextGlow {

    0%,
    100% {
        opacity: 0.8;
        color: #64748b;
    }

    50% {
        opacity: 1;
        color: #ef7e1a;
    }
}

@keyframes introLoadingFlow {
    0% {
        transform: translateX(-150%);
    }

    100% {
        transform: translateX(350%);
    }
}

@keyframes introFloatProfessional {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.5;
    }

    25% {
        transform: translateY(-15px) translateX(5px);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-25px) translateX(-3px);
        opacity: 1;
    }

    75% {
        transform: translateY(-10px) translateX(8px);
        opacity: 0.7;
    }
}

@keyframes introGridMove {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-25px, -25px);
    }
}

@keyframes introShapeRotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes introShapeFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-40px) rotate(180deg);
    }
}

@keyframes introShapePulseProfessional {

    0%,
    100% {
        opacity: 0.3;
        transform: rotate(45deg) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: rotate(45deg) scale(1.15);
    }
}

/* Professional Light Responsive Design */
@media (max-width: 1024px) {
    .intro-main-logo {
        width: 280px;
    }

    .intro-slide-title {
        font-size: clamp(2.4rem, 6vw, 4rem);
    }
}

@media (max-width: 768px) {
    .intro-content-container {
        padding: 1.5rem;
    }

    .intro-main-logo {
        width: 240px;
    }

    .intro-logo-section {
        margin-bottom: 3rem;
    }

    .intro-slides-container {
        min-height: 220px;
        margin-bottom: 2rem;
    }

    .intro-slide-title {
        margin-bottom: 1.2rem;
        font-size: clamp(2rem, 5vw, 3.2rem);
    }

    .intro-slide-description {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }

    /* Optimize shapes for mobile */
    .intro-shape-1 {
        width: 200px;
        height: 200px;
    }

    .intro-shape-2 {
        width: 120px;
        height: 120px;
    }

    .intro-shape-3 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .intro-main-logo {
        width: 200px;
    }

    .intro-logo-section {
        margin-bottom: 2.5rem;
    }

    .intro-slides-container {
        min-height: 180px;
        margin-bottom: 1.5rem;
    }

    .intro-progress-container {
        margin-bottom: 2rem;
    }

    .intro-floating-dot:nth-child(n+15) {
        display: none;
    }
}

@media (max-height: 700px) {
    .intro-logo-section {
        margin-bottom: 2rem;
    }

    .intro-main-logo {
        width: 220px;
    }

    .intro-slides-container {
        min-height: 160px;
        margin-bottom: 1.5rem;
    }

    .intro-progress-container {
        margin-bottom: 2rem;
    }
}

@media (max-height: 600px) {
    .intro-content-container {
        padding: 1rem;
    }

    .intro-logo-section {
        margin-bottom: 1.5rem;
    }

    .intro-main-logo {
        width: 180px;
    }

    .intro-slides-container {
        min-height: 120px;
        margin-bottom: 1rem;
    }

    .intro-slide-title {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        margin-bottom: 0.8rem;
    }

    .intro-slide-description {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }
}/* Compact Professional Footer Styles */
.footer-wrapper {
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 0 0 0;
    border-top: 1px solid #333;
}

/* Container */
.footer-container {
    width: 100%;
    /* max-width: 1200px; */
}

/* Footer Content */
.footer-content {
    margin: 0 auto 1rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: start;
}

/* Brand Section */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-logo-container {
    display: none;
    max-width: 150px;
}

.footer-logo {
    max-height: 50px;
    width: auto;
}

.brand-tagline {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #b0b0b0;
    margin: 0;
    max-width: 350px;
}

/* Social Media */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.social-link:hover {
    background: #444;
}

/* Contact Section */
.footer-contact-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #ef7e1a;
    border-radius: 4px;
    color: white;
    font-size: 12px;
}

.footer-contact-info {
    display: flex;
    gap: 3rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #2a2a2a;
    border-radius: 6px;
    flex-shrink: 0;
}

.footer-contact-icon {
    color: #ef7e1a;
    font-size: 14px;
}

.contact-content {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.contact-address {
    font-style: normal;
    line-height: 1.4;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.contact-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #ef7e1a;
}

/* Footer Bottom */
.footer-bottom {
    margin: 0 auto;
    padding: 0.5rem 2rem;
    border-top: 1px solid #333;
    background: #0f0f0f;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-copyright i {
    color: #ef7e1a;
    font-size: 0.8rem;
}

.footer-bottom-center {
    display: flex;
    justify-content: center;
}

.footer-policies {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.policy-link {
    font-size: 0.85rem;
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.policy-link:hover {
    color: #ef7e1a;
}

.policy-separator {
    color: #555;
    font-size: 0.8rem;
}

.footer-bottom-right {
    display: flex;
    justify-content: flex-end;
}

.made-with-love {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.made-with-love i {
    color: #e74c3c;
    font-size: 0.8rem;
}

/* WhatsApp Float - Simplified */
.whatsapp-float-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.footer-whatsapp-float {
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.footer-whatsapp-float:hover {
    transform: scale(1.05);
}

.whatsapp-icon i {
    font-size: 22px;
    color: white;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    /* .footer-wrapper {
        padding: 1.5rem 0 1rem 0;
    } */

    /* .footer-container {
        padding: 0 1rem;
    } */

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        margin: auto;
        align-items: center;
    }

    .footer-contact-info {
        flex-direction: column;
        margin-bottom: 1rem;
        align-items: start;
    }

    .footer-title {
        justify-content: start;
    }

    .footer-brand {
        align-items: center;
    }

    .brand-tagline {
        text-align: center;
        max-width: none;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact-item {
        text-align: left;
    }

    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        justify-content: center;
    }

    .footer-policies {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }
}

@media screen and (max-width: 480px) {
    /* .footer-container {
        padding: 0 1rem;
    } */

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .footer-policies {
        flex-direction: column;
        gap: 0.75rem;
    }

    .policy-separator {
        display: none;
    }

    .footer-contact-info {
        /* margin: auto; */
        align-items: center;
    }

    .footer-title {
        justify-content: center;
    }

    .footer-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-icon-wrapper {
        align-self: center;
    }

    .whatsapp-float-container {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .footer-whatsapp-float {
        width: 45px;
        height: 45px;
    }

    .whatsapp-icon i {
        font-size: 20px;
    }
}

/* Animation cleanup for professional look */
.footer-section {
    opacity: 1;
    transform: none;
}.app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    min-height: 100vh;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-content {
        margin-left: 0;
    }
}/* Enhanced Loading Component - Light Theme with Orange Accents */
.com-loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fefefe;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.com-loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Modern Spinner */
.com-loading-spinner-container {
    position: relative;
    margin-bottom: 2rem;
    animation: com-loading-fade-in 0.6s ease-out;
}

.com-loading-spinner {
    width: 48px;
    height: 48px;
    position: relative;
}

.com-loading-spinner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #f1f5f9;
    border-top: 3px solid #ff8c42;
    border-radius: 50%;
    animation: com-loading-rotate 1s linear infinite;
}

.com-loading-spinner::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 2px solid transparent;
    border-top: 2px solid #ff9f5c;
    border-radius: 50%;
    animation: com-loading-rotate-reverse 0.8s linear infinite;
}

/* Text Content */
.com-loading-text {
    margin-bottom: 1.5rem;
}

.com-loading-title {
    color: #2d3748;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.025em;
    animation: com-loading-fade-in 0.6s ease-out 0.2s both;
}

.com-loading-subtitle {
    color: #4a5568;
    font-size: 0.875rem;
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
    animation: com-loading-fade-in 0.6s ease-out 0.4s both;
}

/* Progress Indicator */
.com-loading-progress {
    width: 200px;
    height: 2px;
    background: #e2e8f0;
    border-radius: 1px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    animation: com-loading-fade-in 0.6s ease-out 0.6s both;
}

.com-loading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff8c42, #ff7629, #ff8c42);
    background-size: 200% 100%;
    border-radius: 1px;
    animation: com-loading-progress-slide 2s ease-in-out infinite;
}

/* Status Dots */
.com-loading-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: com-loading-fade-in 0.6s ease-out 0.8s both;
}

.com-loading-status-text {
    color: #2d3748;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.com-loading-dots {
    display: flex;
    gap: 4px;
    margin-left: 0.5rem;
}

.com-loading-dot {
    width: 4px;
    height: 4px;
    background: #ff8c42;
    border-radius: 50%;
    animation: com-loading-dot-pulse 1.4s ease-in-out infinite;
}

.com-loading-dot:nth-child(1) {
    animation-delay: 0s;
}

.com-loading-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.com-loading-dot:nth-child(3) {
    animation-delay: 0.4s;
}

/* Alternative Minimal Spinner Variant */
.com-loading-spinner-minimal {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-top: 2px solid #ff8c42;
    border-radius: 50%;
    animation: com-loading-rotate 1s linear infinite;
}

/* Keyframe Animations */
@keyframes com-loading-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes com-loading-rotate-reverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes com-loading-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes com-loading-progress-slide {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes com-loading-dot-pulse {

    0%,
    60%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    30% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Light theme override for dark mode users */
@media (prefers-color-scheme: dark) {
    .com-loading-container {
        background: #fefefe;
    }

    .com-loading-title {
        color: #2d3748;
    }

    .com-loading-subtitle {
        color: #4a5568;
    }

    .com-loading-status-text {
        color: #2d3748;
    }

    .com-loading-spinner::before {
        border-color: #f1f5f9;
        border-top-color: #ff8c42;
    }

    .com-loading-spinner::after {
        border-top-color: #ff9f5c;
    }

    .com-loading-progress {
        background: #e2e8f0;
    }

    .com-loading-dot {
        background: #ff8c42;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .com-loading-title {
        font-size: 1.375rem;
    }

    .com-loading-subtitle {
        font-size: 0.9375rem;
        padding: 0 1rem;
    }

    .com-loading-progress {
        width: 200px;
    }

    .com-loading-spinner {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .com-loading-title {
        font-size: 1.25rem;
    }

    .com-loading-subtitle {
        font-size: 0.875rem;
    }

    .com-loading-progress {
        width: 180px;
    }

    .com-loading-spinner {
        width: 52px;
        height: 52px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    .com-loading-spinner::before,
    .com-loading-spinner::after,
    .com-loading-progress-bar,
    .com-loading-dot {
        animation-duration: 2s;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .com-loading-spinner::before {
        border-top-color: #ff8c42;
    }

    .com-loading-title {
        color: #1a202c;
    }

    .com-loading-progress-bar {
        background: #ff8c42;
    }

    .com-loading-dot {
        background: #ff8c42;
    }
}/* Legal Page Unified Styles */
.legal-container {
  min-height: calc(100vh - 65px);
  background-color: #f8f9fa;
  padding: 2rem 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #545454;
}

.legal-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  padding: 0 2rem;
}

.legal-sidebar {
  position: sticky;
  top: 85px;
  height: fit-content;
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #ef7e1a;
  z-index: 10;
}

.legal-toc-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: #ef7e1a;
}

.legal-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-toc-list li {
  margin-bottom: 0.5rem;
}

.legal-toc-list a {
  display: block;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  color: #545454;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.legal-toc-list a:hover,
.legal-toc-list a.legal-active {
  background-color: #ef7e1a;
  color: white;
}

/* Main Content Styles */
.legal-main-content {
  background: white;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  min-width: 0;
}

.legal-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #ef7e1a;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #ef7e1a;
  line-height: 1.2;
}

.legal-dates {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.legal-effective-date,
.legal-last-updated {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin: 0;
}

.legal-intro,
.legal-acknowledgment {
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
  color: #545454;
}

/* Section Styles */
.legal-section {
  margin-bottom: 2.5rem;
  scroll-margin-top: 95px;
}

.legal-section-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: #ef7e1a;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e9ecef;
  line-height: 1.3;
}

.legal-subsection-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
  color: #545454;
}

.legal-content-text {
  margin: 0 0 1rem 0;
  color: #545454;
  font-size: 1rem;
}

/* List Styles */
.legal-content-list {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.legal-content-list li {
  margin-bottom: 0.75rem;
  color: #545454;
}

.legal-content-list li strong {
  color: #ef7e1a;
}

/* Grid Layouts */
.legal-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
  margin: 1.5rem 0;
}

.legal-browser-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(0.75rem, 2.5vw, 1rem);
  margin: 1.5rem 0;
}

/* Cards */
.legal-type-card,
.legal-browser-item {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: clamp(1rem, 3vw, 1.5rem);
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}

.legal-type-title,
.legal-browser-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  color: #ef7e1a;
}

.legal-type-description {
  margin: 0 0 1rem 0;
  color: #545454;
  font-size: 0.95rem;
}

.legal-type-status {
  position: static;
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.legal-required {
  background-color: #ef7e1a;
  color: white;
}

.legal-optional {
  background-color: #e9ecef;
  color: #545454;
}

/* Tables */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  font-size: 1rem;
}

.legal-table th {
  background-color: #ef7e1a;
  color: white;
  font-weight: 600;
  padding: 1rem;
  text-align: left;
  font-size: 0.95rem;
}

.legal-table td {
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  vertical-align: top;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

/* Badges */
.legal-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.legal-necessary {
  background-color: #ef7e1a;
  color: white;
}

.legal-analytics {
  background-color: #007bff;
  color: white;
}

.legal-functional {
  background-color: #28a745;
  color: white;
}

.legal-marketing {
  background-color: #6f42c1;
  color: white;
}

/* Special Boxes */
.legal-note,
.legal-important-note,
.legal-disclaimer-box,
.legal-liability-box {
  background-color: #fff3e0;
  border: 1px solid #ef7e1a;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}

.legal-note h4,
.legal-important-note h4 {
  margin: 0 0 0.75rem 0;
  color: #ef7e1a;
  font-size: 1.1rem;
}

.legal-note p,
.legal-important-note p {
  margin: 0;
  color: #545454;
}

/* Contact Info */
.legal-contact-info {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}

.legal-contact-info h3 {
  margin: 0 0 1rem 0;
  color: #ef7e1a;
  font-size: 1.3rem;
}

.legal-contact-info address {
  font-style: normal;
  margin-bottom: 1rem;
  color: #545454;
}

.legal-contact-info p {
  margin: 0.5rem 0;
  color: #545454;
}

.legal-response-time {
  font-style: italic;
  color: #666;
  margin-top: 1rem;
}

/* Links */
.legal-content-text a,
.legal-email-link,
.legal-phone-link,
.legal-browser-link {
  color: #ef7e1a;
  text-decoration: none;
  font-weight: 500;
}

.legal-email-link:hover,
.legal-phone-link:hover,
.legal-browser-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .legal-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .legal-sidebar {
    position: static;
    order: 1;
  }

  .legal-main-content {
    padding: 1.5rem;
    order: 2;
  }

  .legal-title {
    font-size: 2rem;
  }

  .legal-section-title {
    font-size: 1.5rem;
  }

  .legal-dates {
    flex-direction: column;
    gap: 0.5rem;
  }

  .legal-types-grid,
  .legal-browser-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .legal-container {
    padding: 1rem 0;
  }

  .legal-main-content {
    padding: 1rem;
  }

  .legal-title {
    font-size: 1.8rem;
  }

  .legal-section-title {
    font-size: 1.3rem;
  }

  .legal-table {
    font-size: 0.8rem;
  }

  .legal-table th,
  .legal-table td {
    padding: 0.75rem;
  }

  .legal-disclaimer-box,
  .legal-liability-box {
    padding: 1rem;
  }
}