/* ===================================
   Ads Hub - Main Stylesheet
   Design System & Base Styles
   =================================== */

/* ===================================
   CSS Custom Properties (Variables)
   =================================== */

:root {
  /* Primary Colors */
  --primary-blue: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  
  /* Secondary Colors */
  --secondary-purple: #7c3aed;
  --secondary-orange: #f59e0b;
  
  /* Neutral Colors */
  --dark-bg: #0f172a;
  --dark-gray: #1e293b;
  --medium-gray: #475569;
  --light-gray: #e2e8f0;
  --white: #ffffff;
  
  /* Gradient Backgrounds */
  --gradient-1: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --gradient-2: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --gradient-3: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
  
  /* Service-specific gradients */
  --gradient-social: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  --gradient-seo: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  --gradient-ppc: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  /* Font Sizes */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;     /* 18px */
  --text-xl: 1.25rem;      /* 20px */
  --text-2xl: 1.5rem;      /* 24px */
  --text-3xl: 1.875rem;    /* 30px */
  --text-4xl: 2.25rem;     /* 36px */
  --text-5xl: 3rem;        /* 48px */
  --text-6xl: 3.75rem;     /* 60px */
  
  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  
  /* Spacing System */
  --space-1: 0.25rem;      /* 4px */
  --space-2: 0.5rem;       /* 8px */
  --space-3: 0.75rem;      /* 12px */
  --space-4: 1rem;         /* 16px */
  --space-5: 1.25rem;      /* 20px */
  --space-6: 1.5rem;       /* 24px */
  --space-8: 2rem;         /* 32px */
  --space-10: 2.5rem;      /* 40px */
  --space-12: 3rem;        /* 48px */
  --space-16: 4rem;        /* 64px */
  --space-20: 5rem;        /* 80px */
  --space-24: 6rem;        /* 96px */
  
  /* Border Radius */
  --radius-sm: 0.375rem;   /* 6px */
  --radius-md: 0.5rem;     /* 8px */
  --radius-lg: 0.75rem;    /* 12px */
  --radius-xl: 1rem;       /* 16px */
  --radius-2xl: 1.5rem;    /* 24px */
  --radius-full: 9999px;   /* Fully rounded */
}

/* ===================================
   CSS Reset & Base Styles
   =================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  line-height: 1.2;
  margin-bottom: var(--space-4);
  color: var(--dark-bg);
}

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: var(--space-4);
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* ===================================
   Layout Utilities
   =================================== */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

main {
  min-height: 100vh;
}

section {
  padding: var(--space-20) 0;
}

/* ===================================
   Buttons
   =================================== */

.btn {
  display: inline-block;
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===================================
   Cards
   =================================== */

.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ===================================
   Images
   =================================== */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===================================
   Lists
   =================================== */

ul, ol {
  list-style: none;
}

/* ===================================
   Forms
   =================================== */

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  width: 100%;
  padding: var(--space-4);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-blue);
}

label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: var(--font-medium);
  color: var(--dark-gray);
}

/* ===================================
   Utility Classes
   =================================== */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }

.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* ===================================
   Hero Section - Exact Match Design
   =================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #e8eeff 0%, #f0f4ff 50%, #f8f9ff 100%);
  overflow: hidden;
  padding: var(--space-12) 0;
  width: 100%;
  max-width: 100vw;
}

/* Background Decorations */
.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Dispersed Circles - Modern Pattern */
.dispersed-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: floatCircle 20s ease-in-out infinite;
}

/* Individual Circle Styles */
.circle-1 {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  top: 8%;
  right: 15%;
  animation-delay: 0s;
}

.circle-2 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  top: 25%;
  right: 8%;
  animation-delay: 2s;
}

.circle-3 {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  top: 15%;
  right: 35%;
  animation-delay: 4s;
}

.circle-4 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  top: 45%;
  right: 5%;
  animation-delay: 1s;
}

.circle-5 {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
  top: 55%;
  right: 25%;
  animation-delay: 3s;
}

.circle-6 {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
  bottom: 15%;
  right: 12%;
  animation-delay: 5s;
}

.circle-7 {
  width: 95px;
  height: 95px;
  background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
  bottom: 8%;
  right: 30%;
  animation-delay: 2.5s;
}

.circle-8 {
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, #c7d2fe 0%, #a5b4fc 100%);
  top: 35%;
  right: 40%;
  animation-delay: 1.5s;
}

.circle-9 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
  bottom: 25%;
  right: 18%;
  animation-delay: 4.5s;
}

.circle-10 {
  width: 85px;
  height: 85px;
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  top: 65%;
  right: 35%;
  animation-delay: 3.5s;
}

.circle-11 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
  top: 5%;
  right: 25%;
  animation-delay: 6s;
}

.circle-12 {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  bottom: 35%;
  right: 8%;
  animation-delay: 5.5s;
}

/* Left Side Circles */
.circle-left-1 {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #a5b4fc 0%, #818cf8 100%);
  top: 12%;
  left: 8%;
  animation-delay: 1s;
}

.circle-left-2 {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #c7d2fe 0%, #a5b4fc 100%);
  top: 35%;
  left: 15%;
  animation-delay: 3s;
}

.circle-left-3 {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
  top: 55%;
  left: 5%;
  animation-delay: 5s;
}

.circle-left-4 {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
  bottom: 20%;
  left: 12%;
  animation-delay: 2s;
}

.circle-left-5 {
  width: 95px;
  height: 95px;
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  top: 25%;
  left: 3%;
  animation-delay: 4s;
}

.circle-left-6 {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  bottom: 8%;
  left: 20%;
  animation-delay: 6s;
}

@keyframes floatCircle {
  0%, 100% { 
    transform: translate(0, 0) scale(1);
    opacity: 0.15;
  }
  25% { 
    transform: translate(15px, -15px) scale(1.05);
    opacity: 0.2;
  }
  50% { 
    transform: translate(-10px, 10px) scale(0.95);
    opacity: 0.12;
  }
  75% { 
    transform: translate(10px, 15px) scale(1.02);
    opacity: 0.18;
  }
}

/* Gradient Blobs for Depth - Subtle Background */
.gradient-blob {
  position: absolute;
  filter: blur(100px);
  opacity: 0.3;
  border-radius: 50%;
  animation: blobPulse 25s ease-in-out infinite;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, rgba(99, 102, 241, 0.2) 50%, transparent 100%);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(37, 99, 235, 0.15) 50%, transparent 100%);
  top: 40%;
  right: 20%;
  animation-delay: 8s;
}

.blob-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.35) 0%, rgba(139, 92, 246, 0.18) 50%, transparent 100%);
  bottom: 15%;
  right: 5%;
  animation-delay: 16s;
}

@keyframes blobPulse {
  0%, 100% { 
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  33% { 
    transform: translate(20px, -20px) scale(1.1);
    opacity: 0.25;
  }
  66% { 
    transform: translate(-15px, 15px) scale(0.9);
    opacity: 0.35;
  }
}

/* Hero Grid Layout */
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  min-height: auto;
}

/* Left Side - Content */
.hero-content {
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--primary-blue);
  margin-bottom: var(--space-6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  margin-top: 30px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge svg {
  color: var(--primary-blue);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--font-bold);
  color: var(--dark-bg);
  line-height: 1.15;
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.highlight-text {
  color: var(--primary-blue);
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(37, 99, 235, 0.2);
  z-index: -1;
  border-radius: 4px;
  animation: expandWidth 0.6s ease-out 1.2s both;
}

@keyframes expandWidth {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.hero-description {
  font-size: var(--text-lg);
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  max-width: 540px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-cta .btn {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary-blue);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-outline {
  background: white;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
}

/* Inline Stats */
.hero-stats-inline {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.stat-inline {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
}

.stat-inline .stat-number {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--dark-bg);
  font-family: var(--font-heading);
}

.stat-inline .stat-plus {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--primary-blue);
}

.stat-inline .stat-text {
  font-size: var(--text-sm);
  color: var(--medium-gray);
  margin-left: var(--space-2);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--light-gray);
}

/* Right Side - Visual Composition */
.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-visual-composition {
  position: relative;
  width: 100%;
  max-width: 780px;
  height: 680px;
  margin-left: auto;
}

/* Main Central Image (Team at Whiteboard) */
.hero-image-main {
  position: absolute;
  top: 42%;
  left: 42%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 345px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.2);
  z-index: 3;
  animation: fadeInScale 0.8s ease-out 0.6s both;
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Circular Images */
.hero-circle-image {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
  border: 12px solid white;
  animation: fadeInScaleCircle 0.8s ease-out both;
}

@keyframes fadeInScaleCircle {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Top Left Circle (Analytics Dashboard) - Large with 750K+ */
.circle-top-left {
  width: 320px;
  height: 320px;
  top: 350px;
  left: -70px;
  z-index: 4;
  animation-delay: 0.8s;
}

/* Bottom Right Circle (Business Planning) - Large */
.circle-bottom-right {
  width: 280px;
  height: 280px;
  bottom: 90px;
  right: -50px;
  z-index: 4;
  animation-delay: 1s;
}

/* Bottom Center Small Circle (Meeting) - Small with 4.9/5 */
.circle-bottom-center {
  width: 200px;
  height: 200px;
  bottom: -25px;
  left: 35%;
  transform: translateX(-50%);
  z-index: 5;
  animation-delay: 1.2s;
}

/* 750K+ Stat Card on Top Left Circle */
.circle-stat-card {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 16px 20px;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 180px;
  animation: fadeInUp 0.8s ease-out 1.4s both;
  z-index: 6;
}

.circle-stat-card svg {
  width: 28px;
  height: 28px;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.circle-stat-card .stat-value {
  font-size: 20px;
  font-weight: var(--font-bold);
  color: var(--dark-bg);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.circle-stat-card .stat-label {
  font-size: 11px;
  color: var(--medium-gray);
  display: block;
}

/* 4.9/5 Rating Card on Bottom Center Circle */
.circle-rating-card {
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  text-align: center;
  min-width: 120px;
  animation: fadeInUp 0.8s ease-out 1.6s both;
  z-index: 7;
}

.circle-rating-card .rating-value {
  font-size: 18px;
  font-weight: var(--font-bold);
  color: var(--dark-bg);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.circle-rating-card .rating-label {
  font-size: 10px;
  color: var(--medium-gray);
  font-weight: var(--font-medium);
  display: block;
}

/* Floating Stat Cards */
.hero-stat-card {
  position: absolute;
  background: white;
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 6;
  animation: floatCard 3.5s ease-in-out infinite, fadeInUp 0.8s ease-out both;
  min-width: 170px;
  max-width: 200px;
}

/* +320% Campaign ROI - Top Right with house icon */
.stat-card-growth {
  top: 3%;
  right: -4%;
  animation-delay: 0s, 1s;
}

/* 5/5 Client Rating - Bottom Right with star */
.stat-card-clients {
  bottom: 3%;
  right: -12%;
  animation-delay: 1.2s, 1.4s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-stat-card .stat-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 16px;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.hero-stat-card .stat-card-content {
  display: flex;
  flex-direction: column;
}

.hero-stat-card .stat-card-value {
  font-size: 20px;
  font-weight: var(--font-bold);
  color: var(--dark-bg);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-card .stat-card-label {
  font-size: 11px;
  color: var(--medium-gray);
  font-weight: var(--font-medium);
}

/* Responsive Design */

/* Large Laptop (1280px - 1440px) */
@media (min-width: 1280px) and (max-width: 1440px) {
  .hero-grid {
    gap: var(--space-12);
  }
  
  .hero-visual-composition {
    max-width: 700px;
    height: 620px;
  }
  
  .hero-image-main {
    width: 480px;
    height: 320px;
  }
  
  .circle-top-left {
    width: 280px;
    height: 280px;
    top: 320px;
    left: -60px;
  }
  
  .circle-bottom-right {
    width: 250px;
    height: 250px;
    bottom: 80px;
    right: -40px;
  }
  
  .circle-bottom-center {
    width: 180px;
    height: 180px;
    bottom: -20px;
    left: 35%;
  }
}

/* Standard Laptop (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
  .hero {
    padding: var(--space-10) 0;
  }
  
  .hero-grid {
    gap: var(--space-10);
  }
  
  .hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  
  .hero-description {
    font-size: var(--text-base);
    max-width: 480px;
  }
  
  .hero-visual-composition {
    max-width: 600px;
    height: 550px;
  }
  
  .hero-image-main {
    width: 420px;
    height: 280px;
    top: 45%;
  }
  
  .circle-top-left {
    width: 240px;
    height: 240px;
    top: 280px;
    left: -50px;
  }
  
  .circle-bottom-right {
    width: 220px;
    height: 220px;
    bottom: 70px;
    right: -35px;
  }
  
  .circle-bottom-center {
    width: 160px;
    height: 160px;
    bottom: -15px;
    left: 35%;
  }
  
  .dispersed-circle {
    opacity: 0.12;
  }
  
  /* Reduce circle sizes */
  .circle-1 { width: 150px; height: 150px; }
  .circle-2 { width: 100px; height: 100px; }
  .circle-3 { width: 75px; height: 75px; }
  .circle-4 { width: 130px; height: 130px; }
  .circle-5 { width: 60px; height: 60px; }
  .circle-6 { width: 95px; height: 95px; }
  .circle-7 { width: 80px; height: 80px; }
  .circle-8 { width: 110px; height: 110px; }
  .circle-9 { width: 50px; height: 50px; }
  .circle-10 { width: 70px; height: 70px; }
  .circle-11 { width: 85px; height: 85px; }
  .circle-12 { width: 65px; height: 65px; }
  
  .circle-left-1 { width: 120px; height: 120px; }
  .circle-left-2 { width: 75px; height: 75px; }
  .circle-left-3 { width: 95px; height: 95px; }
  .circle-left-4 { width: 60px; height: 60px; }
  .circle-left-5 { width: 80px; height: 80px; }
  .circle-left-6 { width: 55px; height: 55px; }
  
  .gradient-blob {
    filter: blur(80px);
  }
  
  .blob-1 { width: 500px; height: 500px; }
  .blob-2 { width: 420px; height: 420px; }
  .blob-3 { width: 380px; height: 380px; }
}

/* Tablet Landscape & Small Laptop (769px - 1023px) */
@media (min-width: 769px) and (max-width: 1023px) {
  .hero {
    min-height: auto;
    padding: var(--space-16) 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    text-align: center;
  }
  
  .hero-content {
    max-width: 650px;
    margin: 0 auto;
  }
  
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
    max-width: 550px;
  }
  
  .hero-cta {
    justify-content: center;
    margin-bottom: var(--space-8);
  }
  
  /* Hide stats on tablet */
  .hero-stats-inline {
    display: none;
  }
  
  .hero-visual-composition {
    margin: 0 auto;
    max-width: 600px;
    height: 500px;
  }
  
  .hero-image-main {
    width: 400px;
    height: 265px;
    top: 48%;
  }
  
  .circle-top-left {
    width: 220px;
    height: 220px;
    top: 260px;
    left: -35px;
  }
  
  .circle-bottom-right {
    width: 200px;
    height: 200px;
    bottom: 70px;
    right: -30px;
  }
  
  .circle-bottom-center {
    width: 160px;
    height: 160px;
    bottom: -12px;
    left: 38%;
  }
  
  .dispersed-circle {
    opacity: 0.1;
  }
  
  /* Further reduce circle sizes */
  .circle-1 { width: 120px; height: 120px; }
  .circle-2 { width: 80px; height: 80px; }
  .circle-3 { width: 60px; height: 60px; }
  .circle-4 { width: 100px; height: 100px; }
  .circle-5 { width: 50px; height: 50px; }
  .circle-6 { width: 75px; height: 75px; }
  .circle-7 { width: 65px; height: 65px; }
  .circle-8 { width: 90px; height: 90px; }
  .circle-9 { width: 40px; height: 40px; }
  .circle-10 { width: 55px; height: 55px; }
  .circle-11 { width: 70px; height: 70px; }
  .circle-12 { width: 50px; height: 50px; }
  
  .circle-left-1 { width: 100px; height: 100px; }
  .circle-left-2 { width: 60px; height: 60px; }
  .circle-left-3 { width: 75px; height: 75px; }
  .circle-left-4 { width: 50px; height: 50px; }
  .circle-left-5 { width: 65px; height: 65px; }
  .circle-left-6 { width: 45px; height: 45px; }
  
  .gradient-blob {
    filter: blur(70px);
    opacity: 0.25;
  }
  
  .blob-1 { width: 400px; height: 400px; }
  .blob-2 { width: 350px; height: 350px; }
  .blob-3 { width: 320px; height: 320px; }
}

/* Tablet Portrait (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .hero {
    padding: var(--space-12) 0;
    min-height: auto;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-badge {
    font-size: 12px;
    padding: var(--space-2) var(--space-3);
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    margin-bottom: var(--space-4);
  }
  
  .hero-description {
    font-size: var(--text-base);
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  
  .hero-cta {
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
  }
  
  .hero-cta .btn {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
  }
  
  /* Hide stats on tablet portrait */
  .hero-stats-inline {
    display: none;
  }
  
  .hero-visual-composition {
    height: 450px;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-image-main {
    width: 360px;
    height: 240px;
    top: 48%;
  }
  
  .circle-top-left {
    width: 190px;
    height: 190px;
    top: 230px;
    left: -30px;
  }
  
  .circle-bottom-right {
    width: 170px;
    height: 170px;
    bottom: 60px;
    right: -25px;
  }
  
  .circle-bottom-center {
    width: 140px;
    height: 140px;
    bottom: -10px;
    left: 38%;
  }
  
  .dispersed-circle {
    opacity: 0.08;
  }
  
  /* Hide some circles on tablet */
  .circle-3, .circle-5, .circle-9, .circle-10,
  .circle-left-2, .circle-left-4, .circle-left-6 {
    display: none;
  }
  
  .gradient-blob {
    filter: blur(60px);
    opacity: 0.2;
  }
  
  .blob-1 { width: 350px; height: 350px; }
  .blob-2 { width: 300px; height: 300px; }
  .blob-3 { width: 280px; height: 280px; }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
  .hero {
    padding: var(--space-10) 0;
    min-height: auto;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }
  
  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-badge svg {
    width: 14px;
    height: 14px;
  }
  
  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.2;
    margin-bottom: var(--space-4);
  }
  
  .hero-description {
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: var(--space-6);
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
  }
  
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-sm);
  }
  
  /* Hide stats on mobile */
  .hero-stats-inline {
    display: none;
  }
  
  .hero-visual-composition {
    height: 380px;
    max-width: 100%;
  }
  
  .hero-image-main {
    width: 300px;
    height: 200px;
    top: 48%;
  }
  
  .circle-top-left {
    width: 150px;
    height: 150px;
    top: 190px;
    left: -25px;
  }
  
  .circle-bottom-right {
    width: 130px;
    height: 130px;
    bottom: 50px;
    right: -20px;
  }
  
  .circle-bottom-center {
    width: 110px;
    height: 110px;
    bottom: -8px;
    left: 38%;
  }
  
  /* Hide most decorative circles on mobile */
  .dispersed-circle {
    display: none;
  }
  
  /* Keep only a few key circles */
  .circle-1, .circle-4, .circle-left-1 {
    display: block;
    opacity: 0.06;
    width: 80px;
    height: 80px;
  }
  
  .gradient-blob {
    filter: blur(50px);
    opacity: 0.15;
  }
  
  .blob-1 { 
    width: 280px; 
    height: 280px;
    top: 15%;
  }
  
  .blob-2 { 
    width: 240px; 
    height: 240px;
    top: 45%;
  }
  
  .blob-3 { 
    width: 220px; 
    height: 220px;
    bottom: 20%;
  }
  
  /* Hide stat cards on mobile */
  .hero-stat-card {
    display: none;
  }
  
  .circle-stat-card {
    display: none;
  }
  
  .circle-rating-card {
    display: none;
  }
}

/* ===================================
   Services Overview Section
   =================================== */

.services-section {
  padding: var(--space-20) 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16);
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--dark-bg);
  margin-bottom: var(--space-4);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-1);
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: 0;
  margin-top: var(--space-6);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-10);
  margin-top: var(--space-16);
  position: relative;
  z-index: 2;
}

/* Service Card */
.service-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.6);
}

/* Gradient Background Overlay */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

/* Shine Effect */
.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.8s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.3);
}

/* Card Content Wrapper */
.service-card > * {
  position: relative;
  z-index: 1;
}

/* Service Icon */
.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: var(--radius-2xl);
  color: var(--primary-blue);
  margin-bottom: var(--space-6);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.15);
  position: relative;
}

.service-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-2xl);
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.service-card:hover .service-icon {
  background: var(--gradient-1);
  color: white;
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.service-card:hover .service-icon::before {
  opacity: 1;
  animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0;
  }
}

.service-icon svg {
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card:hover .service-icon svg {
  transform: scale(1.1) rotate(5deg);
}

/* Service Title */
.service-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--dark-bg);
  margin-bottom: var(--space-4);
  line-height: 1.3;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--primary-blue);
}

/* Service Description */
.service-description {
  font-size: var(--text-base);
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  transition: color 0.3s ease;
}

.service-card:hover .service-description {
  color: var(--dark-gray);
}

/* Service Features List */
.service-features {
  list-style: none;
  margin-bottom: var(--space-8);
  padding: 0;
}

.service-features li {
  font-size: var(--text-sm);
  color: var(--dark-gray);
  padding: var(--space-3) 0;
  padding-left: var(--space-8);
  position: relative;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.service-features li::after {
  content: '✓';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-blue);
  font-size: 13px;
  font-weight: var(--font-bold);
  transition: all 0.3s ease;
}

.service-card:hover .service-features li {
  color: var(--dark-bg);
  padding-left: var(--space-10);
}

.service-card:hover .service-features li::before {
  background: var(--gradient-1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.service-card:hover .service-features li::after {
  color: white;
}

/* Service Link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
}

.service-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.service-link:hover {
  color: white;
  gap: var(--space-3);
  transform: translateX(4px);
}

.service-link:hover::before {
  opacity: 1;
}

.service-link svg {
  transition: transform 0.3s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* Scroll Animation Classes */
.service-card {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  animation: serviceCardEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes serviceCardEntrance {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.25s;
}

.service-card:nth-child(3) {
  animation-delay: 0.4s;
}

/* Specific Card Accent Colors */
.service-card:nth-child(1):hover .service-icon {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.service-card:nth-child(2):hover .service-icon {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.service-card:nth-child(3):hover .service-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}


/* ===================================
   Why Choose Us Section - Modern Asymmetric Layout
   =================================== */

.why-choose-us-section {
  padding: var(--space-24) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Animated Background Elements */
.why-choose-us-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.why-choose-us-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-full);
  color: var(--primary-blue);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.section-badge svg {
  color: var(--primary-blue);
}

/* Section Header */
.why-choose-us-section .section-header {
  max-width: 900px;
  margin-bottom: var(--space-20);
}

.why-choose-us-section .section-title {
  color: var(--dark-bg);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
}

.why-choose-us-section .section-title::after {
  display: none;
}

.why-choose-us-section .highlight-text {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.why-choose-us-section .section-subtitle {
  color: var(--medium-gray);
  font-size: var(--text-xl);
  margin-top: var(--space-6);
}

/* Modern Asymmetric Grid */
.benefits-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: var(--space-6);
  position: relative;
  z-index: 2;
}

/* Card Sizes and Positions */
.large-card {
  grid-column: span 2;
  grid-row: span 2;
}

.medium-card {
  grid-column: span 2;
  grid-row: span 1;
}

.small-card {
  grid-column: span 1;
  grid-row: span 1;
}

/* Wide Card - Spans 2 columns with reduced height */
.wide-card {
  grid-column: span 2;
  grid-row: span 1;
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-6) var(--space-8);
  min-height: auto;
}

.wide-card .benefit-number {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
}

.wide-card .benefit-icon-modern {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
}

.wide-card .benefit-content-wide {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.wide-card .benefit-title-modern {
  margin-bottom: 0;
  font-size: var(--text-xl);
}

.wide-card .benefit-description-modern {
  margin-bottom: 0;
  font-size: var(--text-sm);
}

/* Modern Benefit Card */
.benefit-card-modern {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Background Pattern */
.card-background-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background-image: 
    linear-gradient(45deg, rgba(37, 99, 235, 0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(37, 99, 235, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(37, 99, 235, 0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(37, 99, 235, 0.03) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  opacity: 0.5;
  transition: transform 0.5s ease;
}

.benefit-card-modern:hover .card-background-pattern {
  transform: scale(1.5) rotate(45deg);
  opacity: 0.8;
}

/* Gradient Overlay on Hover */
.benefit-card-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.benefit-card-modern:hover::before {
  opacity: 1;
}

/* Glow Effect */
.benefit-card-modern::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #2563eb, #7c3aed, #2563eb);
  border-radius: var(--radius-2xl);
  opacity: 0;
  z-index: -1;
  filter: blur(20px);
  transition: opacity 0.5s ease;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.benefit-card-modern:hover::after {
  opacity: 0.3;
}

.benefit-card-modern:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.2);
  background: white;
}

/* Benefit Number */
.benefit-number {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  font-size: 4rem;
  font-weight: var(--font-bold);
  color: rgba(37, 99, 235, 0.06);
  line-height: 1;
  font-family: var(--font-heading);
  transition: all 0.5s ease;
}

.benefit-card-modern:hover .benefit-number {
  color: rgba(37, 99, 235, 0.12);
  transform: scale(1.2);
}

/* Modern Icon */
.benefit-icon-modern {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-2xl);
  color: var(--primary-blue);
  margin-bottom: var(--space-6);
  position: relative;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.15);
}

.benefit-icon-modern::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: var(--radius-2xl);
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.5s ease;
}

.benefit-card-modern:hover .benefit-icon-modern {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  border-color: transparent;
  color: white;
  transform: scale(1.15) rotate(-10deg);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.benefit-card-modern:hover .benefit-icon-modern::before {
  opacity: 0.6;
}

.benefit-icon-modern svg {
  transition: transform 0.5s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.benefit-card-modern:hover .benefit-icon-modern svg {
  transform: scale(1.15) rotate(10deg);
}

/* Title */
.benefit-title-modern {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--dark-bg);
  margin-bottom: var(--space-4);
  line-height: 1.3;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.large-card .benefit-title-modern {
  font-size: var(--text-3xl);
}

.benefit-card-modern:hover .benefit-title-modern {
  color: var(--primary-blue);
}

/* Description */
.benefit-description-modern {
  font-size: var(--text-base);
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.large-card .benefit-description-modern {
  font-size: var(--text-lg);
}

.benefit-card-modern:hover .benefit-description-modern {
  color: var(--dark-gray);
}

/* Stats for Large Cards */
.benefit-stats {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  z-index: 1;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.stat-value {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--dark-bg);
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: var(--font-semibold);
}

/* Color Variations */
.benefit-card-modern[data-color="blue"]:hover {
  border-color: rgba(37, 99, 235, 0.5);
}

.benefit-card-modern[data-color="purple"]:hover {
  border-color: rgba(124, 58, 237, 0.5);
}

.benefit-card-modern[data-color="green"]:hover {
  border-color: rgba(16, 185, 129, 0.5);
}

.benefit-card-modern[data-color="orange"]:hover {
  border-color: rgba(245, 158, 11, 0.5);
}

.benefit-card-modern[data-color="red"]:hover {
  border-color: rgba(239, 68, 68, 0.5);
}

.benefit-card-modern[data-color="cyan"]:hover {
  border-color: rgba(6, 182, 212, 0.5);
}

.benefit-card-modern[data-color="indigo"]:hover {
  border-color: rgba(99, 102, 241, 0.5);
}

/* Responsive Wide Card */
@media (max-width: 1024px) {
  .wide-card {
    grid-column: span 2;
    flex-direction: row;
    padding: var(--space-5) var(--space-6);
  }
  
  .wide-card .benefit-icon-modern {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .wide-card {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
    padding: var(--space-6);
  }
  
  .wide-card .benefit-content-wide {
    align-items: center;
  }
  
  .wide-card .benefit-icon-modern {
    width: 70px;
    height: 70px;
  }
}

/* Entrance Animations */
.benefit-card-modern {
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  animation: modernCardEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes modernCardEntrance {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.benefit-card-modern:nth-child(1) { animation-delay: 0.1s; }
.benefit-card-modern:nth-child(2) { animation-delay: 0.2s; }
.benefit-card-modern:nth-child(3) { animation-delay: 0.3s; }
.benefit-card-modern:nth-child(4) { animation-delay: 0.4s; }
.benefit-card-modern:nth-child(5) { animation-delay: 0.5s; }
.benefit-card-modern:nth-child(6) { animation-delay: 0.6s; }


/* ===================================
   CTA Section - Clean Minimalist Design with Floating Icons
   =================================== */

.cta-section {
  padding: var(--space-24) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
}

.cta-card-wrapper {
  background: linear-gradient(135deg, #e8f0fe 0%, #dce7f8 100%);
  border-radius: 2rem;
  padding: var(--space-20) var(--space-12);
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Decorative Waves */
.cta-card-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,60 C300,100 600,20 900,60 C1050,80 1150,60 1200,60 L1200,120 L0,120 Z' fill='%23d0dff5' opacity='0.3'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  opacity: 0.5;
}

.cta-card-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,80 C400,40 800,100 1200,80 L1200,120 L0,120 Z' fill='%23c5d6f0' opacity='0.2'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  opacity: 0.6;
}

/* Floating Icons with Continuous Animation */
.cta-floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
  z-index: 1;
  /* Continuous floating animation */
  animation: floatIconContinuous 8s ease-in-out infinite;
  /* Breathing effect */
  animation: floatIconContinuous 8s ease-in-out infinite, breathe 4s ease-in-out infinite;
}

.cta-floating-icon svg {
  width: 32px;
  height: 32px;
  color: #5b7cdb;
}

/* Different positions and delays for each icon */
.cta-floating-icon:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s, 0s;
}

.cta-floating-icon:nth-child(2) {
  top: 25%;
  right: 12%;
  animation-delay: 1.5s, 0.5s;
}

.cta-floating-icon:nth-child(3) {
  bottom: 25%;
  left: 8%;
  animation-delay: 3s, 1s;
}

.cta-floating-icon:nth-child(4) {
  top: 50%;
  right: 8%;
  animation-delay: 2s, 1.5s;
}

.cta-floating-icon:nth-child(5) {
  bottom: 20%;
  right: 15%;
  animation-delay: 0.8s, 2s;
}

.cta-floating-icon:nth-child(6) {
  top: 40%;
  left: 4%;
  animation-delay: 4s, 2.5s;
}

/* Continuous floating animation - more natural movement */
@keyframes floatIconContinuous {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -20px) rotate(5deg);
  }
  50% {
    transform: translate(-5px, -15px) rotate(-3deg);
  }
  75% {
    transform: translate(-10px, -25px) rotate(4deg);
  }
}

/* Breathing effect - subtle scale animation */
@keyframes breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

/* Hover effect on icons */
.cta-floating-icon:hover {
  animation-play-state: paused;
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
  transition: all 0.3s ease;
}

/* Content Container */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

/* Badge */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(91, 124, 219, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: #5b7cdb;
  margin-bottom: var(--space-6);
  backdrop-filter: blur(10px);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(91, 124, 219, 0.1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(91, 124, 219, 0.2);
  }
}

.cta-badge svg {
  width: 16px;
  height: 16px;
  animation: badgeIconRotate 6s linear infinite;
}

@keyframes badgeIconRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Title */
.cta-title-clean {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: var(--font-bold);
  color: #2d3748;
  line-height: 1.2;
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

/* Subtitle */
.cta-subtitle-clean {
  font-size: var(--text-lg);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: var(--space-8);
}

/* Button with enhanced animation */
.btn-cta-blue {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  background: #5b7cdb;
  color: white;
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(91, 124, 219, 0.3);
  position: relative;
  overflow: hidden;
}

/* Button shine effect */
.btn-cta-blue::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-cta-blue:hover::before {
  left: 100%;
}

.btn-cta-blue:hover {
  background: #4a6bc9;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(91, 124, 219, 0.4);
}

.btn-cta-blue svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-cta-blue:hover svg {
  transform: translateX(5px);
}

/* Hide old grid structure */
.cta-grid {
  display: none;
}

/* Entrance Animation */
.cta-card-wrapper {
  animation: ctaFadeIn 1s ease-out forwards;
}

@keyframes ctaFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Icons entrance with stagger */
.cta-floating-icon {
  opacity: 0;
  animation: iconFadeIn 0.8s ease-out forwards, floatIconContinuous 8s ease-in-out infinite, breathe 4s ease-in-out infinite;
}

.cta-floating-icon:nth-child(1) { animation-delay: 0.2s, 0.2s, 0.2s; }
.cta-floating-icon:nth-child(2) { animation-delay: 0.4s, 1.9s, 0.9s; }
.cta-floating-icon:nth-child(3) { animation-delay: 0.6s, 3.6s, 1.6s; }
.cta-floating-icon:nth-child(4) { animation-delay: 0.8s, 2.8s, 2.3s; }
.cta-floating-icon:nth-child(5) { animation-delay: 1s, 1.8s, 3s; }
.cta-floating-icon:nth-child(6) { animation-delay: 1.2s, 5.2s, 3.7s; }

@keyframes iconFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Parallax effect on scroll - will be handled by JavaScript */
.cta-floating-icon.parallax {
  transition: transform 0.3s ease-out;
}


/* ===================================
   SERVICE PAGES STYLES
   =================================== */

/* Service Hero Section */
.service-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(124, 58, 237, 0.85) 100%);
    z-index: 2;
}

.service-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: var(--space-8);
}

.service-hero .hero-title {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-4);
    animation: fadeInUp 0.8s ease-out;
}

.service-hero .hero-subtitle {
    font-size: var(--text-xl);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Service Description Section */
.service-description {
    
    
}

.service-description .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.service-description .description-content h2 {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--dark-bg);
    margin-bottom: var(--space-6);
}

.service-description .description-content h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    color: var(--primary-blue);
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
}

.service-description .description-content p {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: var(--space-4);
}

.service-description .description-image {
    position: sticky;
    top: 100px;
}

.service-description .description-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Service Benefits Section */
.service-benefits {
    padding: var(--space-20) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.service-benefits .section-title {
    text-align: center;
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--dark-bg);
    margin-bottom: var(--space-12);
}

.service-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.benefit-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.benefit-card .benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-purple) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
}

.benefit-card .benefit-icon svg {
    color: var(--white);
}

.benefit-card h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--dark-bg);
    margin-bottom: var(--space-3);
}

.benefit-card p {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--medium-gray);
}

/* Service Process Section */
.service-process {
    padding: var(--space-20) 0;
    background: var(--white);
}

.service-process .section-title {
    text-align: center;
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--dark-bg);
    margin-bottom: var(--space-4);
}

.service-process .section-subtitle {
    text-align: center;
    font-size: var(--text-xl);
    color: var(--medium-gray);
    margin-bottom: var(--space-12);
}

.service-process .process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 400px;
    gap: var(--space-8);
    align-items: center;
}

.process-step:nth-child(even) {
    grid-template-columns: 80px 400px 1fr;
}

.process-step:nth-child(even) .step-content {
    order: 3;
}

.process-step:nth-child(even) .step-image {
    order: 2;
}

.step-number {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    color: var(--dark-bg);
    margin-bottom: var(--space-3);
}

.step-content p {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--medium-gray);
}

.step-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Service CTA Section */
.service-cta {
    padding: var(--space-20) 0;
    background: #f8fafc;
}

.service-cta .cta-card {
    background: linear-gradient(135deg, #0f3d3e 0%, #1a5f5f 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-16);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.service-cta .cta-left h2 {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    color: var(--white);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.service-cta .cta-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.service-cta .cta-subtext {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
}

.service-cta .cta-link {
    color: var(--white);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.service-cta .cta-link:hover {
    opacity: 0.8;
}

.service-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: #fbbf24;
    color: #0f3d3e;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.service-cta .cta-button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.service-cta .cta-button svg {
    transition: transform 0.3s ease;
}

.service-cta .cta-button:hover svg {
    transform: translateX(4px);
}

.service-cta .cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.service-cta .cta-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--white);
    font-size: var(--text-lg);
}

.service-cta .cta-benefits li svg {
    flex-shrink: 0;
    stroke: #fbbf24;
    stroke-width: 2.5;
}

/* Footer Styles */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding-top: var(--space-16);
}

.footer-content {
    padding-bottom: var(--space-12);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.footer-section h4 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-4);
    color: var(--white);
}

.footer-section p {
    color: var(--light-gray);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: var(--space-3);
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-8) 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-bottom .company-info {
    flex: 1;
}

.footer-bottom .company-info p {
    color: var(--light-gray);
    font-size: var(--text-sm);
    margin: var(--space-1) 0;
}

.footer-bottom .copyright {
    color: var(--light-gray);
    font-size: var(--text-sm);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   MODERN CONTACT PAGE STYLES
   =================================== */

/* Modern Contact Hero */
.modern-contact-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #ddd6fe 100%);
    padding: var(--space-24) 0 var(--space-20);
    position: relative;
    overflow: hidden;
}

.modern-contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.modern-contact-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.contact-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-5);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-full);
    color: #2563eb;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-8);
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.modern-contact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-bold);
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 2;
}

.modern-contact-subtitle {
    font-size: var(--text-xl);
    color: #475569;
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-16);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-16);
    position: relative;
    z-index: 2;
}

.contact-option-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-option-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.card-icon svg {
    color: #2563eb;
}

.contact-option-card h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: #0f172a;
    margin-bottom: var(--space-4);
}

.contact-option-card p {
    font-size: var(--text-base);
    color: #475569;
    line-height: 1.6;
    margin-bottom: var(--space-8);
    flex-grow: 1;
}

/* Card Action */
.card-action {
    display: flex;
    gap: var(--space-3);
    margin-top: auto;
}

.demo-email-input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-lg);
    color: #0f172a;
    font-size: var(--text-base);
    transition: all 0.3s ease;
    height: 44px;
    min-height: 44px;
}

.demo-email-input::placeholder {
    color: #94a3b8;
}

.demo-email-input:focus {
    outline: none;
    border-color: #2563eb;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.book-demo-btn,
.get-in-touch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    height: 44px;
    min-height: 44px;
}

.book-demo-btn:hover,
.get-in-touch-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #6d28d9 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Company Info Section */
.company-info-section {
    position: relative;
    z-index: 2;
    margin-top: var(--space-20);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.info-block {
    display: flex;
    gap: var(--space-4);
    align-items: start;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.05);
}

.info-block:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.12);
}

.info-icon-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
}

.info-icon-small svg {
    color: #2563eb;
}

.info-block h4 {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: #0f172a;
    margin-bottom: var(--space-2);
}

.info-block p {
    font-size: var(--text-sm);
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.info-block a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: #7c3aed;
}

/* Contact Modal */
.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal {
    position: fixed;
    top: 0;
    right: -600px;
    width: 100%;
    max-width: 600px;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: -10px 0 60px rgba(37, 99, 235, 0.2);
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
}

.contact-modal-overlay.active .contact-modal {
    right: 0;
}

.modal-close-btn {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: rgba(37, 99, 235, 0.2);
    transform: rotate(90deg);
}

.modal-close-btn svg {
    color: #2563eb;
}

.modal-header {
    padding: var(--space-12) var(--space-10) var(--space-8);
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.modal-header h2 {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-4);
}

.modal-header p {
    font-size: var(--text-base);
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Modal Form */
.contact-modal .contact-form {
    padding: var(--space-10);
    background: #ffffff;
}

.contact-modal .form-group {
    margin-bottom: var(--space-6);
}

.contact-modal .form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: #0f172a;
    margin-bottom: var(--space-2);
}

.contact-modal .form-group input,
.contact-modal .form-group textarea {
    width: 100%;
    padding: var(--space-4);
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-lg);
    color: #0f172a;
    font-size: var(--text-base);
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.contact-modal .form-group input::placeholder,
.contact-modal .form-group textarea::placeholder {
    color: #94a3b8;
}

.contact-modal .form-group input:focus,
.contact-modal .form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-modal .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-modal .error-message {
    display: none;
    font-size: var(--text-sm);
    color: #ef4444;
    margin-top: var(--space-2);
}

.contact-modal .form-group.error input,
.contact-modal .form-group.error textarea {
    border-color: #ef4444;
}

.contact-modal .form-group.error .error-message {
    display: block;
}

.modal-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: var(--space-4);
}

.modal-submit-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #6d28d9 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.contact-modal .success-message {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
    animation: fadeInUp 0.5s ease-out;
}

.contact-modal .success-message svg {
    flex-shrink: 0;
}

.contact-modal .success-message p {
    margin: 0;
    font-size: var(--text-base);
    font-weight: var(--font-medium);
}

/* ===================================
   Legal Pages - Light, Fresh & Human Design
   =================================== */

.legal-page {
    background: #ffffff;
    min-height: 100vh;
    padding: 140px 0 100px;
    position: relative;
    overflow-x: hidden;
}

/* Subtle decorative elements */
.legal-page::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.legal-page::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.legal-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

/* Beautiful header */
.legal-page h1 {
    font-family: var(--font-heading);
    font-size: 3.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.last-updated {
    text-align: center;
    color: #64748b;
    font-size: 0.9375rem;
    margin-bottom: 64px;
    font-weight: 400;
}

/* Clean section cards */
.legal-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 48px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.legal-section:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 24px;
    margin-top: 0;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-section h2::before {
    content: '';
    width: 4px;
    height: 28px;
    background: linear-gradient(180deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 2px;
}

.legal-section h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
    margin-top: 32px;
}

.legal-section p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

/* Beautiful lists */
.legal-section ul,
.legal-section ol {
    color: #475569;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 24px;
    padding-left: 28px;
}

.legal-section ul li {
    margin-bottom: 12px;
    position: relative;
}

.legal-section ul li::marker {
    color: #2563eb;
}

.legal-section ol li {
    margin-bottom: 12px;
}

.legal-section ol li::marker {
    color: #2563eb;
    font-weight: 600;
}

/* Modern link styling */
.legal-section a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(37, 99, 235, 0.3);
    transition: all 0.2s ease;
}

.legal-section a:hover {
    color: #1e40af;
    border-bottom-color: #1e40af;
}

.legal-section strong {
    color: #0f172a;
    font-weight: 600;
}

/* Beautiful contact card */
.contact-info {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2563eb 0%, #3b82f6 100%);
}

.contact-info p {
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: #2563eb;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
    .legal-page::before,
    .legal-page::after {
        display: none;
    }

    .legal-page {
        padding: 140px 0 60px;
    }

    .legal-container {
        padding: 0 20px;
    }

    .legal-page h1 {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .last-updated {
        font-size: 0.875rem;
        margin-bottom: 48px;
    }

    .legal-section {
        padding: 28px 20px;
        margin-bottom: 16px;
        border-radius: 8px;
    }

    .legal-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .legal-section h2::before {
        width: 3px;
        height: 24px;
    }

    .legal-section h3 {
        font-size: 1.125rem;
        margin-top: 24px;
        margin-bottom: 14px;
    }

    .legal-section p,
    .legal-section ul,
    .legal-section ol {
        font-size: 0.9375rem;
        line-height: 1.7;
    }

    .legal-section ul,
    .legal-section ol {
        padding-left: 24px;
    }

    .legal-section ul li,
    .legal-section ol li {
        margin-bottom: 10px;
    }

    .contact-info {
        padding: 24px 20px;
        margin: 24px 0;
    }

    .contact-info p {
        font-size: 0.875rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 130px 0 50px;
    }

    .legal-container {
        padding: 0 16px;
    }

    .legal-page h1 {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .last-updated {
        font-size: 0.8125rem;
        margin-bottom: 40px;
    }

    .legal-section {
        padding: 24px 16px;
        margin-bottom: 12px;
    }

    .legal-section h2 {
        font-size: 1.25rem;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .legal-section h2::before {
        width: 3px;
        height: 20px;
    }

    .legal-section h3 {
        font-size: 1rem;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .legal-section p {
        font-size: 0.875rem;
        line-height: 1.65;
        margin-bottom: 16px;
    }

    .legal-section ul,
    .legal-section ol {
        font-size: 0.875rem;
        line-height: 1.65;
        padding-left: 20px;
        margin-bottom: 20px;
    }

    .legal-section ul li,
    .legal-section ol li {
        margin-bottom: 8px;
    }

    .contact-info {
        padding: 20px 16px;
        margin: 20px 0;
        border-radius: 8px;
    }

    .contact-info p {
        font-size: 0.8125rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .legal-page {
        padding: 120px 0 40px;
    }

    .legal-container {
        padding: 0 12px;
    }

    .legal-page h1 {
        font-size: 1.625rem;
    }

    .legal-section {
        padding: 20px 14px;
    }

    .legal-section h2 {
        font-size: 1.125rem;
    }

    .legal-section h3 {
        font-size: 0.9375rem;
    }

    .legal-section p,
    .legal-section ul,
    .legal-section ol {
        font-size: 0.8125rem;
    }

    .contact-info {
        padding: 16px 14px;
    }
}


/* ============================================
   FOOTER REVEAL EFFECT (Cowlendar.com style)
   Only on Desktop/Laptop (1025px+)
   ============================================ */

/* Body setup - default for mobile/tablet (no reveal effect) */
body {
    position: relative;
    background: #ffffff;
}

/* Content wrapper - default for mobile/tablet (no special styling) */
.content-wrapper {
    position: relative;
}

/* Main content - default */
main {
    position: relative;
    background: #ffffff;
}

/* Footer - default static position for mobile/tablet */
.footer-reveal {
    position: relative;
    background: #0f172a;
    padding: 80px 0 20px;
    border-top: 1px solid #1e293b;
    color: #fff;
}

/* REVEAL EFFECT - Only for Desktop/Laptop (1025px and up) */
@media (min-width: 1025px) {
    /* Body setup for reveal effect */
    body {
        background: #0f172a; /* Footer background color */
    }

    /* Content wrapper that slides over footer */
    .content-wrapper {
        z-index: 10; /* Higher z-index so content is on top */
        background: transparent; /* Transparent to reveal footer */
        padding-bottom: 600px; /* Space for footer to be revealed */
        min-height: 100vh;
        pointer-events: none; /* Don't intercept clicks */
    }

    /* Main content */
    main {
        background: #ffffff; /* White background for content */
        pointer-events: auto; /* Re-enable clicks for content */
    }

    /* Footer is fixed and revealed as content scrolls */
    .footer-reveal {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1; /* Lower z-index so it's behind content */
    }
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Footer Brand Section */
.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-image {
    height: 45px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
}

.footer-logo svg {
    flex-shrink: 0;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.footer-tagline {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-company-info {
    margin-bottom: 20px;
    font-size: 13px;
    color: #a0a0a0;
}

.footer-company-info p {
    margin: 4px 0;
}

.footer-address {
    margin-top: 8px;
    line-height: 1.5;
}

.footer-mission {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-contact-links {
    font-size: 13px;
    color: #a0a0a0;
}

.footer-contact-links a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-links a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Footer Columns */
.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 14px;
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #3b82f6;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #1e293b;
}

.footer-copyright {
    font-size: 13px;
    color: #64748b;
    text-align: center;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 40px;
    }
    
    /* Hide Use Cases and Resources on tablet and mobile */
    .footer-column:nth-child(3),
    .footer-column:nth-child(4) {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-reveal {
        padding: 60px 0 30px;
    }
    
    .footer-container {
        padding: 0 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
    
    /* Keep Use Cases and Resources hidden */
    .footer-column:nth-child(3),
    .footer-column:nth-child(4) {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-reveal {
        padding: 40px 0 24px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-logo {
        margin-bottom: 12px;
    }
    
    .footer-logo-image {
        height: 35px;
        max-width: 120px;
    }
    
    .footer-column h4 {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .footer-column ul li {
        margin-bottom: 10px;
    }
    
    .footer-column ul li a {
        font-size: 13px;
    }
    
    .footer-bottom {
        padding-top: 24px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
}


/* ===================================
   Scroll-Triggered Animations
   =================================== */

/* Initial state for elements before animation */
.service-card:not(.animate-in),
.benefit-card:not(.animate-in),
.benefit-card-modern:not(.animate-in),
.process-step:not(.animate-in) {
    opacity: 0;
    transform: translateY(50px);
}

/* Animated state when element enters viewport */
.service-card.animate-in,
.benefit-card.animate-in,
.benefit-card-modern.animate-in,
.process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Active nav link highlighting */
.nav-link.active {
    color: var(--primary-blue);
    font-weight: var(--font-semibold);
}

/* Lazy loading image fade-in */
img[data-src] {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

img.loaded {
    opacity: 1;
}

/* ===================================
   Accessibility - Focus Indicators
   =================================== */

/* Focus styles for all interactive elements */
a:focus-visible,
button:focus-visible,
.nav-link:focus-visible,
.dropdown-item:focus-visible,
.btn:focus-visible,
.service-link:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Focus styles for dropdown trigger */
.dropdown-trigger:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Focus styles for mobile hamburger */
.mobile-hamburger:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 4px;
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--primary-blue);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-to-main:focus {
    top: 20px;
    outline: 3px solid white;
    outline-offset: 2px;
}
