:root {
  --primary: #101F4C;
  --primary-dark: #0A1535;
  --primary-light: #1a3068;
  --accent: #FB5041;
  --accent-hover: #e8402f;
  --white: #FFFFFF;
  --light: #F8F9FC;
  --light-alt: #F1F3F8;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px 0 rgba(16, 31, 76, 0.05);
  --shadow: 0 1px 3px 0 rgba(16, 31, 76, 0.1), 0 1px 2px -1px rgba(16, 31, 76, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(16, 31, 76, 0.1), 0 2px 4px -2px rgba(16, 31, 76, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(16, 31, 76, 0.1), 0 4px 6px -4px rgba(16, 31, 76, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(16, 31, 76, 0.1), 0 8px 10px -6px rgba(16, 31, 76, 0.1);
  --radius-btn: 6px;
  --radius-card: 8px;
  --transition: 180ms ease;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img { max-width: 100%; height: auto; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ===== HEADER (matches hero/about light gradient) ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
  background: linear-gradient(to right, #fdf2f8 0%, #fce7f3 20%, #f5f0ff 45%, #f8fafc 85%, #f9fafb 100%);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(16,31,76,0.06);
}

.site-header.scrolled {
  background: rgba(253,242,248,0.98);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

/* Single header logo: zurihub Technology No bg Logo (mobile + desktop, before & after scroll) */
.site-header .nav-link { color: var(--primary); }
.site-header .nav-link:hover { color: var(--accent); }
.site-header.scrolled .nav-link { color: var(--primary); }
.site-header.scrolled .nav-link:hover { color: var(--accent); }

.mobile-menu-btn { color: var(--primary); transition: color var(--transition); }
.site-header.scrolled .mobile-menu-btn { color: var(--primary); }

/* Logo sizing - compensate for whitespace in logo image */
.header-logo {
  height: 138px !important;
  width: auto !important;
  margin: -34px 0 !important;
  object-fit: contain;
}

.header-inner .nav-link {
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.site-header .header-inner .nav-link {
  color: var(--primary);
}
.site-header .header-inner .nav-link:hover {
  color: var(--accent);
}
.site-header.scrolled .header-inner .nav-link {
  color: var(--primary);
}
.site-header.scrolled .header-inner .nav-link:hover {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-xl);
  padding: 0.75rem 0;
  min-width: 220px;
  border: 1px solid var(--gray-100);
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.5rem 1.25rem;
  color: var(--gray-700);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: var(--light);
  color: var(--accent);
  padding-left: 1.5rem;
}

/* Mega Menu */
.mega-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  background: var(--white);
  box-shadow: var(--shadow-xl);
  padding: 2rem 0;
  border-top: 2px solid var(--accent);
  z-index: 100;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.mega-menu-col a {
  display: block;
  padding: 0.375rem 0;
  color: var(--gray-600);
  font-size: 0.875rem;
  transition: all var(--transition);
}

.mega-menu-col a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

/* ===== MOBILE NAV ===== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,21,53,0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  transition: right 300ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 1.5rem;
}

.mobile-nav.active { right: 0; }

.mobile-nav .mobile-nav-logo {
  height: 50px !important;
  width: auto !important;
  max-width: 140px !important;
  margin: 0 !important;
  object-fit: contain;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  color: var(--primary);
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}

.mobile-nav-link:hover { color: var(--accent); }

.mobile-sub-menu {
  display: none;
  padding-left: 1rem;
}

.mobile-sub-menu.active { display: block; }

.mobile-sub-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--gray-600);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.mobile-sub-link:hover { color: var(--accent); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251,80,65,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,31,76,0.25);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.card-service {
  padding: 2rem;
  text-align: center;
}

.card-service .card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  background: var(--light);
  color: var(--accent);
  transition: all var(--transition);
}

.card-service:hover .card-icon {
  background: var(--accent);
  color: var(--white);
}

.card-service h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.card-service p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}

.section-lg {
  padding: 6rem 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.7;
}

/* Services section only: left-align titles on mobile (match About section) */
@media (max-width: 767px) {
  #services > div > div.text-center.mb-14.reveal:first-child {
    text-align: left;
  }
  #services > div > div.text-center.mb-14.reveal:first-child .section-eyebrow.justify-center {
    justify-content: flex-start;
  }
  #services > div > div.text-center.mb-14.reveal:first-child p {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.5) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero h1 .text-accent { color: var(--accent); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-top: 1.5rem;
  max-width: 540px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ===== PROCESS STEPS ===== */
.process-step {
  position: relative;
  padding-left: 4rem;
  padding-bottom: 2.5rem;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.process-step:last-child::before { display: none; }

.process-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9375rem;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-card);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover { border-color: var(--accent); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  transition: all var(--transition);
  font-family: inherit;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 300ms ease;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand img {
  height: 165px !important;
  width: auto !important;
  margin: -38px 0 !important;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: 1.25rem;
  color: rgba(255,255,255,0.6);
}

.footer-heading {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.footer-links a {
  display: block;
  padding: 0.375rem 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.footer-contact-icon {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  margin-right: 0.5rem;
  transition: all var(--transition);
  font-size: 0.875rem;
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 24px rgba(16,31,76,0.12);
  padding: 0.875rem 0;
  z-index: 900;
  transition: bottom 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.visible { bottom: 0; }

/* ===== EXIT INTENT POPUP ===== */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,21,53,0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
  padding: 1rem;
  overflow-y: auto;
}

.exit-popup.active {
  opacity: 1;
  visibility: visible;
}

.exit-popup-inner {
  display: flex;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  max-width: 680px;
  width: 100%;
  height: 480px;
  max-height: 90vh;
  box-shadow: 0 25px 80px rgba(0,0,0,0.25);
  transform: scale(0.9) translateY(20px);
  transition: transform 300ms ease;
  position: relative;
  flex-shrink: 0;
}

.exit-popup.active .exit-popup-inner { 
  transform: scale(1) translateY(0); 
}

.exit-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  transition: all 200ms ease;
  z-index: 10;
}

.exit-popup-close:hover {
  background: rgba(0,0,0,0.1);
  color: #6B7280;
}

/* Left decorative panel */
.exit-popup-left {
  width: 45%;
  min-width: 45%;
  height: 100%;
  min-height: 0;
  background: linear-gradient(135deg, #FDEAE4 0%, #FBD5C8 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.exit-popup-confetti {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(ellipse 3px 8px at 20% 30%, #FB5041 100%, transparent),
    radial-gradient(ellipse 2px 6px at 75% 20%, #E8B4A0 100%, transparent),
    radial-gradient(ellipse 3px 7px at 85% 70%, #FB5041 100%, transparent),
    radial-gradient(ellipse 2px 5px at 15% 80%, #D4A393 100%, transparent),
    radial-gradient(ellipse 3px 6px at 60% 85%, #FB5041 100%, transparent),
    radial-gradient(ellipse 2px 5px at 30% 60%, #E8B4A0 100%, transparent),
    radial-gradient(ellipse 3px 8px at 90% 40%, #D4A393 100%, transparent),
    radial-gradient(ellipse 2px 6px at 10% 45%, #FB5041 100%, transparent);
  opacity: 0.7;
}

.exit-popup-icon-wrap {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.exit-popup-icon {
  width: 52px;
  height: 52px;
  background: #FB5041;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(251,80,65,0.35);
}

.exit-popup-gift {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.1));
  transform: rotate(-5deg);
}

/* Right content panel */
.exit-popup-right {
  width: 55%;
  min-width: 0;
  height: 100%;
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  overflow-x: hidden;
}

.exit-popup-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: linear-gradient(135deg, #FB5041, #e8402f);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.exit-popup-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #101F4C;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  flex-shrink: 0;
}

.exit-popup-text {
  font-size: 0.8125rem;
  color: #6B7280;
  line-height: 1.55;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.exit-popup-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-shrink: 0;
}

.exit-popup-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #374151;
}

.exit-popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}

.exit-popup-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.9375rem;
  color: #101F4C;
  background: #fff;
  transition: all 200ms ease;
}

.exit-popup-input:focus {
  outline: none;
  border-color: #FB5041;
  box-shadow: 0 0 0 3px rgba(251,80,65,0.1);
}

.exit-popup-input::placeholder {
  color: #9CA3AF;
}

.exit-popup-btn {
  display: block;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #FB5041, #e8402f);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 200ms ease;
  text-align: center;
  text-decoration: none;
}

.exit-popup-btn:hover {
  background: linear-gradient(135deg, #e8402f, #d63627);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251,80,65,0.4);
  color: #fff;
}

.exit-popup-terms {
  font-size: 0.75rem;
  color: #9CA3AF;
  margin-top: 0.75rem;
  text-align: center;
  flex-shrink: 0;
}

.exit-popup-terms a {
  color: #101F4C;
  font-weight: 600;
  text-decoration: none;
}

.exit-popup-terms a:hover {
  color: #FB5041;
}

.exit-popup-valid {
  font-size: 0.75rem;
  color: #6B7280;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.exit-popup-claim-btn {
  font-size: 1rem;
}

/* Mobile responsive popup */
@media (max-width: 640px) {
  .exit-popup-inner {
    flex-direction: column;
    max-width: 360px;
    height: auto;
    min-height: 420px;
    max-height: 90vh;
  }
  
  .exit-popup-left {
    width: 100%;
    height: 140px;
    min-height: 140px;
  }
  
  .exit-popup-right {
    width: 100%;
    padding: 1.5rem 1.25rem;
    flex: 1;
    min-height: 0;
    max-height: calc(90vh - 140px);
  }
  
  .exit-popup-title {
    font-size: 1.25rem;
  }
  
  .exit-popup-badge {
    font-size: 0.625rem;
  }
  
  .exit-popup-features li {
    font-size: 0.75rem;
  }
  
  .exit-popup-gift svg {
    width: 72px;
    height: 72px;
  }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 9997;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* When chat widget exists, move WhatsApp button up */
.zuri-chat-widget ~ #whatsapp-placeholder .whatsapp-float,
#whatsapp-placeholder:has(~ .zuri-chat-widget) .whatsapp-float,
body:has(.zuri-chat-widget) .whatsapp-float {
  bottom: 5.5rem;
}

/* Mobile responsive for WhatsApp */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    right: 1rem;
  }
  
  body:has(.zuri-chat-widget) .whatsapp-float {
    bottom: 4.5rem;
  }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  z-index: 9996;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent);
}

/* When chat widget exists, move back-to-top button up above WhatsApp */
body:has(.zuri-chat-widget) .back-to-top {
  bottom: 9.5rem;
}

/* Mobile responsive for back-to-top */
@media (max-width: 480px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 4.5rem;
    right: 1rem;
  }
  
  body:has(.zuri-chat-widget) .back-to-top {
    bottom: 8.5rem;
  }
}

/* ===== BREADCRUMBS (sleek, stunning) ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.75);
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.breadcrumb a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  margin: 0 -0.5rem;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.breadcrumb .separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  margin: 0 0.125rem;
  font-size: 0;
  color: rgba(255,255,255,0.45);
  user-select: none;
}

.breadcrumb .separator::before {
  content: '›';
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.breadcrumb .current {
  color: var(--white);
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  margin-left: 0.125rem;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  letter-spacing: 0.01em;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

/* ===== BLOG CARDS ===== */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body { padding: 1.5rem; }

.blog-card-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--light);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 0.625rem;
}

.blog-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--primary);
  padding: 0 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero .hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.5) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Space for fixed header (80px) so breadcrumb and title are not hidden */
.page-hero > .max-w-7xl,
.page-hero > .max-w-\[1400px\] {
  padding-top: 6rem;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 640px;
  margin-top: 1rem;
}

.section-label.justify-center {
  justify-content: center;
}

.section-label.justify-center::before {
  display: none;
}

/* ===== PORTFOLIO ===== */
.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.portfolio-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: transparent;
}

.portfolio-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 400ms ease;
}

.portfolio-card:hover .portfolio-card-img { transform: scale(1.05); }

.portfolio-filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===== FORM STYLES ===== */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.375rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-btn);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--gray-800);
  transition: all var(--transition);
  background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(251,80,65,0.1);
}

.form-textarea { resize: vertical; min-height: 120px; }

/* ===== MULTI-STEP FORM ===== */
.step-indicator {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: all var(--transition);
}

.step-dot.active { background: var(--accent); transform: scale(1.2); }
.step-dot.completed { background: var(--primary); }

.form-step {
  display: none;
  animation: fadeInStep 300ms ease;
}

.form-step.active { display: block; }

@keyframes fadeInStep {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== TEAM ===== */
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--light);
}

.team-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 500;
}

/* ===== LOADING ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 400ms ease;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.page-loader-img {
  display: block;
  max-width: 120px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4rem 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
  .stat-number {
    font-size: 1.75rem;
  }
}

/* ===== LARGE SCREENS - FULL WIDTH ===== */
@media (min-width: 1280px) {
  .max-w-7xl {
    max-width: 1400px !important;
  }
}

@media (min-width: 1536px) {
  .max-w-7xl {
    max-width: 1536px !important;
  }
  .header-inner {
    max-width: 1536px !important;
  }
}

@media (min-width: 1920px) {
  .max-w-7xl {
    max-width: 1680px !important;
  }
  .header-inner {
    max-width: 1680px !important;
  }
}

/* ===== PRINT ===== */
@media print {
  .site-header, .site-footer, .sticky-cta, .whatsapp-float, .back-to-top, .exit-popup { display: none !important; }
  body { color: #000; }
  a { text-decoration: underline; }
}
