/* ==================================================================
   metazone.pk — Professional IT Services
   Modern Clean Design with White, Navy, Blue & Green Accents
   ================================================================== */

/* ============================================================
   FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --primary: #0a1922;
  --primary-dark: #061016;
  --primary-light: #1a3a4a;
  --primary-gradient: linear-gradient(135deg, #0a1922 0%, #1a3a4a 100%);
  
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-dark: #1d4ed8;
  --blue-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --blue-transparent: rgba(37, 99, 235, 0.06);
  
  --green: #10b981;
  --green-light: #34d399;
  --green-dark: #059669;
  --green-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
  
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-50: #f1f5f9;
  --gray-100: #e2e8f0;
  --gray-200: #cbd5e1;
  --gray-300: #94a3b8;
  --gray-400: #64748b;
  --gray-500: #475569;
  --gray-600: #334155;
  --gray-700: #1e293b;
  --gray-800: #0f172a;
  --gray-900: #020617;
  
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --shadow-xs: 0 1px 2px rgba(10,25,34,0.04);
  --shadow-sm: 0 2px 8px rgba(10,25,34,0.06);
  --shadow-md: 0 4px 20px rgba(10,25,34,0.08);
  --shadow-lg: 0 8px 40px rgba(10,25,34,0.12);
  --shadow-xl: 0 16px 60px rgba(10,25,34,0.16);
  
  --container: 1200px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--blue); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  color: var(--gray-900);
  margin: 0 0 0.4em;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(38px, 5vw, 60px); }
h2 { font-size: clamp(30px, 3.2vw, 42px); }
h3 { font-size: clamp(20px, 1.8vw, 26px); }
h4 { font-size: clamp(17px, 1.1vw, 20px); }

h1 .highlight, h2 .highlight { color: var(--blue); }
h1 .highlight-green, h2 .highlight-green { color: var(--green); }

p {
  margin: 0 0 1.2em;
  color: var(--gray-500);
  font-size: 16px;
  line-height: 1.8;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--blue);
  opacity: 0.3;
}

.section-header h2 { margin-bottom: 14px; }
.section-header p {
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto;
  color: var(--gray-400);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  min-height: 48px;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--blue-gradient);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.btn-outline {
  background: transparent;
  border-color: var(--gray-300);
  color: var(--gray-700);
}
.btn-outline:hover {
  background: var(--gray-50);
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-large { padding: 17px 44px; font-size: 16px; min-height: 56px; }
.btn-small { padding: 7px 20px; font-size: 12px; min-height: 36px; }
.btn:active { transform: scale(0.97); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand .mark {
  width: 38px;
  height: 38px;
  background: var(--blue-gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  transition: var(--transition);
}

.brand:hover .mark { transform: scale(1.05); }

.brand .name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  color: var(--gray-900);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand .name span { color: var(--blue); }
.brand .name .dot { color: var(--green); }

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 6px 0;
  transition: var(--transition);
  letter-spacing: 0.01em;
  position: relative;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--gray-900);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
  transform: scaleX(1);
}

.nav-links > li > a i {
  font-size: 11px;
  opacity: 0.5;
  margin-left: 4px;
}

/* ============================================================
   DROPDOWN - Improved UI
   ============================================================ */
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-left: 1px solid var(--gray-100);
  border-radius: 2px 0 0 0;
}

.dropdown li {
  position: relative;
  list-style: none;
}

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  font-size: 14px;
  color: var(--gray-600);
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
  border-radius: 0;
  text-decoration: none;
}

.dropdown li a:hover {
  background: var(--gray-50);
  color: var(--blue);
  border-left-color: var(--blue);
  padding-left: 26px;
}

.dropdown li a .dropdown-arrow-icon {
  font-size: 12px;
  color: var(--blue);
  width: 20px;
  text-align: center;
  opacity: 0.4;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.dropdown li a:hover .dropdown-arrow-icon {
  opacity: 1;
  transform: translateX(3px);
}

.dropdown li a .dropdown-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--blue-transparent);
  color: var(--blue);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.dropdown li a:hover .dropdown-icon {
  background: var(--blue-gradient);
  color: var(--white);
  transform: scale(1.05);
}

.dropdown li a .dropdown-icon i {
  font-size: 14px;
}

/* Remove bullet points from dropdown items */
.dropdown li {
  list-style: none;
}

.dropdown li::before {
  display: none;
}

/* Mobile Dropdown */
@media (max-width: 880px) {
  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--gray-50);
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.4s ease;
    background: var(--gray-50);
    left: auto;
    top: auto;
    width: 100%;
  }

  .dropdown::before {
    display: none;
  }

  .dropdown.open {
    max-height: 600px;
    padding: 6px 0;
  }

  .dropdown li a {
    padding: 12px clamp(40px, 6vw, 80px);
    color: var(--gray-600);
    border-left: none;
    border-radius: 0;
  }

  .dropdown li a:hover {
    border-left: none;
    background: rgba(37, 99, 235, 0.04);
    padding-left: clamp(40px, 6vw, 80px);
  }

  .dropdown li a .dropdown-arrow-icon {
    font-size: 12px;
    width: 20px;
  }

  .has-dropdown:hover .dropdown {
    transform: none;
  }
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-cta .btn {
  padding: 10px 24px;
  min-height: 40px;
  font-size: 13px;
}

.btn-whatsapp {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: scale(1.05);
}

.btn-whatsapp i { font-size: 18px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gray-700);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.nav-toggle:hover { background: var(--gray-50); }

@media (max-width: 1024px) {
  .nav-links { gap: 24px; }
  .nav-links > li > a { font-size: 13px; }
}

@media (max-width: 880px) {
  .main-nav { position: static; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--gray-100);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    max-height: 80vh;
    overflow-y: auto;
    padding: 8px 0;
  }

  .nav-links > li {
    border-bottom: 1px solid var(--gray-50);
  }
  .nav-links > li:last-child { border-bottom: none; }

  .nav-links > li > a {
    padding: 14px clamp(20px, 4vw, 48px);
    font-size: 15px;
    color: var(--gray-700);
    width: 100%;
  }

  .nav-links > li > a::after { display: none; }

  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--gray-50);
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
    background: var(--gray-50);
  }

  .dropdown.open {
    max-height: 500px;
    padding: 4px 0;
  }

  .dropdown li a {
    padding: 12px clamp(40px, 6vw, 80px);
    color: var(--gray-600);
  }

  .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-toggle { display: block; }
  .btn-whatsapp { width: 36px; height: 36px; }
  .btn-whatsapp i { font-size: 16px; }
  .nav-cta .btn-primary { display: none; }
}



/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}

.trust-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 20px;
}

.trust-track {
  display: flex;
  gap: 50px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.trust-item {
  flex-shrink: 0;
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.trust-item:hover { opacity: 1; }

.trust-item img {
  max-height: 28px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.trust-item:hover img { filter: grayscale(0%); }

.trust-placeholder {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-400);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   STATS - Premium Professional
   ============================================================ */
.stats-section {
  padding: 80px 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue-gradient);
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.stat-card:hover::after {
  opacity: 0.02;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue);
}

.stat-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--blue);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.stat-card:hover .stat-icon {
  background: var(--blue-gradient);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.stat-icon-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 99, 235, 0.08);
  animation: spin-ring-slow 8s linear infinite;
}

.stat-icon-ring::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px solid rgba(37, 99, 235, 0.04);
  animation: spin-ring-slow 12s linear infinite reverse;
}

@keyframes spin-ring-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  transition: color 0.3s ease;
}

.stat-card:hover .stat-number {
  color: var(--blue);
}

.stat-suffix {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-suffix {
  transform: translateY(-2px);
}

.stat-label {
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.stat-progress {
  width: 100%;
  height: 4px;
  background: var(--gray-100);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.stat-progress-bar {
  display: block;
  height: 100%;
  border-radius: 2px;
  background: var(--blue-gradient);
  position: relative;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-progress-bar::after {
  content: '';
  position: absolute;
  right: 0;
  top: -2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover .stat-progress-bar::after {
  opacity: 1;
}

.stat-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 6px;
  font-weight: 500;
}

.stat-progress-label span:last-child {
  color: var(--blue);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 32px; }
  .stat-number-wrapper { font-size: 20px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}


/* ============================================================
   SERVICES - Animated Cards
   ============================================================ */
.services-section {
  padding: 80px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}



/* ============================================================
   PROCESS
   ============================================================ */
.process-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gray-200);
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.process-step .step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  transition: var(--transition);
  z-index: 2;
  position: relative;
  margin: 0 auto 14px;
}

.process-step:hover .step-number {
  background: var(--blue-gradient);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.2);
}

.process-step .step-icon {
  font-size: 24px;
  color: var(--blue);
  margin-bottom: 8px;
}

.process-step h4 {
  font-size: 16px;
  margin-bottom: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.process-step p {
  font-size: 13px;
  color: var(--gray-400);
  margin: 0;
  max-width: 150px;
  margin: 0 auto;
}

.step-connector {
  display: none;
}

@media (max-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .process-timeline::before { display: none; }
}

@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 300px;
  }
  .process-step p { max-width: 100%; }
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-section {
  padding: 80px 0;
  background: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}

.portfolio-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,34,0.9) 0%, rgba(10,25,34,0.1) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: all 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-info {
  color: var(--white);
  transform: translateY(16px);
  transition: all 0.5s ease;
}

.portfolio-item:hover .portfolio-info {
  transform: translateY(0);
}

.portfolio-category {
  display: inline-block;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(37, 99, 235, 0.2);
  color: var(--blue-light);
  margin-bottom: 4px;
}

.portfolio-info h4 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 2px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.portfolio-client {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.testimonials-carousel {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  animation: fadeSlide 0.6s ease;
}

.testimonial-slide.active { display: block; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  border: 1px solid var(--gray-100);
}

.testimonial-quote {
  position: relative;
  padding: 0 12px 12px 12px;
}

.testimonial-quote i {
  color: var(--blue);
  font-size: 28px;
  opacity: 0.12;
  margin-bottom: 10px;
}

.testimonial-quote p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  color: var(--gray-800);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gray-100);
}

.author-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
}

.author-info strong {
  display: block;
  font-size: 15px;
  color: var(--gray-900);
}

.author-info span {
  font-size: 13px;
  color: var(--gray-400);
}

.author-stars {
  margin-top: 4px;
}
.author-stars i { color: var(--gray-300); font-size: 14px; }
.author-stars i.filled { color: #f59e0b; }

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.testimonial-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: transparent;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-controls button:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-transparent);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dots .dot.active {
  background: var(--blue);
  transform: scale(1.2);
}

/* ============================================================
   TEAM - Dynamic & Animated
   ============================================================ */
.team-section {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue);
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
  z-index: 2;
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--gray-100);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-photo img {
  transform: scale(1.08);
}

.team-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  background: var(--blue-gradient);
  transition: transform 0.5s ease;
}

.team-card:hover .team-avatar-placeholder {
  transform: scale(1.05);
}

/* Team Social Overlay */
.team-social-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,34,0.85) 0%, rgba(10,25,34,0.1) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-social-overlay {
  opacity: 1;
}

.team-social-links {
  display: flex;
  gap: 12px;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.team-card:hover .team-social-links {
  transform: translateY(0);
}

.team-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  font-size: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}

.team-social-links a:hover {
  background: var(--blue-gradient);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  border-color: transparent;
}

.team-social-links a i {
  transition: transform 0.3s ease;
}

.team-social-links a:hover i {
  transform: scale(1.1);
}

/* Team Info */
.team-info {
  padding: 22px 24px 26px;
  text-align: center;
  position: relative;
  background: var(--white);
  transition: background 0.3s ease;
}

.team-card:hover .team-info {
  background: var(--gray-50);
}

.team-info h4 {
  font-size: 18px;
  margin-bottom: 2px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color 0.3s ease;
}

.team-card:hover .team-info h4 {
  color: var(--blue);
}

.team-position {
  display: inline-block;
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  position: relative;
}

.team-position::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--blue-gradient);
  opacity: 0.3;
  transition: width 0.3s ease;
}

.team-card:hover .team-position::after {
  width: 30px;
  opacity: 1;
}

.team-bio {
  font-size: 13px;
  color: var(--gray-400);
  margin: 10px 0 0;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-bio {
  max-height: 80px;
  opacity: 1;
  margin-top: 10px;
}

/* Team Card Badge */
.team-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
  z-index: 2;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.team-card:hover .team-badge {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 20px; max-width: 500px; margin: 0 auto; }
  .team-bio { display: none; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; max-width: 320px; }
}

/* ============================================================
   FAQS
   ============================================================ */
.faqs-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.faqs-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

.faqs-left .section-tag {
  justify-content: flex-start;
}
.faqs-left .section-tag::after { display: none; }

.faqs-header {
  text-align: left;
  margin: 0 0 20px;
}

.faqs-header h2 {
  margin-bottom: 10px;
}
.faqs-header p {
  margin-bottom: 0;
}

.faqs-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--white);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.faq-question:hover { color: var(--blue); }

.faq-icon {
  font-size: 16px;
  color: var(--blue);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-answer {
  padding: 0 20px 18px;
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.8;
  display: none;
}

.faq-item.active .faq-answer { display: block; }

@media (max-width: 1024px) {
  .faqs-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .faqs-header { text-align: center; }
  .faqs-left .section-tag { justify-content: center; }
  .faqs-left .section-tag::after { display: inline; }
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-section {
  padding: 80px 0;
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.blog-image.placeholder {
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--gray-300);
}

.blog-content { padding: 22px 24px; }

.blog-category {
  display: inline-block;
  padding: 2px 12px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: var(--blue-transparent);
  margin-bottom: 6px;
}

.blog-content h4 {
  font-size: 17px;
  margin-bottom: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.blog-content p {
  font-size: 14px;
  margin-bottom: 14px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray-400);
}

.blog-link {
  color: var(--blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.blog-link:hover {
  gap: 12px;
  color: var(--blue-dark);
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ============================================================
   PREMIUM HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  max-height: 900px;
  overflow: hidden;
  background: var(--gray-50);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
}

.slide-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.04) 0%, transparent 60%);
  z-index: 1;
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.1;
  animation: float-particle 15s infinite linear;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-duration: 12s; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; top: 60%; animation-duration: 18s; animation-delay: 2s; }
.particle:nth-child(3) { left: 40%; top: 10%; animation-duration: 14s; animation-delay: 4s; }
.particle:nth-child(4) { left: 55%; top: 70%; animation-duration: 20s; animation-delay: 1s; }
.particle:nth-child(5) { left: 70%; top: 30%; animation-duration: 16s; animation-delay: 3s; }
.particle:nth-child(6) { left: 85%; top: 55%; animation-duration: 13s; animation-delay: 5s; }
.particle:nth-child(7) { left: 15%; top: 85%; animation-duration: 19s; animation-delay: 2s; }
.particle:nth-child(8) { left: 50%; top: 40%; animation-duration: 17s; animation-delay: 0s; }
.particle:nth-child(9) { left: 75%; top: 15%; animation-duration: 15s; animation-delay: 4s; }
.particle:nth-child(10) { left: 5%; top: 45%; animation-duration: 22s; animation-delay: 3s; }

@keyframes float-particle {
  0% { transform: translate(0, 0) scale(1); opacity: 0.1; }
  25% { transform: translate(50px, -30px) scale(1.5); opacity: 0.2; }
  50% { transform: translate(-20px, 50px) scale(0.8); opacity: 0.05; }
  75% { transform: translate(30px, -20px) scale(1.2); opacity: 0.15; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.1; }
}

/* Floating Decorations */
.float-deco {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
  z-index: 1;
  pointer-events: none;
}

.deco-1 {
  width: 400px;
  height: 400px;
  background: var(--blue);
  top: -150px;
  right: -100px;
  animation: float-deco 25s ease-in-out infinite;
}

.deco-2 {
  width: 300px;
  height: 300px;
  background: var(--green);
  bottom: -100px;
  left: -50px;
  animation: float-deco 30s ease-in-out infinite reverse;
}

.deco-3 {
  width: 200px;
  height: 200px;
  background: var(--blue-light);
  top: 60%;
  right: 15%;
  animation: float-deco 20s ease-in-out infinite 3s;
}

@keyframes float-deco {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* Slide Content */
.slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.slide-inner {
  max-width: 720px;
}

.slide-inner.center {
  text-align: center;
  margin: 0 auto;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.2s;
}

.slide.active .slide-badge {
  opacity: 1;
  transform: translateY(0);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.slide-title {
  font-size: clamp(38px, 5.5vw, 68px);
  color: var(--gray-900);
  line-height: 1.08;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease 0.4s;
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

.slide-title .highlight {
  color: var(--blue);
  position: relative;
}

.slide-desc {
  font-size: clamp(16px, 1.2vw, 20px);
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.6s;
}

.slide.active .slide-desc {
  opacity: 1;
  transform: translateY(0);
}

.slide-inner.center .slide-desc {
  margin-left: auto;
  margin-right: auto;
}

.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.8s;
}

.slide.active .slide-actions {
  opacity: 1;
  transform: translateY(0);
}

.slide-inner.center .slide-actions {
  justify-content: center;
}

.slide-metrics {
  display: flex;
  gap: 30px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 1s;
}

.slide.active .slide-metrics {
  opacity: 1;
  transform: translateY(0);
}

.slide-inner.center .slide-metrics {
  justify-content: center;
}

.slide-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 13px;
}

.slide-metrics span i {
  color: var(--green);
  font-size: 14px;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
}

.nav-btn:hover {
  background: var(--blue-gradient);
  border-color: var(--blue);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.25);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: var(--blue);
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gray-200);
  z-index: 10;
}

.slider-progress .progress-bar {
  height: 100%;
  background: var(--blue-gradient);
  width: 100%;
  transition: width 6s linear;
}

.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
}

.scroll-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray-300), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

.scroll-arrow {
  animation: bounce-arrow 2s ease-in-out infinite;
  color: var(--blue);
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@media (max-width: 1024px) {
  .hero-slider { min-height: 600px; max-height: 700px; }
  .slider-nav { bottom: 20px; gap: 16px; }
  .nav-btn { width: 40px; height: 40px; font-size: 16px; }
  .float-deco { display: none; }
  .particles { display: none; }
}

@media (max-width: 768px) {
  .hero-slider { min-height: 500px; max-height: 600px; }
  .slide-title { font-size: 32px; }
  .slide-desc { font-size: 15px; }
  .slide-metrics { flex-direction: column; align-items: center; gap: 8px; }
  .slider-nav { gap: 12px; }
  .nav-btn { width: 36px; height: 36px; font-size: 14px; }
  .slider-dots .dot { width: 8px; height: 8px; }
  .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .slide-actions { flex-direction: column; align-items: center; }
}

/* ============================================================
   SERVICE CARDS - Enhanced
   ============================================================ */
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue);
}

.service-card .card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.service-card:hover .card-glow {
  transform: scaleX(1);
}

.service-card .card-overlay {
  position: absolute;
  inset: 0;
  background: var(--blue-gradient);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: var(--radius-md);
}

.service-card:hover .card-overlay {
  opacity: 0.02;
}

.service-icon {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--blue-transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--blue);
  margin-bottom: 18px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.service-card:hover .service-icon {
  background: var(--blue-gradient);
  color: var(--white);
  transform: scale(1.1) rotate(-8deg);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.icon-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.service-card:hover .icon-shimmer {
  transform: translateX(100%);
}

.service-category {
  display: inline-block;
  padding: 3px 14px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: var(--blue-transparent);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.service-card:hover .service-category {
  background: rgba(37, 99, 235, 0.12);
}

.service-card h3 {
  font-size: 19px;
  margin-bottom: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--blue);
}

.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--blue);
  font-size: 14px;
  transition: all 0.4s ease;
}

.service-link:hover {
  gap: 16px;
  color: var(--blue-dark);
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ============================================================
   CTA WITH ICON
   ============================================================ */
.cta-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.cta-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 72px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 50px;
  align-items: center;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  background: var(--blue-transparent);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.cta-content h2 {
  font-size: clamp(28px, 3vw, 38px);
  color: var(--gray-900);
  margin-bottom: 12px;
}

.cta-content h2 .highlight {
  color: var(--blue);
}

.cta-content p {
  color: var(--gray-500);
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 28px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.cta-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-features span {
  color: var(--gray-500);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-features span i {
  color: var(--green);
}

.cta-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.cta-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon-bg {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--blue-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--white);
  box-shadow: 0 8px 40px rgba(37, 99, 235, 0.25);
  position: relative;
  z-index: 2;
  animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 40px rgba(37, 99, 235, 0.25); }
  50% { transform: scale(1.03); box-shadow: 0 12px 60px rgba(37, 99, 235, 0.35); }
}

.cta-icon-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(37, 99, 235, 0.08);
}

.cta-icon-ring.ring-1 {
  width: 160px;
  height: 160px;
  animation: spin-ring 20s linear infinite;
}

.cta-icon-ring.ring-2 {
  width: 190px;
  height: 190px;
  animation: spin-ring 30s linear infinite reverse;
}

.cta-icon-ring.ring-3 {
  width: 220px;
  height: 220px;
  animation: spin-ring 40s linear infinite;
  border-color: rgba(16, 185, 129, 0.06);
}

@keyframes spin-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
  .cta-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 44px;
  }
  .cta-content p { margin: 0 auto 24px; }
  .cta-actions { justify-content: center; }
  .cta-features { justify-content: center; }
  .cta-visual { display: none; }
}

@media (max-width: 768px) {
  .cta-wrapper { padding: 32px 24px; }
  .cta-features { flex-direction: column; align-items: center; gap: 8px; }
  .cta-actions { flex-direction: column; align-items: center; }
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--gray-50);
  color: var(--gray-500);
  padding: 60px 0 0;
  border-top: 1px solid var(--gray-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
  background: var(--blue-gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--white);
  transition: var(--transition);
}

.footer-brand:hover .brand-mark {
  transform: scale(1.05);
}

.footer-brand .brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  color: var(--gray-900);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-brand .brand-name span { color: var(--blue); }
.footer-brand .brand-name .dot { color: var(--green); }

.footer-tagline {
  font-size: 14px;
  color: var(--gray-500);
  max-width: 300px;
  margin-bottom: 18px;
  line-height: 1.7;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-500);
  transition: var(--transition);
}

.footer-contact-item:hover {
  color: var(--blue);
}

.footer-contact-item i {
  width: 18px;
  color: var(--blue);
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex !important;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  align-items: center;
  justify-content: center;
  color: var(--gray-500) !important;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--blue-gradient);
  border-color: var(--blue);
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.social-link i { font-size: 15px; }

.footer-col h5 {
  color: var(--gray-800);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  position: relative;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 28px;
  height: 2px;
  background: var(--blue-gradient);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-500);
  transition: var(--transition);
}

.footer-links a i {
  font-size: 10px;
  color: var(--blue);
  opacity: 0.4;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-links a:hover i {
  opacity: 1;
  transform: translateX(4px);
}

.footer-newsletter-text {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 14px;
  line-height: 1.6;
}

.footer-newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-700);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: var(--transition);
}

.footer-newsletter-form input::placeholder {
  color: var(--gray-400);
}

.footer-newsletter-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.06);
}

.footer-newsletter-form .btn {
  padding: 10px 20px;
  min-height: 42px;
  font-size: 13px;
  flex-shrink: 0;
}

.whatsapp-inline {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-weight: 600;
  font-size: 14px;
}

.whatsapp-inline:hover {
  background: var(--green-dark);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover { transform: scale(1.08); }

@keyframes pulse-whatsapp {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.whatsapp-float i { font-size: 32px; color: var(--green); }

@media (max-width: 480px) {
  .whatsapp-float { bottom: 16px; right: 16px; }
  .whatsapp-float i { font-size: 28px; }
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-400);
}

.footer-bottom a {
  color: var(--gray-500);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--blue);
}

.footer-bottom .divider {
  color: var(--gray-300);
  margin: 0 8px;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-newsletter-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-right { justify-content: center; }
  .footer-col h5::after { left: 50%; transform: translateX(-50%); }
  .footer-col { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-contact-item { justify-content: center; }
  .footer-tagline { margin: 0 auto 18px; }
  .footer-brand { justify-content: center; }
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  background: var(--gray-50);
  padding: 50px 0 36px;
  border-bottom: 1px solid var(--gray-100);
  margin-top: 70px;
}

.page-header h1 {
  color: var(--gray-900);
  font-size: clamp(28px, 3.5vw, 40px);
}

.page-header .page-description {
  color: var(--gray-400);
  font-size: 16px;
  max-width: 560px;
  margin-top: 6px;
}

.breadcrumb {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 10px;
}

.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding: 50px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: flex-start;
}

.contact-info h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.contact-info .detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-info .detail .icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--blue-transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 16px;
}

.contact-info .detail strong {
  display: block;
  font-size: 14px;
  color: var(--gray-800);
}

.contact-info .detail span {
  font-size: 14px;
  color: var(--gray-500);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3.5vw, 40px);
  box-shadow: var(--shadow-sm);
}

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 5px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.06);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
}

.captcha-container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  background: var(--gray-50);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}

.captcha-container img {
  border-radius: var(--radius-sm);
  height: 48px;
  width: auto;
}

.captcha-refresh {
  border: none;
  background: var(--white);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 18px;
  color: var(--gray-600);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}

.captcha-refresh:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--gray-50);
}

.captcha-container input {
  flex: 1;
  min-width: 120px;
  padding: 10px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.captcha-container input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.06);
  outline: none;
}

.alert {
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  margin-bottom: 18px;
  border: 1px solid transparent;
}

.alert-success {
  background: rgba(16, 185, 129, 0.06);
  color: var(--green);
  border-color: rgba(16, 185, 129, 0.12);
}

.alert-error {
  background: rgba(239, 68, 68, 0.06);
  color: var(--danger);
  border-color: rgba(239, 68, 68, 0.12);
}

/* ============================================================
   SERVICES CARDS - Professional Grid
   ============================================================ */

.services-cards-section {
  padding: 60px 0 80px;
  background: var(--white);
  position: relative;
}

.services-cards-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ============================================================
   SERVICE CARD
   ============================================================ */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue);
}

/* Card Top Border */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
  z-index: 2;
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Card Inner */
.service-card-inner {
  padding: 32px 30px 28px;
  position: relative;
  z-index: 1;
}

/* Card Header */
.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

/* Card Icon */
.service-card-icon {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--blue-transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--blue);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.service-card-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
  transition: all 0.5s ease;
}

.service-card:hover .service-card-icon {
  background: var(--blue-gradient);
  color: var(--white);
  transform: scale(1.05) rotate(-5deg);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.25);
}

.service-card:hover .service-card-icon svg {
  stroke: var(--white);
}

/* Icon Shine Effect */
.service-card-icon-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.service-card:hover .service-card-icon-shine {
  transform: translateX(100%);
}

/* Card Number */
.service-card-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-200);
  opacity: 0.25;
  line-height: 1;
  transition: all 0.5s ease;
  user-select: none;
}

.service-card:hover .service-card-number {
  color: var(--blue);
  opacity: 0.1;
  transform: scale(1.1) translateX(-4px);
}

/* Card Body */
.service-card-body {
  flex: 1;
}

.service-card-title {
  font-size: 20px;
  margin-bottom: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color 0.3s ease;
}

.service-card:hover .service-card-title {
  color: var(--blue);
}

.service-card-summary {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* Card Description - Hidden by default, shows on hover */
.service-card-description {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0;
}

.service-card:hover .service-card-description {
  max-height: 300px;
  opacity: 1;
  margin-bottom: 14px;
}

.service-card-description p {
  margin-bottom: 6px;
}

.service-card-description p:last-child {
  margin-bottom: 0;
}

/* Card Footer */
.service-card-footer {
  padding-top: 6px;
  border-top: 1px solid var(--gray-50);
}

/* Card Link */
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--blue);
  font-size: 14px;
  transition: all 0.4s ease;
  text-decoration: none;
  padding-top: 14px;
  position: relative;
}

.service-card-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-gradient);
  transition: width 0.4s ease;
}

.service-card-link:hover::after {
  width: 100%;
}

.service-card-link:hover {
  gap: 16px;
  color: var(--blue-dark);
}

.service-card-link i {
  transition: transform 0.3s ease;
}

.service-card-link:hover i {
  transform: translateX(4px);
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.services-empty-state {
  text-align: center;
  padding: 80px 40px;
  background: var(--white);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 0 auto;
}

.services-empty-state i {
  font-size: 52px;
  color: var(--gray-300);
  margin-bottom: 16px;
}

.services-empty-state h3 {
  font-size: 24px;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.services-empty-state p {
  color: var(--gray-400);
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================================
   SERVICES CTA
   ============================================================ */
.services-cta-section {
  padding: 60px 0 80px;
  background: var(--gray-50);
}

.services-cta-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 60px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.services-cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue-gradient);
}

.services-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  background: var(--blue-transparent);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.services-cta-content h2 {
  font-size: clamp(26px, 2.8vw, 36px);
  color: var(--gray-900);
  margin-bottom: 10px;
}

.services-cta-content h2 .highlight {
  color: var(--blue);
}

.services-cta-content p {
  color: var(--gray-500);
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 24px;
}

.services-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.services-cta-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.services-cta-features span {
  color: var(--gray-500);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.services-cta-features span i {
  color: var(--green);
}

/* CTA Visual */
.services-cta-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
}

.cta-float-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--blue-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
  position: relative;
  z-index: 2;
  animation: float-icon 4s ease-in-out infinite;
}

@keyframes float-icon {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.cta-float-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(37, 99, 235, 0.06);
}

.cta-float-ring.ring-1 {
  width: 120px;
  height: 120px;
  animation: spin-ring 20s linear infinite;
}

.cta-float-ring.ring-2 {
  width: 145px;
  height: 145px;
  animation: spin-ring 30s linear infinite reverse;
}

.cta-float-ring.ring-3 {
  width: 170px;
  height: 170px;
  animation: spin-ring 40s linear infinite;
  border-color: rgba(16, 185, 129, 0.06);
}

@keyframes spin-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
  }
  
  .services-cta-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px;
  }
  .services-cta-content p {
    margin: 0 auto 24px;
  }
  .services-cta-actions {
    justify-content: center;
  }
  .services-cta-features {
    justify-content: center;
  }
  .services-cta-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .services-cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .service-card-inner {
    padding: 24px 20px 20px;
  }
  
  .service-card-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
  
  .service-card-icon svg {
    width: 22px;
    height: 22px;
  }
  
  .service-card-number {
    font-size: 30px;
  }
  
  .service-card-title {
    font-size: 18px;
  }
  
  .service-card-summary {
    font-size: 14px;
  }
  
  .services-cta-box {
    padding: 32px 24px;
  }
  
  .services-cta-features {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .services-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .service-card-inner {
    padding: 18px 16px 16px;
  }
  
  .service-card-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
  
  .service-card-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .service-card-number {
    font-size: 26px;
  }
  
  .service-card-title {
    font-size: 17px;
  }
  
  .services-empty-state {
    padding: 40px 20px;
  }
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  color: var(--gray-700);
  padding: 14px 20px;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.04);
  border-top: 1px solid var(--gray-100);
}

.cookie-consent .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.cookie-consent a { color: var(--blue); }
.cookie-consent a:hover { text-decoration: underline; }

/* ============================================================
   UTILITY
   ============================================================ */
.bg-alt { background: var(--gray-50); }
.bg-dark { background: var(--gray-900); color: var(--white); }
.bg-dark h2 { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,0.4); }
.section-padding { padding: clamp(50px, 7vh, 80px) 0; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .page-header { margin-top: 60px; padding: 40px 0 28px; }
}

