/* ===== EMOCOM BRAND COLORS CSS ===== */
/* Official Brand Colors: #FFB72B (Golden Yellow), #000000 (Black), #FFFFFF (White) */

/* === UPDATED VARIABLES === */
:root {
  /* EMOCOM Official Brand Colors */
  --brand-primary: #FFB72B;        /* Golden Yellow - Primary brand color */
  --brand-secondary: #FFA500;      /* Darker yellow for gradients */
  --brand-black: #000000;          /* Pure black */
  --brand-white: #FFFFFF;          /* Pure white */
  
  /* Supporting Colors */
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  
  /* Mobile viewport height (set by JavaScript) */
  --vh: 1vh;
  
  /* Mobile-specific variables */
  --mobile-padding: 15px;
  --mobile-container-max: 100%;
  --touch-target-min: 44px;
  --gray-900: #171717;
  
  /* Semantic Colors */
  --success: #22c55e;
  --warning: var(--brand-primary);
  --error: #ef4444;
  --info: #3b82f6;
  
  /* Brand Gradients */
  --gradient-primary: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  --gradient-gold-black: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-black) 100%);
  --gradient-black-gold: linear-gradient(135deg, var(--brand-black) 0%, var(--brand-primary) 100%);
  --gradient-hero: linear-gradient(135deg, var(--brand-black) 0%, var(--gray-900) 50%, var(--brand-black) 100%);
  
  /* Text Colors */
  --text-primary: var(--brand-black);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-500);
  --text-on-dark: var(--brand-white);
  --text-on-brand: var(--brand-black);
  
  /* Background Colors */
  --bg-primary: var(--brand-white);
  --bg-secondary: var(--gray-50);
  --bg-dark: var(--brand-black);
  --bg-overlay: rgba(0, 0, 0, 0.8);
  
  /* Shadows with brand colors */
  --shadow-brand: 0 4px 20px rgba(255, 183, 43, 0.15);
  --shadow-brand-lg: 0 10px 30px rgba(255, 183, 43, 0.2);
  --shadow-black: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-black-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  
  /* Spacing System - Fixed */
  --section-padding: 5rem 0;
  --section-gap: 4rem;
  --container-padding: 2rem;
}

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === CONTAINER & LAYOUT === */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

/* Proper section spacing */
.section + .section {
  margin-top: 0;
}


/* === NAVIGATION === */
/* ===== NAVIGATION HEADER FIX ===== */
/* Fixed alignment and centering for EMOCOM navbar */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 183, 43, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: relative;
}

/* ===== LOGO SECTION - PROPERLY CENTERED ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 100%;
    flex-shrink: 0;
}

.logo-img {
    height: 95px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* ===== NAVIGATION LINKS - CENTERED ===== */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--brand-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-primary);
}

/* ===== DROPDOWN MENU - ENHANCED ===== */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 320px;
    background: var(--brand-black);
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 183, 43, 0.3);
    z-index: 1000;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--brand-white);
    margin-bottom: 0.5rem;
}

.dropdown-item:hover {
    background: rgba(255, 183, 43, 0.15);
    transform: translateX(8px);
    color: var(--brand-white);
}

.dropdown-icon {
    font-size: 1.5rem;
    filter: grayscale(0.2);
}

.dropdown-content {
    display: flex;
    flex-direction: column;
}

.dropdown-title {
    font-weight: 600;
    color: var(--brand-white);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.dropdown-desc {
    font-size: 0.8rem;
    color: var(--gray-300);
}

/* ===== MEGA MENU LAYOUT ===== */
.mega-menu {
    min-width: 720px;
    max-width: 800px;
    padding: 2rem;
}

.dropdown-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
}

.dropdown-section-title {
    font-weight: 700;
    color: var(--brand-primary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 183, 43, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu .dropdown-item {
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.mega-menu .dropdown-item.featured {
    background: linear-gradient(135deg, rgba(255, 183, 43, 0.2), rgba(255, 183, 43, 0.1));
    border: 1px solid rgba(255, 183, 43, 0.3);
}

.mega-menu .dropdown-item:hover {
    background: rgba(255, 183, 43, 0.15);
    transform: translateX(2px);
}

.mega-menu .dropdown-desc {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* ===== CTA BUTTON - RIGHT ALIGNED ===== */
.nav-cta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--gradient-primary);
    color: var(--brand-black);
    border: 2px solid var(--brand-primary);
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-brand-lg);
    background: var(--brand-white);
    color: var(--brand-black);
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--brand-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .nav-links {
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .dropdown-menu {
        min-width: 280px;
    }
    
    .mega-menu {
        min-width: 600px;
        max-width: 650px;
    }
    
    .dropdown-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .nav-links {
        gap: 1.2rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .nav-cta .btn {
        padding: 0.65rem 1.3rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--brand-black);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        justify-content: flex-start;
        flex: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 183, 43, 0.1);
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin-top: 1rem;
        box-shadow: none;
        border: 1px solid rgba(255, 183, 43, 0.3);
        background: rgba(0, 0, 0, 0.9);
    }
    
    .mega-menu {
        min-width: auto;
        max-width: none;
        width: 100%;
        padding: 1rem;
    }
    
    .dropdown-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .dropdown-section-title {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .mega-menu .dropdown-item {
        margin-bottom: 0.5rem;
        padding: 0.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-cta .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 640px) {
    .logo-img {
        height: 55px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
}

/* ===== SMOOTH ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    animation: fadeInDown 0.6s ease-out;
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
.nav-link:focus,
.dropdown-item:focus,
.btn:focus {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

/* ===== HOVER EFFECTS FOR MODERN FEEL ===== */
.nav-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled .nav-container::before {
    opacity: 1;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 48px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--brand-black);
  border-color: var(--brand-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-white);
  border-color: var(--brand-primary);
}

.btn-secondary:hover {
  background: var(--brand-primary);
  color: var(--brand-black);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--brand-primary);
}

.btn-outline:hover {
  background: var(--brand-primary);
  color: var(--brand-black);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
  min-height: 64px;
}



/* === HERO SECTION - FIXED LAYOUT === */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  color: var(--brand-white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: none;
}

.hero-visual {
  justify-self: end;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 3;
}

.bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
}

.bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 183, 43, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 183, 43, 0.05) 0%, transparent 50%);
  animation: patternFloat 20s ease-in-out infinite;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
.floating-element:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
.floating-element:nth-child(4) { top: 40%; right: 30%; animation-delay: 1s; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 183, 43, 0.1);
  border: 1px solid rgba(255, 183, 43, 0.3);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 90%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 183, 43, 0.1);
  border: 1px solid rgba(255, 183, 43, 0.2);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 183, 43, 0.15);
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-trust {
  text-align: left;
}

.trust-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.trust-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trust-badge {
  padding: 0.5rem 1rem;
  background: rgba(255, 183, 43, 0.1);
  border: 1px solid rgba(255, 183, 43, 0.2);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

/* === HERO VISUAL (SOLUTIONS SHOWCASE) === */
.solutions-showcase {
  background: var(--brand-white);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: var(--shadow-brand-lg);
  border: 1px solid rgba(255, 183, 43, 0.2);
  position: relative;
  overflow: hidden;
  min-height: 640px;
  max-height: 800px;
}

.solutions-showcase::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 1.5rem;
  z-index: -1;
  opacity: 0.3;
  filter: blur(8px);
}

.showcase-header {
  text-align: center;
  margin-bottom: 2rem;
}

.showcase-title {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.showcase-subtitle {
  color: var(--text-secondary);
  font-size: 0.925rem;
  font-weight: 500;
}

.solution-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.375rem;
  margin-bottom: 2rem;
}

.solution-card {
  padding: 1.375rem;
  background: var(--bg-secondary);
  border-radius: 1rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-brand-lg);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card.primary {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
}

.solution-card.secondary {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
}

.solution-card.accent {
  background: linear-gradient(135deg, rgba(255, 183, 43, 0.05) 0%, rgba(255, 183, 43, 0.02) 100%);
}

.solution-card.highlight {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.card-icon {
  font-size: 2.25rem;
  margin-bottom: 0.875rem;
  display: block;
}

.card-content h4 {
  font-size: 1.075rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.card-content p {
  font-size: 0.825rem;
  color: var(--text-secondary);
  margin-bottom: 0.875rem;
  line-height: 1.35;
}

.card-benefit {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--brand-white);
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.trust-indicators {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1.25rem 0;
  background: var(--bg-secondary);
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.trust-label {
  font-size: 0.725rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

/* === BOLD STATEMENT SECTION === */
.statement-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  position: relative;
  overflow: hidden;
}

.statement-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 183, 43, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.statement-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.statement-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 183, 43, 0.1);
  color: var(--brand-primary);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 183, 43, 0.2);
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 1.2rem;
}

.statement-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.statement-description {
  font-size: 1.25rem;
  color: #cbd5e0;
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.statement-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 183, 43, 0.3);
}

.feature-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 12px;
  flex-shrink: 0;
}

.feature-item span {
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
}

/* Responsive Design for Statement Section */
@media (max-width: 768px) {
  .statement-section {
    padding: 100px 0;
  }
  
  .statement-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-item {
    padding: 20px;
    gap: 12px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .feature-item span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .statement-badge {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .statement-description {
    font-size: 1.125rem;
  }
}

/* === SECTIONS PROPER SPACING === */
.solutions-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.success-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.story-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.why-choose-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.final-cta-section {
  padding: 6rem 0;
  background: var(--gradient-black-gold);
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-primary);
  color: var(--brand-black);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* === SOLUTION CARDS === */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.solution-card {
  background: var(--brand-white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-black);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-brand-lg);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.solution-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-gold-black);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-white);
  transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon {
  transform: scale(1.1) rotate(5deg);
}

.solution-number {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-primary);
  background: rgba(255, 183, 43, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

.solution-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.solution-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.solution-features {
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.feature-icon {
  font-size: 1rem;
}

.solution-impact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.impact-item {
  text-align: center;
  padding: 0.75rem;
  background: var(--bg-secondary);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 183, 43, 0.2);
}

.impact-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-primary);
  display: block;
}

.impact-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.solution-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.solution-cta:hover {
  gap: 0.75rem;
  color: var(--brand-secondary);
}

/* === REDESIGNED FOOTER === */
.footer {
  background: var(--brand-black);
  color: var(--brand-white);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}



.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  grid-column: 2 / -1;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 48px; /* Increased from 32px */
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-tagline {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--brand-primary);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 48px;
  height: 48px;
  background: rgba(255, 183, 43, 0.1);
  border: 1px solid rgba(255, 183, 43, 0.3);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--brand-primary);
  color: var(--brand-black);
  transform: translateY(-2px);
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--brand-white);
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 2rem;
  height: 2px;
  background: var(--brand-primary);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--brand-primary);
}

.contact-info {
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-icon {
  font-size: 1.125rem;
  color: var(--brand-primary);
  margin-top: 2px;
}

.contact-details {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.contact-details strong {
  color: var(--brand-white);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: var(--brand-primary);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 183, 43, 0.2);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-content p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--brand-primary);
}

/* === BACK TO TOP & CHAT === */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  color: var(--brand-black);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-brand);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand-lg);
}

.chat-widget {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 100;
}

.chat-toggle {
  width: 56px;
  height: 56px;
  background: var(--gradient-gold-black);
  color: var(--brand-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-black);
  transition: all 0.3s ease;
  position: relative;
}

.chat-toggle:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-black-lg);
}

.chat-notification {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--error);
  color: var(--brand-white);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  animation: notificationPulse 2s infinite;
}

@keyframes notificationPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* === ANIMATIONS === */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes patternFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-20px, -20px); }
  66% { transform: translate(20px, -10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  .hero-section .container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-visual {
    justify-self: center;
    max-width: 400px;
  }
  
  .solutions-showcase {
    padding: 2.5rem 2rem;
    margin: 1rem;
    min-height: auto;
  }
  
  .solution-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .solution-card {
    padding: 2rem 1.5rem;
  }
  
  .solution-card h3 {
    font-size: 1.25rem;
  }
  
  .solution-card p {
    font-size: 0.95rem;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1.5rem;
    --section-padding: 4rem 0;
  }
  
  .solutions-showcase {
    padding: 2rem 1.5rem;
    margin: 1rem 0.5rem;
    border-radius: 1rem;
  }
  
  .showcase-title {
    font-size: 1.5rem !important;
    margin-bottom: 1rem;
  }
  
  .showcase-subtitle {
    font-size: 0.95rem !important;
  }
  
  .solution-cards-grid {
    gap: 1.25rem;
  }
  
  .solution-card {
    padding: 1.75rem 1.25rem;
    text-align: center;
  }
  
  .solution-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  
  .solution-card p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  
  .solution-card .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .hero-section {
    padding: 6rem 0 4rem;
  }
  
  .hero-section .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-visual {
    order: -1;
    max-width: 100%;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  
  .solution-impact {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .social-link {
    width: 44px;
    height: 44px;
  }
  
  .back-to-top,
  .chat-widget {
    bottom: 1rem;
  }
  
  .back-to-top {
    right: 1rem;
  }
  
  .chat-widget {
    left: 1rem;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .trust-badges {
    justify-content: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .btn {
    padding: 1rem 1.5rem;
    width: 100%;
    justify-content: center;
  }
  
  .btn-lg {
    padding: 1.25rem 2rem;
  }
}

/* === SUCCESS CARDS === */
.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.success-card {
  background: var(--brand-white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-black);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.success-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand);
  border-color: var(--brand-primary);
}

.success-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.success-industry {
  padding: 0.5rem 1rem;
  background: var(--gradient-primary);
  color: var(--brand-black);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.success-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.success-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.success-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric {
  text-align: center;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 183, 43, 0.2);
}

.metric-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-primary);
  display: block;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.success-quote {
  background: var(--bg-secondary);
  border-left: 4px solid var(--brand-primary);
  padding: 1rem;
  margin: 0;
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
}

/* === STORY SECTION === */
.story-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.story-lead {
  font-size: 1.25rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.story-timeline {
  margin: 2rem 0;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 28px;
  top: 60px;
  width: 2px;
  height: 40px;
  background: var(--gray-300);
}

.timeline-year {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  color: var(--brand-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.timeline-content h4 {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.story-stat {
  text-align: center;
  padding: 1rem;
  background: var(--brand-white);
  border-radius: 1rem;
  box-shadow: var(--shadow-black);
  border: 1px solid rgba(255, 183, 43, 0.2);
}

.story-stat .stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  display: block;
}

.story-stat .stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* === LEADERSHIP SHOWCASE === */
.leadership-showcase {
  background: var(--brand-white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-black);
  border: 1px solid rgba(255, 183, 43, 0.2);
  position: sticky;
  top: 6rem;
}

.leader-avatar {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
}

.leader-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--brand-primary);
}

.leader-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0.25rem 0.5rem;
  background: var(--gradient-primary);
  color: var(--brand-black);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.leader-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 0.5rem;
}

.leader-title {
  color: var(--brand-primary);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 500;
}

.leader-credentials {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.credential {
  padding: 0.25rem 0.5rem;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 183, 43, 0.3);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-primary);
}

.leader-description {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* === VALUES SHOWCASE === */
.values-showcase {
  background: var(--bg-secondary);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 2rem;
}

.values-title {
  text-align: center;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--brand-white);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.value-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}

.value-letter {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  color: var(--brand-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.value-word {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

.values-motto {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* === MAJOR CLIENTS SECTION === */
.major-clients-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.clients-showcase {
  margin-top: 80px;
  text-align: center;
}

.clients-image-hero {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 60px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.clients-image-hero:hover {
  transform: translateY(-12px);
}

.clients-hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.clients-image-hero:hover .clients-hero-image {
  transform: scale(1.03);
}

.clients-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  padding: 60px 40px 40px;
  color: white;
}

.client-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
}

.clients-cta-centered {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.clients-cta-centered .btn {
  min-width: 200px;
  padding: 16px 32px;
  font-size: 1.125rem;
  font-weight: 600;
}

/* Responsive Design for Major Clients */
@media (max-width: 1024px) {
  .clients-image-hero {
    max-width: 90%;
  }
  
  .client-stats {
    gap: 40px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .major-clients-section {
    padding: 100px 0;
  }
  
  .clients-overlay {
    padding: 40px 20px 20px;
  }
  
  .client-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .clients-cta-centered {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .clients-image-hero {
    margin-bottom: 40px;
    border-radius: 20px;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .stat-label {
    font-size: 0.875rem;
  }
  
  .clients-cta-centered .btn {
    min-width: auto;
    width: 100%;
  }
}

/* === WHY CHOOSE SECTION === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.why-item {
  text-align: center;
  padding: 2rem;
  background: var(--brand-white);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-black);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-8px);
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-brand-lg);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-gold-black);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-white);
  transition: transform 0.3s ease;
}

.why-item:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-item h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.why-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.why-metric {
  padding: 0.75rem;
  background: var(--bg-secondary);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 183, 43, 0.2);
}

.why-metric .metric-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-primary);
  display: block;
}

.why-metric .metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* === FINAL CTA SECTION === */
.final-cta-section {
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-black-gold);
}

.cta-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--brand-white);
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 183, 43, 0.1);
  border: 1px solid rgba(255, 183, 43, 0.3);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 183, 43, 0.1);
  border: 1px solid rgba(255, 183, 43, 0.2);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

.benefit-icon {
  font-size: 1.5rem;
}

.benefit-text {
  font-weight: 500;
}

.benefit-text small {
  display: block;
  opacity: 0.8;
  font-size: 0.875rem;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-contact {
  text-align: center;
}

.cta-contact p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-primary);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.phone-link:hover {
  color: var(--brand-white);
  transform: scale(1.05);
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 1024px) {
  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .leadership-showcase {
    position: static;
  }
}

@media (max-width: 768px) {
  .success-metrics {
    grid-template-columns: 1fr;
  }
  
  .story-stats {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-benefits {
    grid-template-columns: 1fr;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-item {
    flex-direction: column;
    text-align: center;
  }
  
  .timeline-item::after {
    display: none;
  }
}

.footer-main {
  /* This should contain just the brand section */
}

.logo-img {
  height: 55px;
  width: auto;
}

/* In footer */
.footer-logo img {
  height: 99px;
  width: auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

/* ===== NEW SECTIONS STYLES ===== */

/* Solutions Category Titles */
.solutions-category-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 4rem;
}

.solutions-category-title:first-of-type {
  margin-top: 0;
}

/* Core Solutions Grid */
.core-solutions-grid {
  margin-bottom: 4rem;
}

/* Specialized Services Grid */
.specialized-services-grid {
  margin-bottom: 4rem;
}

.services-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-category {
  background: var(--bg-primary);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.service-category:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-brand);
  transform: translateY(-4px);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.category-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 12px;
  color: var(--brand-black);
}

.category-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--gray-50);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: rgba(255, 183, 43, 0.1);
  color: var(--text-primary);
  transform: translateX(4px);
}

.service-name {
  flex: 1;
}

.service-arrow {
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.service-item:hover .service-arrow {
  transform: translateX(4px);
}

/* Partners Section */
.partners-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.partners-category {
  margin-bottom: 4rem;
}

.partners-category-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 3rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.partner-card {
  background: var(--bg-primary);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.partner-card:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-brand);
  transform: translateY(-4px);
}

.partner-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gray-200);
}

.logo-placeholder {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.partner-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.partner-role {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

/* Clients Showcase */
.clients-category {
  margin-bottom: 4rem;
}

.client-sectors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.sector-group {
  background: var(--bg-primary);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.sector-group:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-brand);
  transform: translateY(-4px);
}

.sector-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray-100);
}

.sector-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 12px;
  color: var(--brand-black);
}

.sector-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.sector-clients {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.client-name {
  padding: 0.75rem 1rem;
  background: var(--gray-50);
  border-radius: 8px;
  color: var(--text-secondary);
  font-weight: 500;
  border-left: 3px solid var(--brand-primary);
}

/* Trust Metrics */
.trust-metrics {
  margin-top: 4rem;
  padding: 3rem 0;
  border-top: 1px solid var(--gray-200);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.metric-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-primary);
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.metric-item:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-brand);
  transform: translateY(-4px);
}

.metric-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.metric-value::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--text-secondary);
}

.metric-label {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Partnership CTA */
.partnership-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--gradient-primary);
  border-radius: 1.5rem;
  color: var(--brand-black);
  margin-top: 3rem;
}

.partnership-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.partnership-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.partnership-cta .cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.partnership-cta .btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.partnership-cta .btn-primary {
  background: var(--brand-black);
  color: var(--brand-white);
  border: 2px solid var(--brand-black);
}

.partnership-cta .btn-primary:hover {
  background: var(--brand-white);
  color: var(--brand-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.partnership-cta .btn-outline {
  background: transparent;
  color: var(--brand-black);
  border: 2px solid var(--brand-black);
}

.partnership-cta .btn-outline:hover {
  background: var(--brand-black);
  color: var(--brand-white);
  transform: translateY(-2px);
}

/* Navigation Dropdown Sections */
.dropdown-section {
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.dropdown-section:last-child {
  border-bottom: none;
}

.dropdown-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  padding: 0 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-categories {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .client-sectors {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .solutions-category-title {
    font-size: 1.75rem;
  }
  
  .partners-category-title {
    font-size: 1.75rem;
  }
  
  .partnership-cta .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .partnership-cta .btn {
    width: 200px;
    text-align: center;
  }
}

/* === SUCCESS STORIES SECTION === */
.success-stories-section {
  padding: 6rem 0;
  background: var(--bg-primary);
  position: relative;
}

/* Stories Carousel Container */
.stories-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

.carousel-btn {
  position: absolute;
  top: 0;
  width: 48px;
  height: 48px;
  background: var(--brand-white);
  border: 2px solid var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  box-shadow: var(--shadow-brand);
}

.carousel-btn:hover {
  background: var(--brand-primary);
  color: var(--brand-white);
  transform: scale(1.1);
}

.carousel-prev {
  left: -60px;
}

.carousel-next {
  right: -60px;
}

/* Stories Carousel */
.stories-carousel {
  overflow: hidden;
  border-radius: 1rem;
}

.stories-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 2rem;
}

/* Story Cards */
.story-card {
  flex: 0 0 calc(33.333% - 1.333rem);
  background: var(--brand-white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-black);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  cursor: pointer;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-brand-lg);
  border-color: var(--brand-primary);
}

.story-card.slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Story Image */
.story-image {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--gray-100) 100%);
  position: relative;
}

.image-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-white);
  box-shadow: var(--shadow-black);
}

/* Story Content */
.story-content {
  padding: 2rem;
}

.story-quote {
  position: relative;
  margin-bottom: 1.5rem;
}

.quote-icon {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 32px;
  height: 32px;
  background: var(--brand-primary);
  border-radius: 50%;
  padding: 6px;
  color: var(--brand-black);
}

.story-quote p {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.story-meta {
  margin-bottom: 1.5rem;
}

.story-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.story-subtitle {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}

.story-impact {
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 0.75rem;
  text-align: center;
  border: 1px solid rgba(255, 183, 43, 0.2);
}

.impact-metric {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 0.25rem;
}

.impact-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

/* Stories CTA */
.stories-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: var(--bg-secondary);
  border-radius: 1.5rem;
  border: 1px solid var(--gray-200);
}

.stories-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.stories-cta p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .carousel-prev {
    left: -40px;
  }
  
  .carousel-next {
    right: -40px;
  }
  
  .story-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .stories-carousel-container {
    padding: 0 1rem;
  }
  
  .carousel-controls {
    display: none;
  }
  
  .story-card {
    flex: 0 0 calc(100% - 1rem);
  }
  
  .stories-track {
    gap: 1rem;
  }
  
  .story-content {
    padding: 1.5rem;
  }
  
  .story-title {
    font-size: 1.125rem;
  }
  
  .impact-metric {
    font-size: 1.25rem;
  }
  
  .stories-cta {
    padding: 2rem 1rem;
  }
  
  .stories-cta h3 {
    font-size: 1.5rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .success-stories-section {
    padding: 4rem 0;
  }
  
  .story-quote p {
    font-size: 0.875rem;
  }
  
  .story-image {
    height: 100px;
  }
  
  .image-placeholder {
    width: 60px;
    height: 60px;
  }
  
  .quote-icon {
    width: 28px;
    height: 28px;
    padding: 4px;
  }
}

/* ===== ENHANCED MOBILE RESPONSIVENESS ===== */
@media (max-width: 480px) {
  /* Solutions showcase mobile optimization */
  .solutions-showcase {
    padding: 2rem 1.25rem !important;
    margin: 0.75rem !important;
    border-radius: 1rem;
    min-height: auto !important;
    max-height: none !important;
  }
  
  .showcase-header {
    margin-bottom: 2rem;
  }
  
  .showcase-title {
    font-size: 1.75rem !important;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.25;
  }
  
  .showcase-subtitle {
    font-size: 1rem !important;
    line-height: 1.4;
  }
  
  .solution-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    margin-bottom: 2rem;
  }
  
  .solution-card {
    padding: 2rem 1.5rem !important;
    min-height: 200px;
    text-align: center;
    border-radius: 1rem;
  }
  
  .solution-card .card-icon {
    font-size: 3rem !important;
    margin-bottom: 1.5rem;
    display: block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto 1.5rem auto;
    background: rgba(255, 183, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .solution-card .card-content h4 {
    font-size: 1.375rem !important;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-primary);
  }
  
  .solution-card .card-content p {
    font-size: 1rem !important;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--text-secondary);
  }
  
  .solution-card .card-benefit {
    font-size: 1rem !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: var(--brand-primary);
    color: var(--brand-black);
    border-radius: 0.75rem;
    display: inline-block;
    margin-top: 0.5rem;
  }
}

/* Mobile optimization for iPhone XR and similar large mobile devices */
@media (min-width: 414px) and (max-width: 767px) {
  .solutions-showcase {
    padding: 2.5rem 2rem !important;
    margin: 1rem 0.75rem !important;
    border-radius: 1.25rem;
  }
  
  .showcase-title {
    font-size: 2rem !important;
    margin-bottom: 1.25rem;
  }
  
  .showcase-subtitle {
    font-size: 1.125rem !important;
  }
  
  .solution-cards-grid {
    gap: 2rem !important;
  }
  
  .solution-card {
    padding: 2.5rem 2rem !important;
    min-height: 220px;
  }
  
  .solution-card .card-icon {
    font-size: 3.5rem !important;
    width: 90px;
    height: 90px;
    line-height: 90px;
  }
  
  .solution-card .card-content h4 {
    font-size: 1.5rem !important;
    margin-bottom: 1.125rem;
  }
  
  .solution-card .card-content p {
    font-size: 1.125rem !important;
    margin-bottom: 1.25rem;
  }
  
  .solution-card .card-benefit {
    font-size: 1.125rem !important;
    padding: 0.875rem 1.75rem;
  }
}