/* ============================================
   IBCC V2 - Modern Website Styles
   Brand Colors: #007AC2, #005A92
   Font: Canva Sans
   ============================================ */

@font-face {
  font-family: 'Canva Sans';
  src: url('../fonts/CanvaSans.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Brand Colors - Refined for Premium Look */
  --brand-primary: #0071B2;
  --brand-dark: #004D7A;
  --brand-light: #0088D1;
  --brand-gradient: linear-gradient(135deg, #0071B2 0%, #004D7A 100%);
  
  /* Brand Color Aliases (for chat widget compatibility) */
  --brand-color: #0071B2;
  
  /* Background Colors */
  --bg-white: #FFFFFF;
  --bg-light: #F8F9FB;
  --bg-lighter: #FAFBFD;
  
  /* Text Colors - More Refined */
  --text-primary: #0A0E14;
  --text-secondary: #4A5568;
  --text-light: #8B96A5;
  
  /* UI Colors */
  --border-color: rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.10);
  
  /* Typography */
  --font-sans: 'Canva Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  /* Spacing - Increased for Premium Feel */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;
  
  /* Border Radius - Simplified */
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  
  /* Transitions - Ultra-minimal */
  --transition-fast: 0.12s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--brand-dark);
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */
/* Improve rendering performance for sections */
section {
  contain: layout style;
}

/* GPU acceleration for interactive elements */
button, 
.btn-hero-primary,
.btn-hero-secondary,
.btn-cta-primary,
.btn-cta-whatsapp,
.btn-whatsapp-header {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

/* Optimize cards for better paint performance */
.industry-card-v2,
.service-card-v2 {
  transform: translateZ(0);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  font-weight: 400;
}

/* ============================================
   LAYOUT & CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--brand-primary);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  z-index: 10000;
  transition: top var(--transition-fast);
}

.skip-to-content:focus {
  top: 0;
  outline: 3px solid white;
  outline-offset: 2px;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.particles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  opacity: 0.5;
  will-change: auto;
  contain: strict;
}

.floating-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  will-change: auto;
  contain: strict;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.025;
  filter: blur(80px);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--brand-primary);
  top: -200px;
  right: -200px;
  animation: float1 20s ease-in-out infinite;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: var(--brand-dark);
  bottom: -150px;
  left: -150px;
  animation: float2 18s ease-in-out infinite;
}

.shape-3 {
  width: 400px;
  height: 400px;
  background: var(--brand-light);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float3 22s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(-100px, 100px, 0) rotate(180deg); }
}

@keyframes float2 {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(100px, -100px, 0) rotate(-180deg); }
}

@keyframes float3 {
  0%, 100% { transform: translate3d(-50%, -50%, 0) scale(1); }
  50% { transform: translate3d(calc(-50% + 50px), calc(-50% - 50px), 0) scale(1.2); }
}

/* ============================================
   HEADER
   ============================================ */
.modern-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.875rem 0;
  transition: all var(--transition-normal);
}

.modern-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: opacity var(--transition-fast);
}

.logo-link:hover {
  opacity: 0.8;
}

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

.header-text-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-text-img {
  height: 65px;
  width: auto;
  max-width: 550px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-whatsapp-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: #25D366;
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.1s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-whatsapp-header:hover {
  background: #1fa855;
  color: white;
  transform: scale(1.02);
}

/* ============================================
   HERO SECTION V2
   ============================================ */
.hero-v2 {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero-slideshow-v2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  will-change: auto;
}

.hero-slide-v2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
  will-change: opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.hero-slide-v2.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0) scale(1.1);
  will-change: transform;
}

.hero-slide-v2[data-slide="2"] img {
  object-position: center 75%;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 1;
}

.hero-content-v2 {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 2rem;
  animation: fadeInUp 0.5s ease-out;
}

.hero-badge svg {
  color: #25D366;
}

.hero-title {
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.5s ease-out 0.05s both;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.gradient-text {
  color: white;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin: 0 auto 2rem;
  text-shadow: none;
  animation: fadeInUp 0.5s ease-out 0.1s both;
  font-weight: 400;
  line-height: 1.6;
}

.hero-subtitle strong {
  color: white;
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.5s ease-out 0.15s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: #007AC2;
  color: white;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.1s ease;
  border: 1px solid transparent;
  position: relative;
}

.btn-hero-primary:hover {
  background: #005A92;
  color: white;
  transform: scale(1.02);
}

.btn-hero-primary.btn-whatsapp-hero {
  background: #25D366;
}

.btn-hero-primary.btn-whatsapp-hero:hover {
  background: #1fa855;
  color: white;
  transform: scale(1.02);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: white;
  color: #1a1a1a;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.1s ease;
  border: 1px solid #e5e7eb;
}

.btn-hero-secondary:hover {
  background: #f8f9fa;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
  transform: scale(1.02);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header-v2 {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(0, 113, 178, 0.06);
  color: var(--brand-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-header-v2 h2 {
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.section-header-v2 p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.7;
}

/* ============================================
   PARTNERS SECTION V2
   ============================================ */
.partners-v2 {
  padding: 5rem 0;
  background: var(--bg-light);
  overflow: hidden;
}

.partners-showcase {
  margin-top: 2.5rem;
}

.partners-marquee {
  display: flex;
  gap: 2rem;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  animation: marquee 40s linear infinite;
  flex-shrink: 0;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  min-width: 200px;
  padding: 0 1.5rem;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  filter: grayscale(0);
  opacity: 0.85;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translate3d(0, -2px, 0);
}

.partner-logo-tall {
  height: 120px;
}

.partner-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(calc(-100% - 2rem), 0, 0); }
}

/* ============================================
   INDUSTRIES SECTION V2
   ============================================ */
.industries-v2 {
  padding: 7rem 0;
  background: var(--bg-white);
}

.industries-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.industry-card-v2 {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 450px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: none;
  contain: layout style paint;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.industry-card-v2:hover {
  transform: none;
  box-shadow: none;
}

.industry-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.industry-card-v2:hover .industry-image img {
  transform: scale(1.03);
}

.industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.1) 70%,
    transparent 100%
  );
  transition: background 0.3s ease;
}

.industry-card-v2:hover .industry-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 70%,
    transparent 100%
  );
}

.industry-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.industry-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  color: white;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  border: none;
}

.industry-card-v2:hover .industry-icon {
  background: transparent;
  border-color: transparent;
  transform: none;
}

.industry-content h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.industry-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

/* ============================================
   SERVICES SECTION V2
   ============================================ */
.services-v2 {
  padding: 7rem 0;
  background: var(--bg-light);
}

.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.service-card-v2 {
  background: white;
  border-radius: 0;
  padding: 3rem 2rem;
  transition: all 0.25s ease;
  border: none;
  border-top: 3px solid transparent;
  position: relative;
  contain: layout style paint;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.service-card-v2::before {
  display: none;
}

.service-card-v2:hover {
  border-top-color: var(--brand-primary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translate3d(0, -4px, 0);
}

.service-card-v2.featured {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-dark) 100%);
  color: white;
  border-color: transparent;
  transform: none;
}

.service-card-v2.featured h3,
.service-card-v2.featured p,
.service-card-v2.featured li {
  color: white;
}

.service-card-v2.featured .service-icon-v2 {
  background: transparent;
  color: white;
  border: none;
}

.service-card-v2.featured:hover .service-icon-v2 {
  background: transparent;
  border: none;
}

.featured-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.25rem 0.625rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-icon-v2 {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  color: var(--brand-primary);
  margin-bottom: 2rem;
  transition: all 0.25s ease;
  border: none;
}

.service-card-v2 h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card-v2 > p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-weight: 700;
}

.service-card-v2.featured .service-features li::before {
  color: white;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.15s ease;
}

.service-card-v2.featured .service-link {
  color: white;
}

.service-link:hover {
  gap: 0.625rem;
}

.service-card-v2.featured .service-link:hover {
  color: white;
}

/* Services Breakdown Section */
.services-breakdown {
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 1px solid var(--border-color);
}

.breakdown-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.breakdown-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.breakdown-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.breakdown-column h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.breakdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.breakdown-list li {
  padding: 1rem 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.breakdown-list li:last-child {
  border-bottom: none;
}

.breakdown-list li:hover {
  color: var(--brand-primary);
  padding-left: 0.5rem;
}

/* ============================================
   CTA SECTION V2
   ============================================ */
.cta-section-v2 {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-dark) 100%);
  z-index: 0;
}

.cta-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  opacity: 1;
}

.cta-content-v2 {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-text h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.cta-actions-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: white;
  color: #1a1a1a;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.1s ease;
  border: 1px solid #e5e7eb;
}

.btn-cta-primary:hover {
  background: #f8f9fa;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
  transform: scale(1.02);
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: #25D366;
  color: white;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.1s ease;
  border: 1px solid transparent;
}

.btn-cta-whatsapp:hover {
  background: #1fa855;
  color: white;
  transform: scale(1.02);
}

.cta-contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  font-weight: 400;
}

.contact-item strong {
  font-weight: 600;
  margin-right: 0.5rem;
  color: white;
}

/* ============================================
   FOOTER V2
   ============================================ */
.footer-v2 {
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 2rem;
}

.footer-grid-v2 {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand img {
  height: 65px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: white;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--brand-primary);
  transform: translateY(-2px);
}

.footer-links-group h4 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.footer-links-group ul {
  list-style: none;
}

.footer-links-group li {
  margin-bottom: 0.65rem;
}

.footer-links-group a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links-group a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.footer-credit a {
  color: var(--brand-light);
  font-weight: 600;
}

.footer-credit a:hover {
  color: white;
}

/* ============================================
   AOS ANIMATIONS
   ============================================ */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
  opacity: 1;
}
[data-aos="fade-up"] {
  transform: translateY(20px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .industries-grid-v2 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  
  .industry-card-v2 {
    height: 350px;
  }
}

@media (max-width: 1024px) {
  .header-text-wrap {
    display: none;
  }
  
  .industries-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .industry-card-v2 {
    height: 320px;
  }
  
  .footer-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-v2 {
    min-height: 70vh;
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-hero-tertiary {
    width: auto;
    min-width: 200px;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-trust-indicators {
    gap: 1.5rem;
  }
  
  .trust-number {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .industries-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  .services-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  .breakdown-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .breakdown-header h2 {
    font-size: 1.75rem;
  }
  
  .breakdown-column h3 {
    font-size: 1.25rem;
  }
  
  .service-card-v2.featured {
    transform: scale(1);
  }
  
  .cta-actions-v2 {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta-primary,
  .btn-cta-whatsapp {
    width: auto;
    min-width: 200px;
    max-width: 280px;
    justify-content: center;
  }
  
  .footer-grid-v2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .header-actions {
    gap: 0.5rem;
  }
  
  .btn-contact-header,
  .btn-whatsapp-header {
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    white-space: nowrap;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-v2 {
    padding: 3rem 0;
  }
  
  .logo-img {
    height: 45px;
  }
  
  .btn-whatsapp-header span {
    display: none;
  }
  
  .btn-whatsapp-header svg {
    margin: 0;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    min-width: 160px;
    max-width: 240px;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .section-header-v2 h2 {
    font-size: 1.75rem;
  }
  
  .section-header-v2 p {
    font-size: 0.95rem;
  }
  
  .partner-logo {
    min-width: 90px;
    max-width: 120px;
  }
  
  .industry-card-v2 {
    height: 280px;
  }
  
  .btn-cta-primary,
  .btn-cta-whatsapp {
    min-width: 160px;
    max-width: 240px;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* ============================================
   PERFORMANCE: REDUCE MOTION & MOBILE OPTIMIZATION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Disable expensive animations on mobile for better performance */
@media (max-width: 768px) {
  .particles-bg {
    display: none;
  }
  
  .floating-shapes .shape {
    animation: none;
  }
  
  .hero-slide-v2 img {
    transform: scale(1.05) !important;
  }
}

/* Optimize for touch devices */
@media (hover: none) and (pointer: coarse) {
  .service-card-v2:hover,
  .industry-card-v2:hover,
  .partner-logo:hover {
    transform: none;
  }
}
