/* ===================================================
   DIGICEROS - Main Stylesheet
   Brand: Teal #00b4b5 | Orange #f7931e | Navy #0a1628
   =================================================== */

/* --- Fonts loaded via <link> in HTML head for performance --- */

/* --- CSS Variables --- */
:root {
  --teal: #00b4b5;
  --teal-dark: #009a9b;
  --teal-light: #e6f9f9;
  --orange: #f7931e;
  --orange-dark: #e07d0e;
  --orange-light: #fff4e6;
  --navy: #0a1628;
  --navy-mid: #112240;
  --navy-light: #1e3a5f;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { color: var(--text-secondary); line-height: 1.75; }

/* --- Utility --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-teal { color: var(--teal); }
.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.bg-navy { background: var(--navy) !important; }
.bg-navy-mid { background: var(--navy-mid) !important; }
.bg-gray { background: var(--gray-50) !important; }
.bg-teal-light { background: var(--teal-light) !important; }
.bg-orange-light { background: var(--orange-light) !important; }
.fw-800 { font-weight: 800; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.grid { display: grid; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.w-full { width: 100%; }
.hidden { display: none; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,180,181,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,180,181,0.45); }
.btn-secondary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(247,147,30,0.35);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(247,147,30,0.45); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }

/* --- Section Labels --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-label-orange {
  background: var(--orange-light);
  color: var(--orange-dark);
}

/* --- Section Title --- */
.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 640px; }
.section-header { margin-bottom: 56px; }
.section-header.text-center .section-subtitle { margin: 0 auto; }

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
}
.logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
}
.logo span { color: var(--teal); }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--teal); background: var(--teal-light); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--teal); }
.mobile-nav .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* --- FOOTER --- */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-brand p { color: var(--gray-400); margin-top: 16px; font-size: 0.9rem; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--navy-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}
.social-icon:hover { background: var(--teal); transform: translateY(-2px); }
.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  font-family: var(--font-heading);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid var(--navy-light);
  margin-top: 48px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom p { color: var(--gray-500); font-size: 0.875rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--gray-500); font-size: 0.875rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--teal); }

/* --- HERO --- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a6e 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,180,181,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(247,147,30,0.10) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* --- BADGE / CHIP --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.badge-teal { background: rgba(0,180,181,0.15); color: var(--teal); border: 1px solid rgba(0,180,181,0.3); }
.badge-orange { background: rgba(247,147,30,0.15); color: var(--orange); border: 1px solid rgba(247,147,30,0.3); }
.badge-white { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }

/* --- CARDS --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.icon-teal { background: var(--teal-light); color: var(--teal); }
.icon-orange { background: var(--orange-light); color: var(--orange); }
.icon-navy { background: rgba(10,22,40,0.08); color: var(--navy); }
.card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.card p { font-size: 0.925rem; }

/* --- SERVICE CARDS --- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.service-card .card-icon { margin-bottom: 20px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; margin-bottom: 20px; }
.service-card .card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-card .card-link:hover { gap: 10px; }

/* --- PRICING CARDS --- */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0,180,181,0.08), var(--shadow-xl);
  transform: scale(1.04);
}
.pricing-card:hover { box-shadow: var(--shadow-xl); }
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-name { font-size: 1rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.pricing-price { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; color: var(--text-primary); margin: 8px 0 4px; line-height: 1; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.pricing-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.pricing-feature .check { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.pricing-feature .cross { color: var(--gray-300); flex-shrink: 0; margin-top: 2px; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }

/* --- TESTIMONIAL CARDS --- */
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.testimonial-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* --- STATS BAR --- */
.stats-bar {
  background: var(--navy);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number .stat-suffix { color: var(--teal); }
.stat-label { font-size: 0.875rem; color: var(--gray-400); font-weight: 500; }

/* --- TRUST STRIP --- */
.trust-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.trust-icon { font-size: 1.25rem; }

/* --- PROCESS STEPS --- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-number {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,180,181,0.35);
}
.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(0,180,181,0.3);
}
.process-step h4 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.875rem; }

/* --- INDUSTRY CARDS --- */
.industry-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.industry-card:hover { border-color: var(--teal); background: var(--teal-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.industry-icon { font-size: 2rem; margin-bottom: 12px; }
.industry-card h4 { font-size: 0.95rem; color: var(--text-primary); }

/* --- CITY CHIPS --- */
.city-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.city-chip {
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
}
.city-chip:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }

/* --- FAQ ACCORDION --- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--teal); }
.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  background: var(--white);
  transition: background 0.2s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question h4 { font-size: 1rem; font-weight: 600; color: var(--text-primary); flex: 1; }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--teal); color: white; transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  background: var(--white);
}
.faq-answer p { color: var(--text-secondary); font-size: 0.925rem; line-height: 1.75; padding-bottom: 20px; }
.faq-item.open .faq-answer { max-height: 400px; padding-top: 0; }

/* --- CTA STRIP --- */
.cta-strip {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -5%;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-strip-content { position: relative; z-index: 1; }
.cta-strip h2 { color: var(--white); margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- FORM STYLES --- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,180,181,0.12); }
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success.show { display: block; }

/* --- CONTACT INFO --- */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 0.95rem; color: var(--text-primary); font-weight: 500; }
.contact-info-item a:hover { color: var(--teal); }

/* --- CASE STUDY CARDS --- */
.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.case-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-5px); }
.case-card-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.case-card-body { padding: 24px 28px; }
.case-metric { 
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,180,181,0.08);
  color: var(--teal-dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}
.case-results { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.case-result-item { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; }
.case-result-value { font-weight: 700; color: var(--teal-dark); min-width: 80px; }
.case-result-label { color: var(--text-secondary); }

/* --- FILTER BUTTONS --- */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--teal); color: var(--white); background: var(--teal); }

/* --- PRICING TABS --- */
.pricing-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 48px; background: var(--gray-100); padding: 6px; border-radius: 50px; display: inline-flex; }
.pricing-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.pricing-tab.active { background: var(--white); color: var(--teal); box-shadow: var(--shadow-sm); }
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

/* --- HERO DASHBOARD --- */
.hero-dashboard {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  max-width: 380px;
}
.dashboard-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.dashboard-title { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700; color: var(--text-primary); }
.dashboard-badge { background: rgba(0,180,181,0.1); color: var(--teal); padding: 4px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.metric-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.metric-label { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; }
.metric-value { font-size: 0.8rem; font-weight: 700; color: var(--text-primary); }
.progress-bar { height: 8px; background: var(--gray-100); border-radius: 10px; overflow: hidden; margin-bottom: 16px; }
.progress-fill { height: 100%; border-radius: 10px; transition: width 1.5s ease; }
.progress-teal { background: linear-gradient(90deg, var(--teal), var(--teal-dark)); }
.progress-orange { background: linear-gradient(90deg, var(--orange), var(--orange-dark)); }
.progress-purple { background: linear-gradient(90deg, #8b5cf6, #6d28d9); }
.progress-blue { background: linear-gradient(90deg, #3b82f6, #2563eb); }
.dashboard-kpi { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.kpi-item { background: var(--gray-50); border-radius: var(--radius-sm); padding: 14px; }
.kpi-value { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--text-primary); }
.kpi-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.kpi-change { font-size: 0.75rem; font-weight: 600; margin-top: 4px; }
.kpi-up { color: #10b981; }
.kpi-down { color: #ef4444; }

/* --- WHY US SECTION --- */
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; }
.feature-check {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-text h4 { font-size: 1rem; margin-bottom: 4px; }
.feature-text p { font-size: 0.9rem; }

/* --- METRIC CARDS --- */
.metric-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.metric-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.metric-card .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.metric-card .label { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; }

/* --- LEGAL PAGES --- */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin: 36px 0 12px; color: var(--text-primary); }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 8px; color: var(--text-primary); }
.legal-content p { margin-bottom: 14px; font-size: 0.95rem; }
.legal-content ul { margin: 12px 0 20px 20px; list-style: disc; }
.legal-content ul li { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 6px; }
.legal-date { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 32px; }

/* --- TEAM CARDS --- */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-avatar {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.team-info { padding: 24px; }
.team-info h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-role { font-size: 0.875rem; color: var(--teal); font-weight: 600; margin-bottom: 12px; display: block; }
.team-info p { font-size: 0.875rem; }

/* --- ANIMATIONS --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger .fade-up:nth-child(3) { transition-delay: 0.2s; }
.stagger .fade-up:nth-child(4) { transition-delay: 0.3s; }
.stagger .fade-up:nth-child(5) { transition-delay: 0.4s; }
.stagger .fade-up:nth-child(6) { transition-delay: 0.5s; }
.stagger .fade-up:nth-child(7) { transition-delay: 0.6s; }
.stagger .fade-up:nth-child(8) { transition-delay: 0.7s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse-teal {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,180,181,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(0,180,181,0); }
}
.float-anim { animation: float 4s ease-in-out infinite; }

/* --- MAP PLACEHOLDER --- */
.map-placeholder {
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  border-radius: var(--radius-lg);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  font-size: 1.2rem;
  border: 1px solid var(--border);
  margin-top: 24px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .nav-menu { display: none; }
  .header-cta .btn:not(.btn-primary) { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .hero-dashboard { max-width: 100%; }
  .metric-cards-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: none; }
  .trust-items { gap: 20px; }
}

@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .pricing-tabs { width: 100%; }
  .pricing-tab { padding: 8px 14px; font-size: 0.8rem; }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .stat-number { font-size: 2rem; }
}
