* {
  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;
  overflow-x: hidden;
}

/* Main Hero Layout */
.linkstead-hero {
  min-height: calc(100vh - 65px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  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;
  display: flex;
  justify-content: center;
}

/* Hero Content — centered single column */
.linkstead-hero-content {
  text-align: center;
  max-width: 760px;
  width: 100%;
}

.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 auto;
  max-width: 560px;
  line-height: 1.7;
}

/* Enhanced Buttons */
.linkstead-hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Credentials strip inside hero ── */
.linkstead-hero-credentials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.linkstead-cred-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-shrink: 0;
}

.linkstead-cred-count {
  font-size: 2rem;
  font-weight: 800;
  color: var(--linkstead-primary);
  line-height: 1;
}

.linkstead-cred-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--linkstead-text);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  white-space: nowrap;
  line-height: 1.3;
}

.linkstead-cred-divider {
  width: 1px;
  height: 32px;
  background: rgba(249, 115, 22, 0.3);
  flex-shrink: 0;
}

.linkstead-cred-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.linkstead-cred-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border: 1.5px solid var(--linkstead-primary);
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--linkstead-primary);
  background: rgba(249, 115, 22, 0.05);
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.linkstead-cred-badge:hover {
  background: rgba(249, 115, 22, 0.12);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .linkstead-hero-credentials {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }

  .linkstead-cred-divider {
    display: none;
  }

  .linkstead-cred-count {
    font-size: 1.75rem;
  }
}

.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;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .linkstead-container {
    padding: 0 2rem;
  }
}

@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;
  }
}

/* ==================== HOME COPY CSS (appended) ==================== */
/* ==================== CSS CUSTOM PROPERTIES (GLOBAL VARIABLES) ==================== */
:root {
  /* Orange Color Palette */
  --home-primary-orange: #ef7e1a;
  --home-primary-orange-light: #f17d17;
  --home-primary-orange-lighter: #f2790f;
  --home-primary-orange-dark: #eb8022;
  --home-primary-orange-darker: #d56e14;
  --home-primary-orange-darkest: #e4720e;

  /* Grey Color Palette */
  --home-primary-grey: #545454;
  --home-grey-50: #f8fafc;
  --home-grey-100: #f1f5f9;
  --home-grey-200: #e2e8f0;
  --home-grey-300: #cbd5e1;
  --home-grey-400: #94a3b8;
  --home-grey-500: #64748b;
  --home-grey-600: #475569;
  --home-grey-700: #334155;
  --home-grey-800: #1e293b;
  --home-grey-900: #0f172a;

  /* Neutral Colors */
  --home-black: #1a1a1a;
  --home-white: #ffffff;
  --home-text-primary: var(--home-black);
  --home-text-secondary: var(--home-primary-grey);
  --home-text-muted: var(--home-primary-grey);

  /* Background Colors */
  --home-bg-primary: var(--home-white);
  --home-bg-secondary: var(--home-grey-50);
  --home-bg-tertiary: var(--home-grey-100);

  /* Border Colors */
  --home-border-light: rgba(113, 113, 111, 0.1);
  --home-border-medium: rgba(113, 113, 111, 0.2);
  --home-border-primary: var(--home-primary-orange);

  /* Shadow Colors */
  --home-shadow-light: rgba(113, 113, 111, 0.05);
  --home-shadow-medium: rgba(113, 113, 111, 0.12);
  --home-shadow-heavy: rgba(113, 113, 111, 0.18);

  /* Gradient Colors */
  --home-gradient-orange: linear-gradient(90deg, var(--home-primary-orange-dark), var(--home-primary-orange-light));
  --home-gradient-orange-hover: linear-gradient(90deg, var(--home-primary-orange-dark), var(--home-primary-orange-lighter));
  --home-gradient-orange-cta: linear-gradient(135deg, var(--home-primary-orange-dark), var(--home-primary-orange-light));
  --home-gradient-orange-cta-hover: linear-gradient(135deg, var(--home-primary-orange-dark), var(--home-primary-orange-darker));
  --home-gradient-bg-primary: linear-gradient(135deg, var(--home-grey-50) 0%, var(--home-grey-100) 100%);
  --home-gradient-bg-secondary: linear-gradient(135deg, var(--home-bg-secondary) 0%, var(--home-bg-tertiary) 100%);

  /* Overlay Colors */
  --home-overlay-light: rgba(113, 113, 111, 0.02);
  --home-overlay-medium: rgba(113, 113, 111, 0.05);
  --home-overlay-heavy: rgba(113, 113, 111, 0.08);
}

/* ==================== GLOBAL STYLES ==================== */
.home-container {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--home-text-primary);
  background-color: var(--home-bg-primary);
  overflow-x: hidden;
}

.home-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.home-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--home-text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.home-section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--home-primary-orange);
  margin-bottom: 0.75rem;
  display: block;
}

.home-section-sub {
  font-size: 1.05rem;
  color: var(--home-text-secondary);
  line-height: 1.7;
  max-width: 620px;
}

.home-section-center-header {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-section-header-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.home-orange-line {
  display: inline-block;
  width: 48px;
  height: 4px;
  background: var(--home-gradient-orange);
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* ==================== BUTTONS ==================== */
.home-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--home-gradient-orange-cta);
  color: var(--home-white);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(239, 126, 26, 0.3);
  font-family: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.home-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.home-btn-primary:hover::before {
  left: 100%;
}

.home-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(239, 126, 26, 0.4);
  background: var(--home-gradient-orange-cta-hover);
}

.home-btn-primary:active {
  transform: translateY(0);
}

.home-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--home-text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--home-border-medium);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  text-decoration: none;
}

.home-btn-secondary:hover {
  border-color: var(--home-primary-orange);
  color: var(--home-primary-orange);
  transform: translateY(-2px);
}

.home-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--home-white);
  color: var(--home-black);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.home-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.25);
}

.home-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--home-white);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.home-btn-outline-white:hover {
  border-color: var(--home-white);
  transform: translateY(-2px);
}

/* ==================== HERO SECTION ==================== */
.home-hero-section {
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  background: var(--home-gradient-bg-primary);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.home-hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 126, 26, 0.08) 0%, transparent 65%);
  animation: home-float-bg 18s ease-in-out infinite;
  pointer-events: none;
}

.home-hero-section::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 126, 26, 0.05) 0%, transparent 65%);
  animation: home-float-bg 24s ease-in-out infinite reverse;
  pointer-events: none;
}

.home-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 126, 26, 0.1);
  border: 1px solid rgba(239, 126, 26, 0.25);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--home-primary-orange);
  margin-bottom: 1.5rem;
}

.home-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--home-primary-orange);
  animation: home-pulse 2s infinite;
}

.home-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--home-text-primary);
}

.home-hero-title-highlight {
  background: var(--home-gradient-orange-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero-sub {
  font-size: 1.1rem;
  color: var(--home-text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.home-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.home-hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--home-grey-500);
  font-weight: 500;
}

.home-hero-trust-icon {
  width: 14px;
  height: 14px;
  color: var(--home-primary-orange);
  flex-shrink: 0;
}

/* Dashboard Visual */
.home-hero-visual {
  position: relative;
}

.home-dashboard {
  background: var(--home-white);
  border-radius: 16px;
  border: 1px solid var(--home-border-light);
  box-shadow: 0 24px 80px var(--home-shadow-heavy);
  overflow: hidden;
}

.home-dash-header {
  background: linear-gradient(135deg, var(--home-grey-900), var(--home-grey-800));
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-dash-dots {
  display: flex;
  gap: 5px;
}

.home-dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.home-dash-title {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.home-dash-body {
  padding: 1.25rem;
  background: var(--home-grey-50);
}

.home-dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.home-dash-metric {
  background: var(--home-white);
  border-radius: 10px;
  padding: 0.85rem;
  border: 1px solid var(--home-border-light);
}

.home-dash-metric-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--home-text-primary);
}

.home-dash-metric-lbl {
  font-size: 0.68rem;
  color: var(--home-grey-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.home-dash-metric-chg {
  font-size: 0.7rem;
  font-weight: 600;
  color: #16a34a;
  margin-top: 4px;
}

.home-dash-chart-bar-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  margin-bottom: 0.75rem;
  padding: 0 0.25rem;
}

.home-dash-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--home-grey-200);
  transition: height 0.3s ease;
}

.home-dash-bar.active {
  background: var(--home-gradient-orange-cta);
}

.home-dash-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.home-dash-mod {
  background: var(--home-white);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--home-border-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--home-grey-700);
}

.home-dash-mod-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-primary-orange);
  flex-shrink: 0;
}

/* Floating Cards */
.home-float-card {
  position: absolute;
  background: var(--home-white);
  border-radius: 12px;
  border: 1px solid var(--home-border-light);
  box-shadow: 0 8px 32px var(--home-shadow-medium);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.home-float-card-1 {
  top: -15px;
  right: -20px;
  animation: home-float-card 4s ease-in-out infinite;
}

.home-float-card-2 {
  bottom: -15px;
  left: -20px;
  animation: home-float-card 4s ease-in-out infinite;
  animation-delay: 2s;
}

.home-float-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--home-gradient-orange-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-float-icon svg {
  width: 16px;
  height: 16px;
  color: var(--home-white);
}

.home-float-val {
  font-weight: 700;
  color: var(--home-text-primary);
  font-size: 0.95rem;
}

.home-float-lbl {
  color: var(--home-text-muted);
  font-size: 0.72rem;
}

/* ==================== TRUST BAR ==================== */
.home-trust-bar {
  background: var(--home-black);
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.home-trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.home-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.home-trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--home-primary-orange);
  flex-shrink: 0;
}

/* ==================== SOLUTIONS SECTION ==================== */
.home-solutions-section {
  padding: 3rem 0;
  background: var(--home-bg-primary);
}

.home-solutions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.home-solutions-header-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.home-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.home-sol-card {
  background: var(--home-bg-secondary);
  border: 1px solid var(--home-border-light);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.home-sol-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--home-gradient-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.home-sol-card:hover::before {
  transform: scaleX(1);
}

.home-sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--home-shadow-medium);
  background: var(--home-white);
  border-color: var(--home-border-medium);
}

.home-sol-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(239, 126, 26, 0.12), rgba(239, 126, 26, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--home-primary-orange);
}

.home-sol-icon svg {
  width: 24px;
  height: 24px;
}

.home-sol-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--home-text-primary);
  margin-bottom: 0.5rem;
}

.home-sol-desc {
  font-size: 0.88rem;
  color: var(--home-text-muted);
  line-height: 1.65;
}

.home-sol-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.home-sol-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--home-primary-orange);
  background: rgba(239, 126, 26, 0.08);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
}

/* ==================== OUTCOMES SECTION ==================== */
.home-outcomes-section {
  padding: 3rem 0;
  background: var(--home-gradient-bg-primary);
}

.home-outcomes-header {
  text-align: center;
  margin-bottom: 3rem;
}

.home-outcomes-header .home-orange-line {
  display: block;
  margin: 0 auto 0.75rem;
}

.home-outcomes-header .home-section-sub {
  margin: 0 auto;
  text-align: center;
}

.home-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.home-outcome-card {
  background: var(--home-white);
  border: 1px solid var(--home-border-light);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* About-style horizontal shimmer on hover */
.home-outcome-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(113, 113, 111, 0.05), transparent);
  transition: left 0.6s ease;
}

.home-outcome-card:hover::before {
  left: 100%;
}

.home-outcome-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--home-shadow-medium);
  border-color: var(--home-border-medium);
}

.home-outcome-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(239, 126, 26, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
  color: var(--home-primary-orange);
}

.home-outcome-icon svg {
  width: 24px;
  height: 24px;
}

.home-outcome-card:hover .home-outcome-icon {
  background: var(--home-gradient-orange-cta);
  color: var(--home-white);
}

.home-outcome-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--home-text-primary);
  margin-bottom: 0.4rem;
}

.home-outcome-desc {
  font-size: 0.8rem;
  color: var(--home-text-muted);
  line-height: 1.55;
}

/* ==================== INDUSTRIES SECTION ==================== */
.home-industries-section {
  padding: 3rem 0;
  background: var(--home-bg-primary);
}

.home-industries-header {
  text-align: center;
  margin-bottom: 3rem;
}

.home-industries-header .home-orange-line {
  display: block;
  margin: 0 auto 0.75rem;
}

.home-industries-header .home-section-sub {
  margin: 0 auto;
}

.home-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.5rem;
}

.home-ind-card {
  perspective: 1000px;
  cursor: pointer;
  border-radius: 14px;
}

.home-ind-card-inner {
  display: grid;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  border-radius: 14px;
}

.home-ind-card:hover .home-ind-card-inner,
.home-ind-card:focus-within .home-ind-card-inner {
  transform: rotateY(180deg);
}

.home-ind-card-front,
.home-ind-card-back {
  grid-area: 1 / 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 14px;
  border: 1px solid var(--home-border-light);
  overflow: hidden;
}

.home-ind-card-front {
  background: var(--home-bg-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  position: relative;
}

.home-ind-card-front::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(113, 113, 111, 0.05), transparent);
  transition: top 0.6s ease;
}

.home-ind-card:hover .home-ind-card-front::before {
  top: 100%;
}

.home-ind-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 1.25rem;
  display: block;
  transition: transform 0.3s ease;
}

.home-ind-card:hover .home-ind-icon {
  transform: scale(1.1);
}

.home-ind-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--home-text-primary);
  margin-bottom: 0;
}

.home-ind-card-back {
  background: var(--home-white);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  text-align: left;
  border-color: rgba(239, 126, 26, 0.3);
  box-shadow: 0 12px 32px var(--home-shadow-medium);
}

.home-ind-back-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--home-primary-orange);
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--home-border-light);
  padding-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-ind-back-title::after {
  content: '→';
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.home-ind-card:hover .home-ind-back-title::after {
  transform: translateX(4px);
}

.home-ind-back-section {
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 0.6rem;
  color: var(--home-text-secondary);
}

.home-ind-back-section:last-child {
  margin-bottom: 0;
}

.home-ind-back-section strong {
  color: var(--home-text-primary);
  font-weight: 700;
  display: inline-block;
  margin-right: 0.25rem;
}

/* ==================== ECOSYSTEM SECTION ==================== */
.home-ecosystem-section {
  padding: 3rem 0;
  background: var(--home-gradient-bg-primary);
  position: relative;
  overflow: hidden;
}

.home-ecosystem-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px dashed rgba(239, 126, 26, 0.12);
  pointer-events: none;
}

.home-ecosystem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.home-ecosystem-checks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.home-ecosystem-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--home-text-muted);
}

.home-ecosystem-check svg {
  width: 16px;
  height: 16px;
  color: var(--home-primary-orange);
  flex-shrink: 0;
}

.home-eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.home-eco-card {
  background: var(--home-white);
  border: 1px solid var(--home-border-light);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.home-eco-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(113, 113, 111, 0.05), transparent);
  transition: left 0.6s ease;
}

.home-eco-card:hover::before {
  left: 100%;
}

.home-eco-card:hover {
  border-color: rgba(239, 126, 26, 0.3);
  box-shadow: 0 6px 24px var(--home-shadow-medium);
  transform: translateY(-3px);
}

.home-eco-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
  color: var(--home-white);
}

.home-eco-card-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--home-text-primary);
}

.home-eco-card-desc {
  font-size: 0.7rem;
  color: var(--home-text-muted);
}

/* ==================== AI SECTION ==================== */
.home-ai-section {
  padding: 3rem 0;
  background: var(--home-grey-900);
  position: relative;
  overflow: hidden;
}

.home-ai-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 126, 26, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.home-ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.home-ai-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--home-white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.home-ai-section-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 500px;
}

.home-ai-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.home-ai-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.home-ai-feat:hover {
  background: rgba(239, 126, 26, 0.08);
  border-color: rgba(239, 126, 26, 0.25);
}

.home-ai-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--home-gradient-orange-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-ai-feat-icon svg {
  width: 18px;
  height: 18px;
  color: var(--home-white);
}

.home-ai-feat-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--home-white);
  margin-bottom: 0.25rem;
}

.home-ai-feat-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.home-ai-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.home-ai-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}

.home-ai-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--home-primary-orange);
  display: block;
}

.home-ai-stat-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-top: 4px;
}

.home-ai-copilot-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.home-ai-copilot-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.home-ai-activity-items {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.home-ai-activity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
}

.home-ai-activity-item.active {
  background: rgba(239, 126, 26, 0.1);
  border: 1px solid rgba(239, 126, 26, 0.2);
}

.home-ai-activity-item.done {
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.home-ai-activity-item.pending {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.home-ai-activity-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.home-ai-activity-dot.orange {
  background: var(--home-primary-orange);
  animation: home-pulse 2s infinite;
}

.home-ai-activity-dot.green {
  background: #22c55e;
}

.home-ai-activity-dot.grey {
  background: rgba(255, 255, 255, 0.3);
}

.home-ai-activity-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.home-ai-activity-item.pending .home-ai-activity-text {
  color: rgba(255, 255, 255, 0.4);
}

/* ==================== CASE STUDIES SECTION ==================== */
.home-cases-section {
  padding: 3rem 0;
  background: var(--home-bg-primary);
}

.home-cases-header {
  text-align: center;
  margin-bottom: 3rem;
}

.home-cases-header .home-orange-line {
  display: block;
  margin: 0 auto 0.75rem;
}

.home-cases-header .home-section-sub {
  margin: 0 auto;
}

.home-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.home-case-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--home-border-light);
  transition: all 0.35s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.home-case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--home-shadow-medium);
}

.home-case-header {
  padding: 2rem;
  background: linear-gradient(135deg, var(--home-grey-900), var(--home-grey-800));
  position: relative;
}

.home-case-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(239, 126, 26, 0.15), transparent);
  pointer-events: none;
}

.home-case-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--home-primary-orange);
  background: rgba(239, 126, 26, 0.15);
  border: 1px solid rgba(239, 126, 26, 0.3);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  display: inline-block;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.home-case-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--home-white);
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
}

.home-case-body {
  padding: 1.5rem;
  flex: 1;
  background: var(--home-bg-secondary);
}

.home-case-metric {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--home-primary-orange);
  display: block;
  margin-bottom: 0.25rem;
}

.home-case-impact {
  font-size: 0.82rem;
  color: var(--home-text-muted);
  line-height: 1.6;
}

.home-cases-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ==================== JOURNEY SECTION ==================== */
.home-journey-section {
  padding: 3rem 0;
  background: var(--home-gradient-bg-primary);
}

.home-journey-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.home-journey-header .home-orange-line {
  display: block;
  margin: 0 auto 0.75rem;
}

.home-journey-header .home-section-sub {
  margin: 0 auto;
  text-align: center;
  max-width: 560px;
}

.home-journey-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.home-journey-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--home-gradient-orange);
  z-index: 0;
}

.home-journey-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.75rem;
}

.home-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--home-gradient-orange-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--home-white);
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(239, 126, 26, 0.35);
  border: 4px solid var(--home-white);
}

.home-step-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--home-text-primary);
  margin-bottom: 0.4rem;
}

.home-step-desc {
  font-size: 0.75rem;
  color: var(--home-text-muted);
  line-height: 1.55;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.home-testimonials-section {
  padding: 3rem 0;
  background: var(--home-bg-primary);
}

.home-testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.home-testimonials-header .home-orange-line {
  display: block;
  margin: 0 auto 0.75rem;
}

.home-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.home-testi-card {
  background: var(--home-bg-secondary);
  border: 1px solid var(--home-border-light);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.home-testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--home-shadow-medium);
}

.home-testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.home-testi-quote {
  font-size: 0.9rem;
  color: var(--home-grey-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.home-testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--home-gradient-orange-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--home-white);
  flex-shrink: 0;
}

.home-testi-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--home-text-primary);
}

.home-testi-role {
  font-size: 0.75rem;
  color: var(--home-text-muted);
}

/* ==================== INSIGHTS SECTION ==================== */
.home-insights-section {
  padding: 3rem 0;
  background: var(--home-gradient-bg-primary);
}

.home-insights-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.home-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.home-insight-card {
  background: var(--home-white);
  border: 1px solid var(--home-border-light);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  outline: none;
}

.home-insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--home-shadow-medium);
}

.home-insight-card:focus-visible {
  outline: 2px solid var(--home-primary-orange);
  outline-offset: 3px;
  border-color: var(--home-primary-orange);
}

.home-insight-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.home-insight-image {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  transition: transform 0.4s ease;
}

.home-insight-card:hover .home-insight-image {
  transform: scale(1.05);
}

.home-insight-body {
  padding: 0.5rem 0.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.home-insight-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--home-primary-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.home-insight-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--home-text-primary);
  line-height: 1.5;
  margin: 0;

  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-insight-desc {
  font-size: 0.8rem;
  color: var(--home-text-muted);
  line-height: 1.55;
}

/* ==================== CTA BANNER ==================== */
/* ==================== CTA BANNER (Industry-style) ==================== */
.home-cta-banner {
  padding: 5rem 0;
  background: linear-gradient(90deg, #eb8022, #f17d17);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.home-cta-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.home-cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  color: white;
}

.home-cta-banner-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--home-white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.home-cta-banner-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.home-cta-banner-btns {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.home-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  background: white;
  color: var(--home-primary-orange);
  box-shadow: 0 4px 16px rgba(113, 113, 111, 0.3);
}

.home-cta-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(239, 126, 26, 0.08), transparent);
  transition: left 0.6s ease;
}

.home-cta-btn-primary:hover::before {
  left: 100%;
}

.home-cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(113, 113, 111, 0.4);
}

.home-cta-btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.home-cta-btn-primary:hover .home-cta-btn-icon {
  transform: translateX(4px);
}

.home-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.home-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-2px);
}

.home-cta-choices {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.home-cta-choice {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.home-cta-choice svg {
  width: 15px;
  height: 15px;
  color: white;
  opacity: 0.9;
}

/* ==================== FOOTER ==================== */
.home-footer {
  background: var(--home-black);
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.65);
}

.home-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.home-footer-brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--home-white);
  margin-bottom: 0.75rem;
}

.home-footer-brand-tagline {
  font-size: 0.83rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.home-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.home-footer-badge {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
}

.home-footer-social {
  display: flex;
  gap: 0.75rem;
}

.home-footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.home-footer-social-link:hover {
  background: rgba(239, 126, 26, 0.2);
  color: var(--home-primary-orange);
  border-color: rgba(239, 126, 26, 0.3);
}

.home-footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--home-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}

.home-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.home-footer-link {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.25s ease;
  cursor: pointer;
}

.home-footer-link:hover {
  color: var(--home-primary-orange);
}

.home-footer-newsletter {
  margin-top: 1.5rem;
}

.home-footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.home-footer-newsletter-input {
  flex: 1;
  padding: 0.6rem 0.85rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: var(--home-white);
  font-size: 0.8rem;
  outline: none;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.home-footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.home-footer-newsletter-input:focus {
  border-color: rgba(239, 126, 26, 0.4);
}

.home-footer-newsletter-btn {
  padding: 0.6rem 1rem;
  background: var(--home-gradient-orange-cta);
  border: none;
  border-radius: 6px;
  color: var(--home-white);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: all 0.3s ease;
}

.home-footer-newsletter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 126, 26, 0.35);
}

.home-footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 1.5rem;
}

.home-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.home-footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.home-footer-ms-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.home-footer-ms-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--home-primary-orange);
}

/* ==================== KEYFRAMES ==================== */
@keyframes home-float-bg {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

@keyframes home-float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes home-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

@keyframes home-shape-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-20px) rotate(5deg);
  }

  66% {
    transform: translateY(10px) rotate(-3deg);
  }
}

/* About-page style shimmer sweep (horizontal) */
@keyframes home-shimmer-sweep {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* About-page style shimmer sweep (vertical) */
@keyframes home-shimmer-sweep-v {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {

  .home-hero-inner,
  .home-ai-inner,
  .home-ecosystem-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home-hero-visual {
    display: none;
  }

  .home-solutions-grid,
  .home-cases-grid,
  .home-testi-grid,
  .home-insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-insight-image-wrapper {
    height: 200px;
  }

  .home-outcomes-grid,
  .home-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .home-content-wrapper {
    padding: 0 1rem;
  }

  .home-hero-section,
  .home-solutions-section,
  .home-outcomes-section,
  .home-industries-section,
  .home-ecosystem-section,
  .home-ai-section,
  .home-cases-section,
  .home-journey-section,
  .home-testimonials-section,
  .home-insights-section,
  .home-cta-banner {
    padding: 2rem 0;
  }

  .home-solutions-grid,
  .home-cases-grid,
  .home-testi-grid,
  .home-insights-grid,
  .home-outcomes-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .home-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-journey-steps {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .home-journey-steps::before {
    display: none;
  }

  .home-ai-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-eco-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-footer-top {
    grid-template-columns: 1fr;
  }

  .home-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .home-trust-bar-inner {
    gap: 1rem;
  }

  .home-hero-ctas {
    flex-direction: column;
  }

  .home-solutions-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-insight-image-wrapper {
    height: 220px;
  }

  .home-insight-body {
    padding: 1rem 1rem 1.25rem;
  }

  .home-insight-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .home-hero-title {
    font-size: 2rem;
  }

  .home-hero-sub {
    font-size: 1rem;
  }

  .home-section-title {
    font-size: 1.75rem;
  }

  .home-industries-grid {
    grid-template-columns: 1fr;
  }

  .home-cta-choices {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

/* ==================== ACCESSIBILITY ==================== */
.home-btn-primary:focus,
.home-btn-secondary:focus,
.home-sol-card:focus,
.home-outcome-card:focus,
.home-ind-card:focus,
.home-eco-card:focus,
.home-case-card:focus,
.home-testi-card:focus,
.home-insight-card:focus {
  outline: 2px solid var(--home-primary-orange);
  outline-offset: 2px;
}

@media (prefers-contrast: high) {

  .home-sol-card,
  .home-outcome-card,
  .home-ind-card,
  .home-eco-card,
  .home-testi-card {
    border: 2px solid var(--home-primary-orange);
  }
}

@media (prefers-reduced-motion: reduce) {

  .home-hero-section::before,
  .home-hero-section::after,
  .home-float-card-1,
  .home-float-card-2,
  .home-hero-badge-dot {
    animation: none;
  }
}

/* ==================== PRINT STYLES ==================== */
@media print {

  .home-cta-banner,
  .home-hero-ctas,
  .home-trust-bar {
    display: none;
  }
}

/* ==================== 50+ IMPLEMENTATIONS BAR ==================== */
.home-implementations-bar {
  background: #ffffff;
  border-top: 2px solid var(--home-primary-orange, #ef7e1a);
  border-bottom: 2px solid var(--home-primary-orange, #ef7e1a);
  padding: 1.25rem 0;
}

.home-implementations-bar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.home-implementations-label {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-shrink: 0;
}

.home-implementations-count {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--home-primary-orange, #ef7e1a);
  line-height: 1;
}

.home-implementations-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  line-height: 1.3;
}

.home-implementations-divider {
  width: 1px;
  height: 36px;
  background: rgba(239, 126, 26, 0.35);
  flex-shrink: 0;
}

.home-implementations-badges {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  flex: 1;
}

.home-impl-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border: 1.5px solid var(--home-primary-orange, #ef7e1a);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--home-primary-orange, #ef7e1a);
  background: rgba(239, 126, 26, 0.05);
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.25s ease;
}

.home-impl-badge:hover {
  background: rgba(239, 126, 26, 0.12);
  transform: translateY(-1px);
}

/* Tablet: 769–1024px */
@media (max-width: 1024px) and (min-width: 769px) {
  .home-implementations-bar-inner {
    gap: 1.25rem;
  }

  .home-implementations-count {
    font-size: 1.9rem;
  }

  .home-impl-badge {
    font-size: 0.74rem;
    padding: 0.35rem 0.75rem;
  }
}

@media (max-width: 768px) {
  .home-implementations-bar {
    padding: 1rem 0;
  }

  .home-implementations-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .home-implementations-count {
    font-size: 2rem;
  }

  .home-implementations-divider {
    display: none;
  }

  .home-impl-badge {
    font-size: 0.76rem;
  }
}

/* ==================== JOURNEY STEPS — REMOVE LIST NUMBERING ==================== */
ul.home-journey-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.home-journey-steps .home-journey-step {
  list-style: none;
}/* 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: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
}

.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,
.contact-text {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #ef7e1a;
}

.contact-link,
.contact-text,
.contact-address {
    word-break: break-word;
}

/* 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;
}

/* Large screens (desktops) */
@media screen and (min-width: 1200px) {
    .footer-contact-info {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet */
@media screen and (max-width: 992px) {
    .footer-contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* Mobile */
@media screen and (max-width: 565px) {
    .footer-contact-info {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .footer-contact-item {
        flex-direction: row;
        /* keep icon + text side-by-side */
        align-items: flex-start;
        text-align: left;
    }

    .contact-icon-wrapper {
        width: 28px;
        height: 28px;
    }

    .footer-contact-icon {
        font-size: 12px;
    }
}.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;
  }
}