/*
 * Responsive Stylesheet — iCore Digital Marketing Solutions
 * Mobile-first breakpoints: sm 640px, md 768px, lg 1024px, xl 1280px
 * Spacing scale: 4px / 8px / 16px / 32px / 64px ONLY
 * Colors: #0A66C2 primary, #FF7A00 secondary, #F5F7FA bg, #1A1A2E text, #6B7280 muted
 */

/* ===================================================
   RESET & BASE
=================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: #F5F7FA;
  color: #1A1A2E;
  margin: 0;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

/* ===================================================
   CONTAINER
=================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 640px) {
  .container { padding-left: 32px; padding-right: 32px; }
}

@media (min-width: 1024px) {
  .container { padding-left: 64px; padding-right: 64px; }
}

/* ===================================================
   TYPOGRAPHY — hero / section-heading / body only
=================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  margin-top: 0;
  line-height: 1.2;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
}

.section-heading {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 600;
}

body, p, li, td, th, input, textarea, select, button {
  font-size: 1rem;
}

/* ===================================================
   HEADER — STICKY
=================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  transition: box-shadow 200ms ease;
}

.site-header.scrolled { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

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

/* Desktop nav */
.primary-nav { display: none; }
.primary-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.primary-nav a {
  display: block;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1A1A2E;
  text-decoration: none;
  border-radius: 4px;
  transition: color 200ms ease, background 200ms ease;
}
.primary-nav a:hover { color: #0A66C2; background: #F5F7FA; }

.header-cta {
  display: none;
  padding: 8px 16px;
  background: #0A66C2;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms ease;
  white-space: nowrap;
}
.header-cta:hover { background: #FF7A00; }

/* Hamburger */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1A1A2E;
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  z-index: 999;
  overflow-y: auto;
  padding: 16px;
  border-top: 1px solid #E5E7EB;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav > ul > li { border-bottom: 1px solid #E5E7EB; }
.mobile-nav a {
  display: block;
  padding: 16px 8px;
  font-weight: 500;
  color: #1A1A2E;
  text-decoration: none;
  font-size: 1rem;
}
.mobile-nav a:hover { color: #0A66C2; }

/* Mobile accordion */
.mobile-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 8px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: #1A1A2E;
  cursor: pointer;
  text-align: left;
  font-family: 'Open Sans', sans-serif;
}
.mobile-accordion-toggle::after { content: '+'; font-size: 1.25rem; color: #6B7280; }
.mobile-accordion-toggle.open::after { content: '−'; }

.mobile-accordion-content { display: none; padding: 0 8px 16px; }
.mobile-accordion-content.open { display: block; }
.mobile-accordion-content a { padding: 8px 16px; font-size: 0.9rem; color: #6B7280; }

.mobile-nav-cta {
  display: block;
  margin: 16px 0;
  padding: 16px;
  background: #0A66C2;
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  transition: background 200ms ease;
}
.mobile-nav-cta:hover { background: #FF7A00; }

@media (min-width: 1024px) {
  .primary-nav { display: flex; align-items: center; gap: 4px; }
  .header-cta { display: inline-block; }
  .hamburger-btn { display: none; }
}

/* ===================================================
   MEGA MENU
=================================================== */
.mega-menu-wrapper {
  position: relative;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-top: 2px solid #0A66C2;
  width: 640px;
  z-index: 200;
  padding: 16px;
}

.mega-menu.industries-menu { width: 480px; }

.mega-menu-wrapper:hover .mega-menu { display: block; }

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.mega-menu.industries-menu .mega-menu-grid {
  grid-template-columns: repeat(2, 1fr);
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px;
  border-radius: 4px;
  text-decoration: none;
  color: #1A1A2E;
  font-size: 0.875rem;
  border-bottom: 1px solid #F5F7FA;
  transition: background 200ms ease;
}
.mega-menu-item:hover { background: #F5F7FA; color: #0A66C2; }
.mega-menu-item .icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.mega-menu-item .label { font-weight: 500; display: block; }

.mega-menu-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E5E7EB;
  font-size: 0.875rem;
  color: #6B7280;
}
.mega-menu-footer a { color: #0A66C2; }

/* ===================================================
   HERO SECTION
=================================================== */
.hero-section {
  background: linear-gradient(135deg, #0A66C2 0%, #1A1A2E 100%);
  padding: 64px 16px;
  text-align: center;
  color: #FFFFFF;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-section .container { width: 100%; max-width: 900px; }

.hero-section .hero-title { color: #FFFFFF; margin-bottom: 16px; }

.hero-section .hero-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: #FF7A00;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms ease;
  min-height: 44px;
  font-family: 'Open Sans', sans-serif;
}
.btn-primary:hover { background: #e56e00; }

.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease;
  min-height: 44px;
  font-family: 'Open Sans', sans-serif;
}
.btn-secondary:hover { border-color: #FFFFFF; background: rgba(255,255,255,0.1); }

.btn-ghost {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  color: #0A66C2;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #0A66C2;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
  min-height: 44px;
  font-family: 'Open Sans', sans-serif;
}
.btn-ghost:hover { background: #0A66C2; color: #FFFFFF; }

.btn-cta {
  display: inline-block;
  padding: 12px 24px;
  background: #0A66C2;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms ease;
  min-height: 44px;
  font-family: 'Open Sans', sans-serif;
}
.btn-cta:hover { background: #FF7A00; }

/* ===================================================
   SECTIONS — PADDING
=================================================== */
.section { padding: 64px 16px; }
.section-sm { padding: 32px 16px; }
.section-lg { padding: 64px 16px; }

@media (min-width: 768px) {
  .section { padding: 64px 32px; }
  .section-sm { padding: 32px 32px; }
  .section-lg { padding: 64px 32px; }
}

.section-bg-white { background: #FFFFFF; }
.section-bg-grey { background: #F5F7FA; }
.section-bg-dark { background: #1A1A2E; color: #FFFFFF; }
.section-bg-blue { background: linear-gradient(135deg, #0A66C2 0%, #1A1A2E 100%); color: #FFFFFF; }

.section-header { text-align: center; margin-bottom: 32px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-header .section-heading { margin-bottom: 8px; }
.section-header p { color: #6B7280; line-height: 1.7; margin: 0; }

/* ===================================================
   CARD GRID — Services / Industries / Blog
=================================================== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  padding: 16px;
  transition: transform 200ms ease, border-color 200ms ease;
}
.card:hover { transform: scale(1.02); border-color: #0A66C2; }

.card-icon { font-size: 2rem; margin-bottom: 8px; }
.card-title { font-family: 'Poppins', sans-serif; font-size: clamp(1.25rem, 3vw, 2rem); font-weight: 600; margin-bottom: 8px; }
.card-desc { color: #6B7280; line-height: 1.6; margin-bottom: 16px; font-size: 1rem; }
.card-link { color: #0A66C2; font-weight: 600; text-decoration: none; font-size: 1rem; transition: color 200ms ease; }
.card-link:hover { color: #FF7A00; }

/* Services grid: 3 cols desktop, 2 tablet, 1 mobile */
.services-grid { grid-template-columns: 1fr; }

/* Industries grid: 5 cols desktop, 3 tablet, 2 mobile */
.industries-grid { grid-template-columns: repeat(2, 1fr); }

/* Case studies: 3 desktop, 1 mobile */
.case-studies-grid { grid-template-columns: 1fr; }

/* Blog: 3 desktop, 1 mobile */
.blog-grid { grid-template-columns: 1fr; }

/* Tools: 3 desktop, 1 mobile */
.tools-grid { grid-template-columns: 1fr; }

/* Team: 4 desktop, 2 mobile */
.team-grid { grid-template-columns: repeat(2, 1fr); }

/* Offices: 3 desktop, 1 mobile */
.offices-grid { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .card-grid { gap: 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .case-studies-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .offices-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .offices-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .industries-grid { grid-template-columns: repeat(5, 1fr); }
  .case-studies-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===================================================
   PRICING CARDS
=================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.pricing-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  padding: 32px 16px;
  text-align: center;
  position: relative;
  transition: transform 200ms ease;
}
.pricing-card:hover { transform: scale(1.02); }
.pricing-card.highlighted { border-color: #0A66C2; border-width: 2px; }

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0A66C2;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 4px;
  white-space: nowrap;
}

.pricing-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(1.25rem, 3vw, 2rem); margin-bottom: 8px; }
.pricing-price { font-family: 'Poppins', sans-serif; font-size: clamp(1.25rem, 3vw, 2rem); font-weight: 700; color: #0A66C2; margin-bottom: 4px; }
.pricing-period { color: #6B7280; font-size: 1rem; margin-bottom: 16px; }
.pricing-desc { color: #6B7280; font-size: 1rem; line-height: 1.6; margin-bottom: 16px; }

.pricing-features { list-style: none; padding: 0; margin: 0 0 32px; text-align: left; }
.pricing-features li { padding: 8px 0; border-bottom: 1px solid #F5F7FA; font-size: 1rem; color: #1A1A2E; display: flex; gap: 8px; align-items: flex-start; }
.pricing-features li::before { content: '✓'; color: #0A66C2; font-weight: 700; flex-shrink: 0; }

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Currency toggle */
.currency-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.currency-toggle button {
  padding: 8px 24px;
  border: 2px solid #E5E7EB;
  border-radius: 32px;
  background: #FFFFFF;
  color: #6B7280;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  font-family: 'Open Sans', sans-serif;
  min-height: 44px;
}
.currency-toggle button.active { background: #0A66C2; color: #FFFFFF; border-color: #0A66C2; }

/* ===================================================
   TESTIMONIALS SLIDER
=================================================== */
.testimonials-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  padding: 32px;
}

@media (min-width: 768px) {
  .testimonial-card { flex: 0 0 calc(50% - 8px); }
}

.testimonial-stars { color: #FF7A00; margin-bottom: 16px; font-size: 1rem; }
.testimonial-quote { color: #1A1A2E; line-height: 1.7; font-size: 1rem; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A66C2, #1A1A2E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.testimonial-role { color: #6B7280; font-size: 1rem; }

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #0A66C2;
  transition: background 200ms ease, color 200ms ease;
}
.slider-btn:hover { background: #0A66C2; color: #FFFFFF; }

/* ===================================================
   CLIENT LOGOS CAROUSEL
=================================================== */
.logos-carousel {
  overflow: hidden;
  position: relative;
}

.logos-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 16px 0;
  align-items: center;
}
.logos-track::-webkit-scrollbar { display: none; }

.logo-item {
  flex: 0 0 160px;
  height: 64px;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  transition: filter 200ms ease;
  padding: 8px 16px;
}
.logo-item:hover { filter: grayscale(0%); }

/* ===================================================
   COUNTER SECTION
=================================================== */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .counters-grid { grid-template-columns: repeat(4, 1fr); }
}

.counter-item { text-align: center; padding: 16px; }
.counter-value {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #0A66C2;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.counter-label { font-weight: 600; font-size: 1rem; margin-bottom: 4px; }
.counter-sublabel { color: #6B7280; font-size: 1rem; }

/* ===================================================
   PROCESS STEPS
=================================================== */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.process-step { text-align: center; padding: 16px; }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #0A66C2;
  color: #FFFFFF;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}
.step-title { font-weight: 600; font-size: clamp(1.25rem, 3vw, 2rem); margin-bottom: 8px; font-family: 'Poppins', sans-serif; }
.step-desc { color: #6B7280; font-size: 1rem; line-height: 1.6; }

/* ===================================================
   FORMS
=================================================== */
.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

@media (min-width: 640px) {
  .form-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.form-field { display: flex; flex-direction: column; gap: 8px; }

.form-label { font-weight: 600; font-size: 1rem; color: #1A1A2E; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  font-size: 1rem;
  color: #1A1A2E;
  background: #FFFFFF;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  min-height: 44px;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #0A66C2;
  box-shadow: 0 0 0 3px rgba(10,102,194,0.12);
}

.form-textarea { min-height: 120px; resize: vertical; }

.form-submit {
  padding: 16px 32px;
  background: #0A66C2;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 200ms ease;
  font-family: 'Open Sans', sans-serif;
  min-height: 44px;
}
.form-submit:hover { background: #FF7A00; }

.form-note { font-size: 0.875rem; color: #6B7280; margin-top: 8px; }

/* ===================================================
   CTA BANNER
=================================================== */
.cta-banner {
  background: linear-gradient(135deg, #0A66C2 0%, #1A1A2E 100%);
  padding: 64px 16px;
  text-align: center;
  color: #FFFFFF;
}
.cta-banner .section-heading { color: #FFFFFF; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===================================================
   TRUST BADGES
=================================================== */
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .trust-badges-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-badge { text-align: center; padding: 16px 8px; }
.trust-badge-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0A66C2, #F5F7FA);
  border-radius: 4px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}
.trust-badge-title { font-weight: 600; font-size: 1rem; margin-bottom: 4px; }
.trust-badge-desc { color: #6B7280; font-size: 1rem; line-height: 1.5; }

/* ===================================================
   COMPARISON TABLE
=================================================== */
.comparison-table-wrapper { overflow-x: auto; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  min-width: 600px;
}
.comparison-table th {
  background: #0A66C2;
  color: #FFFFFF;
  padding: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-align: center;
}
.comparison-table td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid #E5E7EB;
}
.comparison-table tr:nth-child(odd) td { background: #F5F7FA; }
.comparison-table tr:nth-child(even) td { background: #FFFFFF; }
.comparison-table td:first-child { text-align: left; font-weight: 600; }
.comparison-table .check { color: #0A66C2; }
.comparison-table .cross { color: #E5E7EB; }

/* ===================================================
   BLOG CATEGORY FILTER
=================================================== */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.filter-tab {
  padding: 8px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 32px;
  background: #FFFFFF;
  color: #6B7280;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  font-family: 'Open Sans', sans-serif;
  min-height: 44px;
}
.filter-tab.active, .filter-tab:hover { background: #0A66C2; color: #FFFFFF; border-color: #0A66C2; }

/* Search bar */
.search-bar-wrapper { position: relative; margin-bottom: 32px; }
.search-bar-wrapper input {
  width: 100%;
  padding: 12px 16px 12px 48px;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 200ms ease;
  min-height: 44px;
}
.search-bar-wrapper input:focus { outline: none; border-color: #0A66C2; }
.search-bar-wrapper .search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #6B7280; }

/* Blog card image */
.blog-card-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #0A66C2, #1A1A2E);
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  margin-bottom: 16px;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===================================================
   PAGINATION
=================================================== */
.pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  font-size: 1rem;
  color: #1A1A2E;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease;
}
.pagination a:hover, .pagination span.current { background: #0A66C2; color: #FFFFFF; border-color: #0A66C2; }

/* ===================================================
   ACCORDION / FAQ
=================================================== */
.faq-item { border-bottom: 1px solid #E5E7EB; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: #1A1A2E;
  cursor: pointer;
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  gap: 16px;
  min-height: 44px;
}
.faq-question .faq-icon { flex-shrink: 0; color: #0A66C2; font-size: 1.25rem; font-weight: 400; }
.faq-answer { display: none; padding: 0 0 16px; color: #6B7280; line-height: 1.7; font-size: 1rem; }
.faq-answer.open { display: block; }

/* ===================================================
   BREADCRUMB
=================================================== */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 1rem; color: #6B7280; padding: 16px 0; }
.breadcrumb a { color: #0A66C2; text-decoration: none; }
.breadcrumb a:hover { color: #FF7A00; }
.breadcrumb .sep { color: #E5E7EB; }

/* ===================================================
   STICKY CTA BUTTON
=================================================== */
.sticky-cta-btn {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 50;
  padding: 16px 16px;
  background: #0A66C2;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(10,102,194,0.3);
  transition: background 200ms ease, transform 200ms ease;
  white-space: nowrap;
  font-family: 'Open Sans', sans-serif;
}
.sticky-cta-btn:hover { background: #FF7A00; transform: scale(1.02); }

/* ===================================================
   WHATSAPP FLOATING WIDGET
=================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 50;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 200ms ease;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.05); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #FFFFFF; }

/* WhatsApp on left, sticky CTA on right */
.whatsapp-float { right: auto; left: 16px; bottom: 16px; }

/* ===================================================
   EXIT POPUP
=================================================== */
.exit-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.exit-popup-overlay.active { display: flex; }

.exit-popup-modal {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: #6B7280;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color 200ms ease;
}
.exit-popup-close:hover { color: #1A1A2E; }

/* ===================================================
   FOOTER
=================================================== */
.site-footer {
  background: #1A1A2E;
  color: #FFFFFF;
  padding: 64px 16px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-col-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 16px; color: #FFFFFF; }
.footer-col p { color: #9CA3AF; font-size: 1rem; line-height: 1.7; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #9CA3AF; text-decoration: none; font-size: 1rem; transition: color 200ms ease; }
.footer-col ul li a:hover { color: #FFFFFF; }

.footer-social { display: flex; gap: 16px; margin-top: 16px; }
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  text-decoration: none;
  font-size: 1rem;
  transition: background 200ms ease, color 200ms ease;
}
.footer-social a:hover { background: #0A66C2; color: #FFFFFF; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  color: #9CA3AF;
}
.footer-bottom a { color: #9CA3AF; text-decoration: none; transition: color 200ms ease; }
.footer-bottom a:hover { color: #FFFFFF; }
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===================================================
   404 PAGE
=================================================== */
.error-404-wrap { text-align: center; padding: 64px 16px; min-height: 60vh; display: flex; align-items: center; }
.error-code { font-family: 'Poppins', sans-serif; font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 700; color: #0A66C2; margin-bottom: 16px; display: block; }
.error-links-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 32px; text-align: left; }

@media (min-width: 640px) {
  .error-links-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .error-links-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===================================================
   PRINT
=================================================== */
@media print {
  .site-header, .site-footer, .sticky-cta-btn, .whatsapp-float, .exit-popup-overlay { display: none !important; }
  body { background: #FFFFFF; color: #000000; }
  a { color: #000000; }
}