/* Modern Glass Design for Newnovation Solutions */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  /* Primary colors - Orange accent theme */
  --primary-orange: #df7c2c;
  --secondary-orange: #f59e0b;
  --accent-orange: #df7c2c;
  --light-orange: #fed7aa;
  --darker-orange: #c2410c;
  
  /* Glass effect colors for light theme */
  --glass-white: rgba(255, 255, 255, 0.7);
  --glass-white-hover: rgba(255, 255, 255, 0.85);
  --glass-light: rgba(249, 250, 251, 0.8);
  --glass-light-hover: rgba(249, 250, 251, 0.9);
  
  /* Gradient colors */
  --gradient-primary: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #f3f4f6 100%);
  --gradient-secondary: linear-gradient(135deg, #df7c2c 0%, #f59e0b 50%, #fbbf24 100%);
  --gradient-orange: linear-gradient(135deg, #df7c2c 0%, #f59e0b 50%, #fbbf24 100%);
  
  /* Background colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;
  --bg-glass: rgba(255, 255, 255, 0.8);
  
  /* Text colors */
  --text-primary: #111827;
  --text-secondary: #374151;
  --text-tertiary: #6b7280;
  --text-accent: #df7c2c;
  --text-white: #ffffff;
  
  /* Shadow colors */
  --shadow-primary: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  --shadow-orange: 0 0 20px rgba(223, 124, 44, 0.4);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  letter-spacing: 0.3px;
}

/* Typography Styles - Refined */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

h1 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.lead {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Glass morphism base class for light theme */
.glass {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 158, 11, 0.1);
  box-shadow: var(--shadow-glass);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-light {
  background: var(--glass-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 158, 11, 0.15);
  box-shadow: var(--shadow-glass);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass:hover {
  background: var(--glass-white-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover), var(--shadow-orange);
}

.glass-light:hover {
  background: var(--glass-light-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Modern Navigation */
.navbar {
  background: var(--glass-white) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(223, 124, 44, 0.1);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-glass);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(30px);
  padding: 0.5rem 0;
  box-shadow: var(--shadow-primary);
}

.navbar-brand {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary) !important;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  transition: all 0.3s ease;
}

.navbar-brand .brand-text {
  font-size: 1.1rem;
  font-weight: 500;
}

.footer-brand-text {
  font-size: 1.125rem !important;
  font-weight: 500 !important;
}

.navbar-brand .logo {
  height: 40px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(223, 124, 44, 0.25), 0 0 30px rgba(223, 124, 44, 0.1);
  transition: all 0.3s ease;
}

.footer-logo {
  height: 50px;
  width: auto;
  border-radius: 8px;
}

.navbar-brand:hover {
  color: var(--text-accent) !important;
  transform: scale(1.05);
}

.logo {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.3));
  transition: all 0.3s ease;
}

.navbar-brand:hover .logo {
  filter: drop-shadow(0 6px 12px rgba(245, 158, 11, 0.5));
}

.navbar-brand:hover .logo {
  box-shadow: 0 0 20px rgba(223, 124, 44, 0.4), 0 0 35px rgba(223, 124, 44, 0.2);
}

.navbar-nav .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary);
  transition: left 0.3s ease;
  z-index: -1;
  border-radius: 12px;
}

.navbar-nav .nav-link:hover {
  color: var(--text-white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.navbar-nav .nav-link:hover::before {
  left: 0;
}

.navbar-nav .nav-link.active {
  color: var(--text-accent) !important;
  background: var(--glass-light);
  box-shadow: var(--shadow-glass);
}


/* Modern Hero Section - Adecco Style */
.hero-section {
  background: #ffffff;
  color: var(--text-white);
  padding: 120px 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Home Hero - Office Background Image */
.hero-section.home-hero {
  background: url('../images/office-background.png');
  background-size: cover;
  background-position: center;
}

.hero-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Glass Tile - Orange Glass */
.hero-glass-tile {
  background: linear-gradient(135deg, rgba(223, 124, 44, 0.6) 0%, rgba(245, 158, 11, 0.55) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 8px 16px rgba(223, 124, 44, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-glass-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-glass-tile:hover {
  background: linear-gradient(135deg, rgba(223, 124, 44, 0.7) 0%, rgba(245, 158, 11, 0.65) 100%);
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 12px 24px rgba(223, 124, 44, 0.4);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-white);
  line-height: 1.2;
  letter-spacing: -0.5px;
  max-width: 800px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}


.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.5;
  max-width: 600px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.hero-buttons {
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

/* Mobile responsive hero buttons */
@media (max-width: 768px) {
  .hero-buttons {
    text-align: center;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0 !important;
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .hero-buttons .btn:first-child {
    margin-top: 0 !important;
  }
}

/* Stats Section - Adecco Style */
.stats-section {
  padding: 25px 0;
  background: var(--bg-secondary);
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Modern Buttons - Adecco Style */
.btn-primary-orange {
  background: var(--primary-orange);
  border: none;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  color: var(--text-white);
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: none;
}

.btn-primary-orange:hover {
  background: var(--accent-orange);
  color: var(--text-white);
  box-shadow: var(--shadow-primary);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: var(--text-white);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--text-white);
  color: var(--primary-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  text-shadow: none;
}

/* Modern Sections - Refined */
.section-padding {
  padding: 50px 0;
  position: relative;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  letter-spacing: -0.3px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}


.section-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* Service Cards - Refined */
.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
}

.service-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.service-card {
  background: var(--bg-primary);
  border: 1px solid var(--bg-tertiary);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-primary);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  height: 100%;
  position: relative;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover), var(--shadow-orange);
  background: var(--glass-white-hover);
}

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

.service-icon {
  font-size: 4rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.4));
}

.service-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-arrow {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  color: var(--primary-orange);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Solutions Section with Animated Particles */
.solutions-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.solutions-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(223, 124, 44, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(223, 124, 44, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

/* Animated Particles */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(223, 124, 44, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation: float1 8s ease-in-out infinite;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 60%;
  left: 20%;
  width: 3px;
  height: 3px;
  background: rgba(245, 158, 11, 0.5);
  animation: float2 10s ease-in-out infinite;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  top: 30%;
  right: 15%;
  width: 5px;
  height: 5px;
  background: rgba(223, 124, 44, 0.4);
  animation: float3 12s ease-in-out infinite;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  top: 70%;
  right: 25%;
  width: 2px;
  height: 2px;
  background: rgba(245, 158, 11, 0.7);
  animation: float1 9s ease-in-out infinite;
  animation-delay: 1s;
}

.particle:nth-child(5) {
  top: 15%;
  left: 60%;
  width: 3px;
  height: 3px;
  background: rgba(223, 124, 44, 0.5);
  animation: float2 11s ease-in-out infinite;
  animation-delay: 3s;
}

.particle:nth-child(6) {
  top: 80%;
  left: 70%;
  width: 4px;
  height: 4px;
  background: rgba(245, 158, 11, 0.4);
  animation: float3 7s ease-in-out infinite;
  animation-delay: 5s;
}

@keyframes float1 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-15px) translateX(-5px);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-25px) translateX(15px);
    opacity: 0.7;
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.5;
  }
  33% {
    transform: translateY(-30px) translateX(-10px) rotate(120deg);
    opacity: 0.8;
  }
  66% {
    transform: translateY(-10px) translateX(20px) rotate(240deg);
    opacity: 0.3;
  }
}

@keyframes float3 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-35px) translateX(-15px) scale(1.2);
    opacity: 0.8;
  }
}

/* 2x2 Grid Solutions Layout */
.solutions-2x2-grid {
  margin: 4rem auto;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.grid-container {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: 600px;
}

.grid-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.service-card-corner {
  width: 100%;
  max-width: 320px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Carved corners for each tile */
.top-left .service-card-corner {
  border-radius: 16px 16px 16px 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.top-right .service-card-corner {
  border-radius: 16px 16px 0 16px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.bottom-left .service-card-corner {
  border-radius: 16px 0 16px 16px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.bottom-right .service-card-corner {
  border-radius: 0 16px 16px 16px;
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
}

.service-card-corner .service-description {
  font-size: 0.9rem;
  line-height: 1.4;
}

.service-card-corner .service-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.service-card-corner .service-icon {
  font-size: 2.8rem;
  margin-bottom: 1.25rem;
}

/* Center Logo Positioning */
.center-logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.center-logo-small {
  width: 140px;
  height: 140px;
  background: var(--glass-white);
  border: 2px solid rgba(245, 158, 11, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.center-logo-small::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(245, 158, 11, 0.05), rgba(223, 124, 44, 0.05));
  animation: pulse 4s ease-in-out infinite;
}

.logo-image-small {
  width: 80px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

/* Corner Positioning */
.top-left {
  grid-column: 1;
  grid-row: 1;
}

.top-right {
  grid-column: 2;
  grid-row: 1;
}

.bottom-left {
  grid-column: 1;
  grid-row: 2;
}

.bottom-right {
  grid-column: 2;
  grid-row: 2;
}

/* Hover effects for 2x2 layout */
.solutions-2x2-grid .service-card-corner:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow-hover), 0 15px 45px rgba(245, 158, 11, 0.25);
}

.solutions-2x2-grid .service-card-corner:hover .service-icon {
  transform: scale(1.15) rotate(8deg);
}

.center-logo-small:hover {
  transform: scale(1.05);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.25);
}

/* Responsive adjustments for 2x2 layout */
@media (max-width: 1024px) {
  .grid-container {
    gap: 0.8rem;
    min-height: 500px;
  }
  
  .service-card-corner {
    max-width: 280px;
    height: 250px;
    padding: 1.5rem 1.25rem;
  }
  
  .center-logo-small {
    width: 120px;
    height: 120px;
  }
  
  .logo-image-small {
    width: 80px;
    max-height: 80px;
  }
}

@media (max-width: 768px) {
  .solutions-2x2-grid {
    margin: 2rem auto;
  }
  
  .grid-container {
    display: block;
    position: static;
    min-height: auto;
  }
  
  .grid-corner {
    margin-bottom: 2rem;
  }
  
  .center-logo-container {
    position: static;
    transform: none;
    text-align: center;
    margin: 2rem 0;
    order: -1;
  }
  
  .center-logo-small {
    width: 140px;
    height: 140px;
    margin: 0 auto;
  }
  
  .logo-image-small {
    width: 100px;
    max-height: 100px;
  }
  
  .service-card-corner {
    max-width: 400px;
    margin: 0 auto;
    height: auto;
    padding: 2rem;
  }
}
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Solutions Hero - Advanced Sharp Animation */
.hero-section.solutions-hero {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%) !important;
  background-image: none !important;
  overflow: hidden;
}

.hero-section.solutions-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    conic-gradient(from 0deg at 30% 40%, 
      rgba(223, 124, 44, 0.3) 0deg, 
      transparent 60deg, 
      rgba(223, 124, 44, 0.2) 120deg, 
      transparent 180deg, 
      rgba(223, 124, 44, 0.25) 240deg, 
      transparent 300deg, 
      rgba(223, 124, 44, 0.3) 360deg),
    radial-gradient(ellipse 800px 400px at 70% 60%, rgba(223, 124, 44, 0.15) 0%, transparent 50%);
  animation: advancedSolutionsAnimation 35s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  z-index: 1;
}

.hero-section.solutions-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, 
      transparent 40%, 
      rgba(223, 124, 44, 0.08) 45%, 
      rgba(223, 124, 44, 0.12) 55%, 
      transparent 60%);
  animation: sharpLineAnimation 25s linear infinite;
  z-index: 2;
}

.hero-section.solutions-hero .container {
  position: relative;
  z-index: 3;
}

.hero-section.solutions-hero .hero-title,
.hero-section.solutions-hero .hero-subtitle {
  color: #000000 !important;
  text-align: left !important;
}

/* Platforms Hero - Advanced Tech Pattern Animation */
.hero-section.platforms-hero {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.hero-section.platforms-hero::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: 
    repeating-conic-gradient(from 0deg at 25% 25%, 
      transparent 0deg 15deg, 
      rgba(223, 124, 44, 0.15) 15deg 30deg, 
      transparent 30deg 45deg),
    repeating-conic-gradient(from 90deg at 75% 75%, 
      transparent 0deg 20deg, 
      rgba(223, 124, 44, 0.1) 20deg 40deg, 
      transparent 40deg 60deg),
    radial-gradient(circle at 50% 50%, rgba(223, 124, 44, 0.05) 0%, transparent 70%);
  animation: advancedTechAnimation 30s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  z-index: 1;
}

.hero-section.platforms-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, 
      transparent 0%, 
      rgba(223, 124, 44, 0.06) 25%, 
      transparent 30%, 
      rgba(223, 124, 44, 0.08) 70%, 
      transparent 75%);
  animation: techPulseAnimation 20s ease-in-out infinite alternate;
  z-index: 2;
}

.hero-section.platforms-hero .container {
  position: relative;
  z-index: 3;
}

.hero-section.platforms-hero .hero-title,
.hero-section.platforms-hero .hero-subtitle {
  color: #000000 !important;
  text-align: left !important;
}

/* Industries Hero - Advanced Sharp Geometric Animation */
.hero-section.industries-hero {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.hero-section.industries-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: 
    conic-gradient(from 45deg at 30% 30%, 
      rgba(223, 124, 44, 0.25) 0deg 45deg, 
      transparent 45deg 90deg, 
      rgba(223, 124, 44, 0.15) 90deg 135deg, 
      transparent 135deg 180deg, 
      rgba(223, 124, 44, 0.2) 180deg 225deg, 
      transparent 225deg 270deg, 
      rgba(223, 124, 44, 0.18) 270deg 315deg, 
      transparent 315deg 360deg),
    radial-gradient(ellipse 600px 300px at 70% 40%, rgba(223, 124, 44, 0.1) 0%, transparent 60%);
  animation: advancedIndustriesAnimation 40s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  z-index: 1;
}

.hero-section.industries-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(135deg, 
      transparent 0px 40px, 
      rgba(223, 124, 44, 0.05) 40px 42px, 
      transparent 42px 82px);
  animation: sharpGeometricPulse 22s ease-in-out infinite;
  z-index: 2;
}

.hero-section.industries-hero .container {
  position: relative;
  z-index: 3;
}

.hero-section.industries-hero .hero-title,
.hero-section.industries-hero .hero-subtitle {
  color: #000000 !important;
  text-align: left !important;
}

/* FAQ Hero - Advanced Sharp Wave Animation */
.hero-section.faq-hero {
  position: relative;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  overflow: hidden;
}

.hero-section.faq-hero::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: 
    repeating-conic-gradient(from 30deg at 40% 60%, 
      transparent 0deg 30deg, 
      rgba(223, 124, 44, 0.2) 30deg 45deg, 
      transparent 45deg 75deg, 
      rgba(223, 124, 44, 0.15) 75deg 90deg, 
      transparent 90deg 120deg),
    linear-gradient(60deg, 
      transparent 30%, 
      rgba(223, 124, 44, 0.08) 35%, 
      transparent 40%, 
      rgba(223, 124, 44, 0.12) 60%, 
      transparent 65%);
  animation: advancedFaqAnimation 32s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  z-index: 1;
}

.hero-section.faq-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, 
      transparent 0%, 
      rgba(223, 124, 44, 0.06) 20%, 
      transparent 25%, 
      rgba(223, 124, 44, 0.08) 75%, 
      transparent 80%);
  animation: sharpWaveSlide 28s linear infinite;
  z-index: 2;
}

.hero-section.faq-hero .container {
  position: relative;
  z-index: 3;
}

.hero-section.faq-hero .hero-title,
.hero-section.faq-hero .hero-subtitle {
  color: #000000 !important;
  text-align: left !important;
}

/* Resources Hero - Advanced Sharp Particle Animation */
.hero-section.resources-hero {
  position: relative;
  background: linear-gradient(135deg, #f7f8fc 0%, #eef2ff 100%);
  overflow: hidden;
}

.hero-section.resources-hero::before {
  content: '';
  position: absolute;
  top: -25%;
  left: -25%;
  width: 150%;
  height: 150%;
  background: 
    conic-gradient(from 0deg at 25% 35%, 
      rgba(223, 124, 44, 0.2) 0deg 72deg, 
      transparent 72deg 144deg, 
      rgba(223, 124, 44, 0.15) 144deg 216deg, 
      transparent 216deg 288deg, 
      rgba(223, 124, 44, 0.18) 288deg 360deg),
    radial-gradient(ellipse 500px 800px at 75% 25%, rgba(223, 124, 44, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 400px 600px at 25% 75%, rgba(223, 124, 44, 0.08) 0%, transparent 60%);
  animation: advancedResourcesAnimation 45s cubic-bezier(0.19, 1, 0.22, 1) infinite;
  z-index: 1;
}

.hero-section.resources-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-radial-gradient(circle at 30% 40%, 
      transparent 0px 30px, 
      rgba(223, 124, 44, 0.06) 30px 32px, 
      transparent 32px 62px),
    linear-gradient(120deg, 
      transparent 40%, 
      rgba(223, 124, 44, 0.05) 48%, 
      transparent 52%);
  animation: sharpParticleFlow 38s ease-in-out infinite alternate;
  z-index: 2;
}

.hero-section.resources-hero .container {
  position: relative;
  z-index: 3;
}

.hero-section.resources-hero .hero-title,
.hero-section.resources-hero .hero-subtitle {
  color: #000000 !important;
  text-align: left !important;
}

/* Animation Keyframes */
@keyframes advancedIndustriesAnimation {
  0% {
    transform: rotate(0deg) scale(1) translate(0%, 0%);
    filter: hue-rotate(0deg) contrast(1);
  }
  25% {
    transform: rotate(90deg) scale(1.05) translate(-3%, 2%);
    filter: hue-rotate(10deg) contrast(1.1);
  }
  50% {
    transform: rotate(180deg) scale(0.98) translate(2%, -4%);
    filter: hue-rotate(20deg) contrast(0.95);
  }
  75% {
    transform: rotate(270deg) scale(1.08) translate(-4%, 3%);
    filter: hue-rotate(10deg) contrast(1.05);
  }
  100% {
    transform: rotate(360deg) scale(1) translate(0%, 0%);
    filter: hue-rotate(0deg) contrast(1);
  }
}

@keyframes sharpGeometricPulse {
  0% {
    transform: translateX(0%) skewY(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-2%) skewY(1deg);
    opacity: 0.8;
  }
  100% {
    transform: translateX(0%) skewY(0deg);
    opacity: 0.3;
  }
}

@keyframes advancedFaqAnimation {
  0% {
    transform: rotate(0deg) scale(1) translate(0%, 0%) skewX(0deg);
    filter: brightness(1) saturate(1);
  }
  20% {
    transform: rotate(60deg) scale(1.06) translate(-2%, 3%) skewX(2deg);
    filter: brightness(1.05) saturate(1.1);
  }
  40% {
    transform: rotate(120deg) scale(0.94) translate(3%, -2%) skewX(-1deg);
    filter: brightness(0.98) saturate(0.95);
  }
  60% {
    transform: rotate(180deg) scale(1.1) translate(-3%, 4%) skewX(3deg);
    filter: brightness(1.08) saturate(1.05);
  }
  80% {
    transform: rotate(240deg) scale(0.96) translate(4%, -3%) skewX(-2deg);
    filter: brightness(1.02) saturate(1.02);
  }
  100% {
    transform: rotate(360deg) scale(1) translate(0%, 0%) skewX(0deg);
    filter: brightness(1) saturate(1);
  }
}

@keyframes sharpWaveSlide {
  0% {
    transform: translateX(-100%) rotate(-5deg);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%) rotate(5deg);
    opacity: 0;
  }
}

@keyframes advancedResourcesAnimation {
  0% {
    transform: rotate(0deg) scale(1) translate(0%, 0%);
    filter: hue-rotate(0deg) blur(0px);
  }
  16.66% {
    transform: rotate(60deg) scale(1.04) translate(-2%, 3%);
    filter: hue-rotate(5deg) blur(0.2px);
  }
  33.33% {
    transform: rotate(120deg) scale(0.96) translate(4%, -2%);
    filter: hue-rotate(10deg) blur(0px);
  }
  50% {
    transform: rotate(180deg) scale(1.08) translate(-3%, 4%);
    filter: hue-rotate(15deg) blur(0.3px);
  }
  66.66% {
    transform: rotate(240deg) scale(0.92) translate(3%, -4%);
    filter: hue-rotate(10deg) blur(0.1px);
  }
  83.33% {
    transform: rotate(300deg) scale(1.06) translate(-4%, 2%);
    filter: hue-rotate(5deg) blur(0.2px);
  }
  100% {
    transform: rotate(360deg) scale(1) translate(0%, 0%);
    filter: hue-rotate(0deg) blur(0px);
  }
}

@keyframes sharpParticleFlow {
  0% {
    transform: scale(1) rotate(0deg) translateY(0%);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.03) rotate(2deg) translateY(-1%);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.06) rotate(4deg) translateY(-2%);
    opacity: 0.5;
  }
}

@keyframes advancedSolutionsAnimation {
  0% {
    transform: rotate(0deg) scale(1) translate(0%, 0%);
    filter: hue-rotate(0deg);
  }
  25% {
    transform: rotate(90deg) scale(1.1) translate(-5%, 5%);
    filter: hue-rotate(15deg);
  }
  50% {
    transform: rotate(180deg) scale(0.95) translate(3%, -3%);
    filter: hue-rotate(30deg);
  }
  75% {
    transform: rotate(270deg) scale(1.05) translate(-2%, 4%);
    filter: hue-rotate(15deg);
  }
  100% {
    transform: rotate(360deg) scale(1) translate(0%, 0%);
    filter: hue-rotate(0deg);
  }
}

@keyframes sharpLineAnimation {
  0% {
    transform: translateX(-100%) skewX(-15deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-15deg);
    opacity: 0;
  }
}

@keyframes advancedTechAnimation {
  0% {
    transform: rotate(0deg) scale(1) translate(0%, 0%);
    filter: contrast(1) brightness(1);
  }
  20% {
    transform: rotate(72deg) scale(1.08) translate(-3%, 2%);
    filter: contrast(1.1) brightness(1.05);
  }
  40% {
    transform: rotate(144deg) scale(0.92) translate(4%, -3%);
    filter: contrast(0.95) brightness(0.98);
  }
  60% {
    transform: rotate(216deg) scale(1.12) translate(-2%, 4%);
    filter: contrast(1.08) brightness(1.03);
  }
  80% {
    transform: rotate(288deg) scale(0.98) translate(3%, -2%);
    filter: contrast(1.02) brightness(1.01);
  }
  100% {
    transform: rotate(360deg) scale(1) translate(0%, 0%);
    filter: contrast(1) brightness(1);
  }
}

@keyframes techPulseAnimation {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.02) rotate(1deg);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.04) rotate(2deg);
    opacity: 0.4;
  }
}

/* Modern Testimonials */
.testimonial-section {
  background: var(--bg-secondary);
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
  padding: 80px 0;
  margin-top: 0;
  position: relative;
}

.testimonial-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
  text-align: center;
  letter-spacing: -0.3px;
}

.testimonial-card {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-glass);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover), var(--shadow-orange);
  background: var(--glass-white-hover);
}

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

.testimonial-text {
  font-style: normal;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--text-primary);
  font-weight: 400;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 3rem;
  color: var(--text-accent);
  font-family: Georgia, serif;
  opacity: 0.7;
}

.testimonial-author {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.testimonial-company {
  color: var(--text-accent);
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
}

.quote-icon {
  display: none;
}

/* Glass Platform Cards */
.platform-card {
  background: var(--gradient-primary);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  color: var(--text-primary);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  margin-bottom: 3rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow: var(--shadow-glass);
}

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

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--glass-light);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover), var(--shadow-orange);
}

.platform-card:hover::before {
  opacity: 0.3;
}

/* Platform Image Container */
.platform-image-container {
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.platform-image {
  width: 100%;
  max-width: 450px;
  height: 280px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  background: #f8f9fa;
  box-shadow: 
    0 0 25px rgba(223, 124, 44, 0.5),
    0 0 50px rgba(245, 158, 11, 0.3),
    0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  border: 3px solid rgba(223, 124, 44, 0.3);
  display: block;
  padding: 8px;
}

.platform-image:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 0 30px rgba(223, 124, 44, 0.6),
    0 0 60px rgba(245, 158, 11, 0.4),
    0 12px 48px rgba(0, 0, 0, 0.15);
  border-color: rgba(223, 124, 44, 0.4);
}

.platform-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.platform-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 2;
}

.platform-link {
  background: var(--glass-white);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid rgba(245, 158, 11, 0.3);
  padding: 16px 32px;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  display: inline-block;
}

.platform-link:hover {
  background: var(--gradient-secondary);
  color: var(--text-white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

/* Modern FAQ Section */
.faq-item {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-glass);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover), var(--shadow-orange);
}

.faq-question {
  background: var(--gradient-primary);
  color: var(--text-primary);
  padding: 2rem;
  border-radius: 16px 16px 0 0;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  margin: 0;
  position: relative;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--gradient-secondary);
  color: var(--text-white);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
  background: var(--glass-white);
}

/* Glass Industry Cards */
.industry-card {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--text-accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: rotate 4s linear infinite;
}

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

.industry-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-hover), var(--shadow-orange);
  background: var(--glass-white-hover);
}

.industry-card:hover::before {
  opacity: 0.1;
}

.industry-icon {
  font-size: 3rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.4));
}

.industry-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
  z-index: 2;
}

/* Modern Glass Footer */
.footer {
  background: var(--bg-secondary);
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
  color: var(--text-primary);
  padding: 80px 0 40px 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-secondary);
}

.footer h5 {
  color: var(--text-accent);
  margin-bottom: 2rem;
  font-weight: 800;
  font-size: 1.3rem;
  position: relative;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-secondary);
  border-radius: 1px;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  line-height: 2.2;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
}

.footer-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-secondary);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--text-accent);
  transform: translateX(5px);
}

.footer-link:hover::before {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 30px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  opacity: 0.8;
}

/* Modern Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .service-card, .testimonial-card, .contact-card {
    margin: 1.5rem 0;
  }
  
  .platform-card {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 80px 0;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .service-card, .testimonial-card, .contact-card {
    margin: 1rem 0;
    padding: 2rem 1.5rem;
  }
  
  .platform-card {
    padding: 2.5rem 2rem;
  }
  
  .navbar-nav .nav-link {
    margin: 0.25rem 0;
    padding: 0.75rem 1rem;
  }
  
  .btn-primary-orange {
    padding: 14px 32px;
    font-size: 1rem;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
    padding-left: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-card, .testimonial-card, .contact-card {
    padding: 1.5rem 1rem;
  }
  
  .platform-card {
    padding: 2rem 1.5rem;
  }
  
  .platform-title {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
}

/* Advantage Stats */
.advantage-stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(223, 124, 44, 0.1);
  border: 2px solid rgba(223, 124, 44, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.advantage-stat:hover {
  background: rgba(223, 124, 44, 0.15);
  border-color: rgba(223, 124, 44, 0.4);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-orange);
}

/* Back Button Styles */
.back-btn {
  border: 2px solid #007bff;
  color: #007bff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background-color: #007bff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Client Logos Section */
.clients-section {
  background: #f8f9fa;
}

.client-logo {
  padding: 3rem;
  text-align: center;
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(223, 124, 44, 0.12);
  transition: all 0.4s ease;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.client-logo::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, transparent, rgba(223, 124, 44, 0.3), transparent);
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.client-logo:hover::before {
  opacity: 1;
}

.client-logo:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(223, 124, 44, 0.25);
}

.client-logo img {
  max-height: 85px;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.4s ease;
}

.client-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* Specific adjustments for StatusNeo logo */
.client-logo img[alt="StatusNeo"] {
  max-height: 70px;
  max-width: 150px;
}

/* DUNS Badge Styling */
.client-logo.duns-badge {
  background: linear-gradient(135deg, rgba(223, 124, 44, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
  border: 2px solid rgba(223, 124, 44, 0.2);
}

.client-logo.duns-badge:hover {
  background: linear-gradient(135deg, rgba(223, 124, 44, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  border-color: var(--primary-orange);
  box-shadow: 0 12px 40px rgba(223, 124, 44, 0.3);
}

.client-logo.duns-badge img {
  filter: none !important;
  opacity: 1 !important;
  max-height: 80px;
  max-width: 160px;
}

.duns-footer-badge {
  max-height: 60px;
  width: auto;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.duns-footer-badge:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.duns-contact-badge {
  max-height: 70px;
  width: auto;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.duns-contact-badge:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Featured DUNS Badge - Left Side Prominent */
.duns-featured-badge {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(223, 124, 44, 0.08) 0%, rgba(245, 158, 11, 0.08) 100%);
  border: 2px solid rgba(223, 124, 44, 0.2);
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.duns-featured-badge::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, transparent, rgba(223, 124, 44, 0.3), transparent);
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.duns-featured-badge:hover::before {
  opacity: 1;
}

.duns-featured-badge:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(223, 124, 44, 0.25);
  border-color: var(--primary-orange);
  background: linear-gradient(135deg, rgba(223, 124, 44, 0.12) 0%, rgba(245, 158, 11, 0.12) 100%);
}

.duns-featured-badge img {
  max-height: 120px;
  width: auto;
  margin-bottom: 1rem;
  filter: none !important;
  opacity: 1 !important;
  transition: all 0.4s ease;
}

.duns-featured-badge:hover img {
  transform: scale(1.05);
}

.duns-caption {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.duns-featured-badge:hover .duns-caption {
  color: var(--primary-orange);
  opacity: 1;
}

/* Specific adjustments for Flowace logo */
.client-logo img[alt="Flowace"] {
  max-height: 95px;
  max-width: 190px;
}
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-secondary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-accent);
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.8s ease forwards;
}

/* Focus States */
.btn-primary-orange:focus,
.btn-outline-light:focus,
.platform-link:focus {
  outline: 2px solid var(--text-accent);
  outline-offset: 2px;
}

/* Journey Tile Styles */
.journey-tile {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(223, 124, 44, 0.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-glass);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journey-tile:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover), var(--shadow-orange);
  background: var(--glass-white-hover);
}

.journey-tile .tile-icon {
  text-align: center;
}

.journey-tile .tile-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

.journey-tile .tile-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1.5rem;
}

.journey-tile .process-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .journey-tile .process-flow {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.journey-tile .process-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 200px;
}

@media (min-width: 768px) {
  .journey-tile .process-step {
    flex-direction: column;
    text-align: center;
    max-width: 120px;
    gap: 0.75rem;
  }
}

.journey-tile .step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(223, 124, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.journey-tile .step-icon i {
  font-size: 1.2rem;
}

.journey-tile:hover .step-icon {
  background: rgba(223, 124, 44, 0.2);
  transform: scale(1.05);
}

.journey-tile .step-content {
  text-align: left;
  flex: 1;
}

@media (min-width: 768px) {
  .journey-tile .step-content {
    text-align: center;
  }
}

.journey-tile .step-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.journey-tile .step-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.3;
}

.journey-tile .process-arrow {
  opacity: 0.6;
  font-size: 0.9rem;
  animation: bounce 2s infinite;
}

@media (min-width: 768px) {
  .journey-tile .process-arrow {
    transform: rotate(-90deg);
    font-size: 1rem;
    margin: 0 0.25rem;
    align-self: center;
    margin-top: -20px;
    animation: bounceHorizontal 2s infinite;
  }
}

@keyframes bounceHorizontal {
  0%, 20%, 50%, 80%, 100% {
    transform: rotate(-90deg) translateX(0);
  }
  40% {
    transform: rotate(-90deg) translateX(3px);
  }
  60% {
    transform: rotate(-90deg) translateX(2px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-2px);
  }
}

/* Selection */
::selection {
  background: var(--text-accent);
  color: var(--bg-primary);
}

/* Backdrop filter fallback */
@supports not (backdrop-filter: blur(20px)) {
  .glass,
  .glass-light,
  .service-card,
  .testimonial-card,
  .contact-card,
  .industry-card,
  .faq-item {
    background: rgba(255, 255, 255, 0.95);
  }
  
  .navbar {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}

/* Solution Page Specific Styles */
.benefit-card {
  background: var(--bg-primary);
  border: 1px solid var(--bg-tertiary);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-primary);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  background: var(--glass-white-hover);
}

.benefit-icon {
  font-size: 3rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.benefit-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.step-icon {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
}

.process-step h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--glass-white);
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.feature-item i {
  font-size: 2rem;
  margin-right: 1.5rem;
  margin-top: 0.25rem;
}

.feature-item h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Modern Stats Section */
.stats-section {
  background: var(--bg-white);
  color: var(--text-primary);
  padding: 50px 0;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

.stat-item {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px) scale(1.05);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Modern Contact Section */
.contact-section {
  background: var(--bg-secondary);
  background-image: 
    radial-gradient(circle at 40% 60%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 60% 40%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
  margin-top: 0;
  padding: 80px 0 !important;
}

/* Advantage tiles in contact section need dark text */
.contact-section .advantage-tile-small {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(223, 124, 44, 0.2);
  backdrop-filter: blur(10px);
}

.contact-section .advantage-tile-small:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(223, 124, 44, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-section .advantage-tile-small i {
  color: var(--primary-orange);
  font-size: 1.1rem;
  min-width: 20px;
}

.contact-section .advantage-tile-small span {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-card {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-glass);
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-hover), var(--shadow-orange);
  background: var(--glass-white-hover);
}

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

.contact-icon {
  font-size: 3rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.4));
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.contact-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 40px 0 30px 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.cta-section .container {
  background: linear-gradient(135deg, rgba(223, 124, 44, 0.9) 0%, rgba(245, 158, 11, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.cta-section .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--text-white);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: left;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .cta-section h2 {
    text-align: center;
  }
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 0 2rem 0;
  position: relative;
  z-index: 2;
}

.cta-section .btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: var(--text-white);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.cta-section .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--text-white);
  color: var(--primary-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Mobile responsive CTA buttons */
@media (max-width: 991px) {
  .cta-section .col-lg-4 {
    text-align: center !important;
    margin-top: 2rem;
  }
  
  .cta-section .btn {
    display: block;
    width: 100%;
    margin: 0.75rem 0 !important;
    padding: 16px 32px;
  }
  
  .cta-section .btn:first-child {
    margin-top: 0 !important;
  }
}

/* Custom Unique Menu Icon */
.custom-toggler {
  border: none !important;
  background: transparent !important;
  padding: 8px 12px;
  position: relative;
}

.custom-toggler:focus {
  box-shadow: none !important;
}

.custom-menu-icon {
  width: 22px;
  height: 16px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.4s ease-in-out;
  cursor: pointer;
}

.custom-menu-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--primary-orange);
  border-radius: 1px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
  box-shadow: 0 1px 2px rgba(223, 124, 44, 0.2);
}

.custom-menu-icon span:nth-child(1) {
  top: 0px;
  width: 100%;
}

.custom-menu-icon span:nth-child(2) {
  top: 7px;
  width: 75%;
}

.custom-menu-icon span:nth-child(3) {
  top: 14px;
  width: 50%;
}

/* Hover effect for menu icon */
.custom-toggler:hover .custom-menu-icon span:nth-child(1) {
  width: 100%;
  background: rgba(223, 124, 44, 0.9);
}

.custom-toggler:hover .custom-menu-icon span:nth-child(2) {
  width: 85%;
  background: rgba(223, 124, 44, 0.9);
}

.custom-toggler:hover .custom-menu-icon span:nth-child(3) {
  width: 60%;
  background: rgba(223, 124, 44, 0.9);
}

/* Active state animation */
.custom-toggler[aria-expanded="true"] .custom-menu-icon span:nth-child(1) {
  top: 7px;
  width: 100%;
  transform: rotate(135deg);
}

.custom-toggler[aria-expanded="true"] .custom-menu-icon span:nth-child(2) {
  opacity: 0;
  left: -22px;
}

.custom-toggler[aria-expanded="true"] .custom-menu-icon span:nth-child(3) {
  top: 7px;
  width: 100%;
  transform: rotate(-135deg);
}

/* Advantages Section */
.advantages-section {
  padding: 2rem 0;
}

.advantages-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.advantage-tile {
  background: var(--glass-white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(223, 124, 44, 0.2);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.advantage-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(223, 124, 44, 0.15);
  border-color: var(--primary-orange);
}

.advantage-icon {
  font-size: 1.5rem;
  color: var(--primary-orange);
  min-width: 40px;
  text-align: center;
}

.advantage-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.advantage-content p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Responsive adjustments */
@media (min-width: 992px) {
  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Large Advantage Tiles for Main Section */
.advantages-main-section {
  background: var(--bg-secondary);
}

.advantage-tile-large {
  background: var(--glass-white);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(223, 124, 44, 0.15);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.advantage-tile-large:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(223, 124, 44, 0.2);
  border-color: var(--primary-orange);
}

.advantage-tile-large .advantage-icon {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
}

.advantage-tile-large .advantage-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.advantage-tile-large .advantage-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Sleek Advantage Tiles for One Row */
.advantage-tile-sleek {
  background: var(--glass-white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(223, 124, 44, 0.1);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.advantage-tile-sleek:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(223, 124, 44, 0.15);
  border-color: var(--primary-orange);
}

.advantage-tile-sleek .advantage-icon {
  font-size: 1.8rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.advantage-tile-sleek .advantage-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.advantage-tile-sleek .advantage-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* CTA Advantages */
.cta-advantages {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.advantage-tile-small {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.advantage-tile-small:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.advantage-tile-small i {
  color: var(--text-white);
  font-size: 1.1rem;
  min-width: 20px;
}

.advantage-tile-small span {
  color: var(--text-white);
  font-size: 0.9rem;
  font-weight: 500;
}
