/* Clickiya — Light Blue + Light Orange Theme */
:root {
  --primary: #2563EB;
  --primary-dark: #1d4ed8;
  --blue-light: #D4E8F7;
  --blue-mid: #A8D4F0;
  --orange-light: #FFE8D4;
  --orange-mid: #FFCFA8;
  --secondary: #F5A962;
  --cream: #FAFCFF;
  --text: #1a2b3c;
  --text-muted: #5a6b7c;
  --white: #ffffff;
  --navy-cta: #1e3a5f;
  --radius: 10px;
  --radius-lg: 14px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --fw-normal: 500;
  --fw-medium: 600;
  --fw-bold: 700;
  --bottom-nav-h: 76px;
  --bottom-nav-float: 12px;
}

*, *::before, *::after { box-sizing: border-box; }

body.clickiya-body {
  font-family: var(--font);
  font-weight: var(--fw-normal);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  padding-bottom: calc(var(--bottom-nav-h) + var(--bottom-nav-float) + 8px);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html { overflow-x: hidden; }

/* Sticky header: mobile = full header+categories | desktop = navbar only */
body.header-is-fixed-mobile {
  padding-top: var(--fixed-header-h, 0);
}
body.header-is-fixed-mobile .site-header-group {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
  box-shadow: 0 2px 14px rgba(30, 58, 95, 0.1);
}
body.header-is-fixed-desktop {
  padding-top: var(--fixed-nav-h, 0);
}
body.header-is-fixed-desktop #mainNavbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: #fff;
  box-shadow: 0 2px 12px rgba(30, 58, 95, 0.08);
}
body.header-is-fixed-desktop .header-categories {
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) { body.clickiya-body { padding-bottom: 0; } }

/* Mobile: tighter sections, no extra gaps */
@media (max-width: 991.98px) {
  .site-main > section.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .site-main .section-header.mb-5 { margin-bottom: 1.25rem !important; }
  .section-desc { font-size: 14px; }
}

h1, h2, h3, h4, h5, h6, .section-title {
  font-family: var(--font);
  font-weight: var(--fw-bold) !important;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ========== TOP BAR (gradient, not white) ========== */
.topbar {
  background: linear-gradient(90deg, var(--blue-light) 0%, #f0f8ff 45%, var(--orange-light) 100%);
  color: var(--text);
  font-size: 13px;
  font-weight: var(--fw-medium);
  border-bottom: 1px solid rgba(91, 155, 213, 0.2);
  min-height: 40px;
  display: flex;
  align-items: center;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.25rem;
  width: 100%;
  max-width: 100%;
}
.topbar-marquee { flex: 1; overflow: hidden; white-space: nowrap; min-width: 0; }
.topbar-marquee-inner {
  display: inline-flex;
  animation: marquee-left 30s linear infinite;
  gap: 2rem;
}
.topbar-marquee-inner span { opacity: 0.85; }
.topbar-points {
  display: none;
  gap: 1.25rem;
  white-space: nowrap;
}
@media (min-width: 1200px) {
  .topbar-points { display: flex; }
}
.topbar-point i { color: var(--primary); font-size: 12px; margin-right: 5px; }
.topbar-socials { display: flex; gap: 6px; flex-shrink: 0; }
.social-icon-btn {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.25);
  background: rgba(255,255,255,0.5);
  color: var(--primary);
  font-size: 12px;
  transition: all .2s;
}
.social-icon-btn:hover { background: var(--white); transform: translateY(-1px); }

/* Mobile: hide top bar (Golden Teak style — logo nav only) */
@media (max-width: 991.98px) {
  .topbar { display: none !important; }
}

/* ========== MAIN HEADER & STICKY ========== */
/* Desktop: only logo/nav bar sticky | Mobile: nav + categories sticky */
.site-header-group {
  position: relative;
  z-index: 1020;
}

.navbar-main {
  padding: 0;
  z-index: 1030;
  background: #ffffff;
  border-bottom: none !important;
  box-shadow: none;
}

@media (min-width: 992px) {
  .site-header-group { position: static; }
  .navbar-main {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), 0 4px 20px rgba(15, 23, 42, 0.04);
  }
  .navbar-main .header-inner.container-fluid {
    --bs-gutter-x: 0;
  }
  .header-categories {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 4px clamp(0.75rem, 2vw, 2rem) 6px;
  }
}
@media (min-width: 1200px) {
  .header-categories {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}

@media (max-width: 991.98px) {
  .site-header-group {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06), 0 4px 16px rgba(15, 23, 42, 0.04);
    border-bottom: none;
  }
  .navbar-main {
    position: relative;
    background: #fff;
  }
  .header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 6px 12px;
    gap: 8px;
  }
  .mobile-menu-btn {
    position: relative;
    z-index: 3;
    flex: 0 0 44px;
    padding: 0;
    margin: 0;
    min-width: 44px;
    width: 44px;
    height: 44px;
    line-height: 1;
    color: var(--navy-cta);
    border-radius: 12px;
    background: linear-gradient(145deg, #f8fbff 0%, #fff9f4 100%);
    border: 1px solid rgba(37, 99, 235, 0.14);
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  }
  .mobile-menu-btn:hover,
  .mobile-menu-btn:focus-visible {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
    transform: scale(1.03);
  }
  .navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    margin: 0;
    min-width: 0;
    max-width: calc(100% - 168px);
    padding: 0;
    text-align: center;
    pointer-events: auto;
  }
  .logo-img {
    height: auto;
    max-height: 40px;
    width: auto;
    max-width: min(200px, 52vw);
    margin: 0 auto;
    display: block;
    object-fit: contain;
    object-position: center center;
  }
  .header-actions-mobile {
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
    margin-left: auto;
    gap: 6px;
  }
  .header-mini-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
    background: #f8fafc;
    border-color: #e2e8f0;
  }
  .header-categories {
    padding: 2px 0 6px;
  }
  .header-mobile-nav {
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 1rem;
  gap: 0.5rem;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  min-height: 52px;
}
@media (min-width: 992px) {
  .header-inner {
    min-height: 48px;
    padding: 5px clamp(1.25rem, 3vw, 2.5rem);
    gap: 1rem;
    max-width: 1360px;
  }
  .main-nav .nav-link {
    padding: 6px 14px !important;
    font-size: 15px;
  }
  .btn-header-cta:not(.btn-header-cta--ref) {
    padding: 8px 16px;
    font-size: 13px;
  }
  .btn-header-cta--ref {
    min-height: 40px;
  }
  .btn-header-cta__label {
    padding: 8px 8px 8px 14px;
    font-size: 13px;
  }
  .btn-header-cta__ring {
    width: 40px;
    min-height: 40px;
  }
  .btn-header-cta__spin {
    width: 76px;
    height: 76px;
    right: -38px;
    margin-top: -38px;
  }
  .btn-icon {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }
  .logo-img {
    max-height: 44px;
  }
}
@media (min-width: 1200px) {
  .header-inner {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text) !important;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon {
  width: 22px;
  height: 22px;
  border: 2px solid var(--secondary);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  display: none;
}
.brand-icon::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid var(--secondary);
  border-radius: 2px;
  opacity: 0.6;
}
.logo-img {
  height: auto;
  max-height: 44px;
  width: auto;
  max-width: 200px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  object-position: left center;
}
@media (min-width: 992px) {
  .logo-img {
    max-height: 48px;
    max-width: 240px;
  }
  .navbar-brand {
    margin-right: 0.5rem;
  }
}

/* Mobile header icon row (phone, WhatsApp, search) */
.header-actions-mobile {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: auto;
}
.header-mini-btn {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(30, 58, 95, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy-cta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.header-mini-btn:hover,
.header-mini-btn:focus {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-1px);
}
.header-mini-wa {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.25);
}
.header-mini-wa:hover { color: #1da851; }
.brand-text {
  display: none;
  font-size: 1.125rem;
  font-weight: var(--fw-bold) !important;
  letter-spacing: 0.02em;
  color: var(--navy-cta);
  white-space: nowrap;
}
.brand-text.show-brand-text {
  display: inline-block;
}

.main-nav { flex: 1; justify-content: center; }
.main-nav .navbar-nav {
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.main-nav .nav-link {
  font-size: 16px;
  font-weight: var(--fw-medium) !important;
  color: var(--text) !important;
  padding: 10px 18px !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.main-nav .nav-link:hover {
  color: var(--primary) !important;
  background: rgba(212, 232, 247, 0.5);
}
.nav-chevron { font-size: 11px; opacity: 0.6; transition: transform .2s; }
.nav-mega:hover .nav-chevron,
.nav-mega.is-open .nav-chevron,
.nav-dropdown-hover:hover .nav-chevron,
.nav-dropdown-hover.is-open .nav-chevron { transform: rotate(180deg); }

/* Mega dropdown on hover */
.navbar-main { position: relative; }
.nav-mega { position: static !important; }
.mega-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding-top: 10px;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 1050;
  pointer-events: none;
}
.mega-dropdown::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 12px;
  background: transparent;
}
.nav-mega:hover .mega-dropdown,
.nav-mega.is-open .mega-dropdown,
.mega-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mega-dropdown-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.85rem 1.65rem;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 1.85rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 55%, #fffaf5 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-top: 3px solid #2563eb;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 24px 56px rgba(30, 58, 95, 0.16), 0 8px 20px rgba(37, 99, 235, 0.06);
  backdrop-filter: blur(8px);
}
.mega-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 1rem;
}
.mega-col h6 {
  font-size: 13px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0;
}
.mega-view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mega-view-all:hover { color: var(--navy-cta); }
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 10px;
  max-height: min(360px, 54vh);
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(37, 99, 235, 0.35) transparent;
}
.mega-grid::-webkit-scrollbar { width: 5px; }
.mega-grid::-webkit-scrollbar-thumb {
  background: rgba(37, 99, 235, 0.35);
  border-radius: 4px;
}
.mega-cat-icon img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 1200px) {
  .mega-grid { grid-template-columns: repeat(4, 1fr); }
}
.mega-cat-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: var(--fw-medium);
  border: 1px solid transparent;
  transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
}
.mega-cat-link:hover {
  background: linear-gradient(135deg, #eff6ff 0%, #fff7ed 100%);
  border-color: rgba(37, 99, 235, 0.14);
  color: var(--primary);
  transform: translateX(2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.1);
}
.mega-cat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue-light), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
}
.mega-promo {
  background: linear-gradient(145deg, #1e3a5f 0%, #2563eb 55%, #3b82f6 100%);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.mega-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(253, 186, 116, 0.35) 0%, transparent 55%);
  pointer-events: none;
}
.mega-promo-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 10px;
}
.mega-promo p {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
}
.btn-mega-cta {
  position: relative;
  background: #fff;
  color: var(--navy-cta);
  padding: 11px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-mega-cta:hover {
  background: #fff7ed;
  color: var(--navy-cta);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* Pages hover dropdown */
.nav-dropdown-hover { position: relative; }
.nav-dropdown-hover::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}
.nav-dropdown-hover:hover .nav-hover-menu,
.nav-dropdown-hover.is-open .nav-hover-menu,
.nav-hover-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-hover-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 248px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(30, 58, 95, 0.14);
  padding: 10px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 1050;
  pointer-events: none;
}
.nav-hover-menu li { margin: 0; padding: 0; }
.nav-hover-divider {
  height: 1px;
  margin: 6px 8px;
  background: rgba(15, 23, 42, 0.08);
  list-style: none;
}
.nav-hover-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--text);
  text-decoration: none;
  border-radius: 10px;
  transition: background .18s, color .18s, transform .15s;
}
.nav-hover-menu a i {
  width: 18px;
  font-size: 15px;
  color: var(--primary);
  opacity: 0.85;
}
.nav-hover-menu a:hover {
  background: linear-gradient(135deg, #eff6ff 0%, #fff7ed 100%);
  color: var(--primary);
  transform: translateX(2px);
}

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 18px;
  padding: 0;
}
.btn-icon:hover { color: var(--primary); background: var(--blue-light); }

/* Header call — shake + sink ring */
.btn-icon--call {
  position: relative;
  color: #15803d !important;
  background: rgba(22, 163, 74, 0.1) !important;
}
.btn-icon--call:hover {
  color: #166534 !important;
  background: rgba(22, 163, 74, 0.18) !important;
}
.btn-icon--call-ring {
  display: inline-block;
  transform-origin: center bottom;
  animation: header-call-shake 2.8s ease-in-out infinite;
}
.btn-icon--call::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  border: 2px solid rgba(22, 163, 74, 0.35);
  animation: header-call-pulse 2.8s ease-out infinite;
  pointer-events: none;
}
@keyframes header-call-shake {
  0%, 72%, 100% { transform: translateY(0) rotate(0); }
  74% { transform: translateY(3px) rotate(-12deg); }
  77% { transform: translateY(-4px) rotate(10deg); }
  80% { transform: translateY(2px) rotate(-8deg); }
  83% { transform: translateY(-2px) rotate(6deg); }
  86% { transform: translateY(0) rotate(0); }
}
@keyframes header-call-pulse {
  0%, 72%, 100% { transform: scale(1); opacity: 0.5; }
  78% { transform: scale(1.18); opacity: 0; }
}
.btn-header-cta {
  font-size: 14px;
  font-weight: var(--fw-medium) !important;
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--navy-cta);
  color: var(--white) !important;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-header-cta:not(.btn-header-cta--ref):hover {
  background: var(--primary);
  color: var(--white) !important;
}

/* Header Free Consult — reference style (white, black border, rotating FREE) */
.btn-header-cta--ref {
  position: relative;
  padding: 0;
  min-height: 44px;
  gap: 0;
  border-radius: 8px !important;
  background: #fff !important;
  color: #111 !important;
  border: 2.5px solid #111 !important;
  font-weight: 700 !important;
  overflow: hidden;
  box-shadow: none;
  cursor: pointer;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.35s ease;
  animation: header-cta-flash-once 1.1s ease 0.6s 1 both;
}
.btn-header-cta--ref:hover,
.btn-header-cta--ref:focus-visible {
  background: #111 !important;
  color: #fff !important;
  border-color: #111 !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}
.btn-header-cta--ref:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn-header-cta--ref:hover .btn-header-cta__label,
.btn-header-cta--ref:focus-visible .btn-header-cta__label {
  color: #fff;
}
.btn-header-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px 10px 16px;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  font-size: 14px;
  letter-spacing: -0.01em;
  background: transparent;
  transition: color 0.35s ease;
}
.btn-header-cta__arrow {
  font-size: 1.15em;
  line-height: 1;
  font-weight: 400;
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.btn-header-cta--ref:hover .btn-header-cta__arrow,
.btn-header-cta--ref:focus-visible .btn-header-cta__arrow {
  transform: translateX(5px);
}
.btn-header-cta__ring {
  position: relative;
  width: 46px;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 44px;
  overflow: hidden;
  background: #fff;
  transition: background 0.35s ease;
}
.btn-header-cta--ref:hover .btn-header-cta__ring,
.btn-header-cta--ref:focus-visible .btn-header-cta__ring {
  background: #111;
}
.btn-header-cta__ring::before {
  content: "";
  position: absolute;
  inset: 4px 0 4px 6px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
  background-image:
    radial-gradient(circle, rgba(0, 0, 0, 0.14) 1px, transparent 1px);
  background-size: 10px 10px;
}
.btn-header-cta__spin {
  position: absolute;
  width: 84px;
  height: 84px;
  right: -42px;
  top: 50%;
  margin-top: -42px;
  pointer-events: none;
  animation: header-cta-orbit-spin 14s linear infinite;
  transition: animation-duration 0.3s ease;
}
.btn-header-cta--ref:hover .btn-header-cta__spin,
.btn-header-cta--ref:focus-visible .btn-header-cta__spin {
  animation-duration: 2.8s;
}
.btn-header-cta__spin svg {
  width: 100%;
  height: 100%;
}
.btn-header-cta__spin text {
  fill: #4b5563;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  transition: fill 0.35s ease;
}
.btn-header-cta--ref:hover .btn-header-cta__spin text,
.btn-header-cta--ref:focus-visible .btn-header-cta__spin text {
  fill: #f3f4f6;
}
.btn-header-cta__dot {
  position: absolute;
  right: -5px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -5.5px;
  background: #f97316;
  border-radius: 50%;
  border: 2px solid #111;
  z-index: 3;
  pointer-events: none;
  box-sizing: border-box;
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.btn-header-cta--ref:hover .btn-header-cta__dot,
.btn-header-cta--ref:focus-visible .btn-header-cta__dot {
  border-color: #fff;
  transform: scale(1.12);
}
.btn-header-cta--ref:hover .btn-header-cta__ring::before,
.btn-header-cta--ref:focus-visible .btn-header-cta__ring::before {
  opacity: 0.25;
}
@keyframes header-cta-orbit-spin {
  to { transform: rotate(360deg); }
}
@keyframes header-cta-flash-once {
  0%, 100% { filter: brightness(1); }
  45% { filter: brightness(1.2); }
}
.mobile-menu-btn {
  color: var(--navy-cta);
  line-height: 1;
  text-decoration: none;
}
.mobile-menu-btn:hover,
.mobile-menu-btn:focus { color: var(--primary); }

/* Animated hamburger (mobile menu toggle) */
.hamburger-icon {
  position: relative;
  display: block;
  width: 28px;
  height: 18px;
}
.hamburger-line {
  position: absolute;
  left: 0;
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--navy-cta) 0%, #2563eb 100%);
  transition:
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.22s ease,
    width 0.32s ease,
    background 0.25s ease;
  transform-origin: center;
}
.hamburger-line:nth-child(1) { top: 0; }
.hamburger-line:nth-child(2) {
  top: 7.5px;
  animation: hamburger-line-breathe 2.4s ease-in-out infinite;
}
.hamburger-line:nth-child(3) { bottom: 0; }

@keyframes hamburger-line-breathe {
  0%, 100% { width: 28px; opacity: 1; }
  50% { width: 20px; opacity: 0.85; }
}

.mobile-menu-btn:hover .hamburger-line {
  background: linear-gradient(90deg, #2563eb 0%, #f59e0b 100%);
}
.mobile-menu-btn:hover .hamburger-line:nth-child(2) {
  animation-play-state: paused;
  width: 28px;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
  animation: none;
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
  top: 7.5px;
  transform: rotate(45deg);
}
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
  bottom: auto;
  top: 7.5px;
  transform: rotate(-45deg);
}

/* ========== MOBILE QUICK NAV (matches desktop items + dropdowns) ========== */
.header-mobile-nav {
  background: #fff;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}
.header-mobile-nav-bar {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-mobile-nav-bar > li {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
}
.header-mobile-nav-link {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 100%;
  padding: 8px 6px 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  border-bottom: none !important;
  background: transparent;
  box-shadow: none !important;
  transition: color 0.2s;
  cursor: pointer;
  font-family: inherit;
}
.header-mobile-nav-link .nav-chevron {
  font-size: 10px;
  transition: transform 0.22s ease;
}
.header-mobile-nav-toggle.is-open .nav-chevron,
.header-mobile-nav-toggle[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}
.header-mobile-nav-link:hover,
.header-mobile-nav-link:focus-visible {
  color: var(--navy-cta);
}
.header-mobile-nav-link.is-active,
.header-mobile-nav-toggle.is-open {
  color: var(--navy-cta);
  font-weight: 700;
}
.header-mobile-nav-panels {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.header-mobile-nav-panel {
  padding: 10px 12px 12px;
  max-height: min(52vh, 340px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.header-mobile-nav-panel[hidden] {
  display: none !important;
}
.header-mobile-nav-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}
.header-mobile-nav-panel-head a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--primary);
  text-decoration: none;
}
.header-mobile-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.header-mobile-mega-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: var(--navy-cta);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  min-height: 48px;
}
.header-mobile-mega-link span:last-child {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.header-mobile-mega-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue-light), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.header-mobile-mega-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-mobile-mega-icon i { font-size: 14px; color: var(--primary); }
.header-mobile-pages-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.header-mobile-pages-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 12px;
  text-decoration: none;
  color: var(--navy-cta);
  font-size: 14px;
  font-weight: 600;
}
.header-mobile-pages-list a i {
  width: 18px;
  color: var(--primary);
}

/* ========== CATEGORY STRIP — soft white → orange → blue (mobile + desktop) ========== */
.header-categories {
  --cat-item-w: 92px;
  --cat-circle: 68px;
  --cat-img-max: 78px;
  --cat-visual-h: 80px;
  --cat-bg-top: #ffffff;
  --cat-bg-mid: #fff3e8;
  --cat-bg-bottom: #eef6ff;
  background: linear-gradient(
    180deg,
    var(--cat-bg-top) 0%,
    var(--cat-bg-mid) 50%,
    var(--cat-bg-bottom) 100%
  ) !important;
  border: none !important;
  border-top: 1px solid rgba(15, 23, 42, 0.04) !important;
  padding: 4px 0 8px;
  margin: 0;
  overflow: hidden;
  line-height: 1;
}

.cat-marquee {
  overflow: hidden;
  width: 100%;
}

.cat-marquee--scroll {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  mask-image: none;
  padding: 0 4px;
}
.cat-marquee--scroll::-webkit-scrollbar { display: none; }
.cat-marquee--scroll.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.cat-marquee-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  width: max-content;
  will-change: auto;
}

.cat-marquee--scroll .cat-marquee-track {
  animation: none;
  width: max-content;
  min-width: 100%;
}

.cat-marquee-set {
  display: flex;
  flex-shrink: 0;
  align-items: flex-end;
  gap: 0;
}

.cat-pop-item {
  flex: 0 0 auto;
  width: var(--cat-item-w);
  max-width: var(--cat-item-w);
  min-width: var(--cat-item-w);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  padding: 2px 3px 4px;
  background: transparent !important;
  border: none !important;
  border-radius: 0;
  overflow: visible;
}

.cat-pop-visual {
  position: relative;
  width: 100%;
  height: var(--cat-visual-h);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  margin-bottom: 3px;
}

.cat-pop-bg {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: var(--cat-circle);
  height: var(--cat-circle);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 62%, #ffe8b0 0%, #fff6e0 42%, #fffbf2 68%, rgba(255, 251, 242, 0.4) 100%);
  box-shadow: 0 2px 10px rgba(251, 191, 36, 0.12);
  z-index: 1;
  transition: transform .25s ease;
}

.cat-pop-item:hover .cat-pop-bg {
  transform: translateX(-50%) scale(1.05);
}

.cat-pop-img {
  position: relative;
  z-index: 3;
  max-width: var(--cat-img-max);
  max-height: var(--cat-visual-h);
  width: auto;
  height: auto;
  object-fit: contain;
  transform: translateY(-4px);
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
  transition: transform .3s ease;
}

.cat-pop-item:hover .cat-pop-img {
  transform: translateY(-8px) scale(1.04);
}

.cat-pop-fallback {
  position: relative;
  z-index: 3;
  font-size: 28px;
  color: var(--primary);
  transform: translateY(-2px);
}

.cat-pop-label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  max-width: calc(var(--cat-item-w) - 4px);
  color: var(--navy-cta);
  margin: 0;
  padding: 0 1px;
}

@media (max-width: 991.98px) {
  .header-categories {
    --cat-item-w: 86px;
    --cat-circle: 70px;
    --cat-img-max: 78px;
    --cat-visual-h: 82px;
    padding: 2px 0 6px;
  }
  .cat-pop-item { padding: 1px 2px 3px; }
  .cat-pop-label { font-size: 10.5px; font-weight: 600; }
}

@media (min-width: 1200px) {
  .header-categories {
    --cat-item-w: 98px;
    --cat-circle: 72px;
    --cat-img-max: 82px;
    --cat-visual-h: 84px;
  }
  .cat-pop-label { font-size: 11.5px; }
}

/* Legacy marquee keyframes — unused in scroll mode */
@keyframes cat-marquee-loop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Category (legacy section) */
.section-categories { background: var(--white); padding: 8px 0; }
.category-swiper { padding: 4px 0; }
.category-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}
.category-circle-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--circle-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform .3s ease;
}
.category-circle:hover .category-circle-img { transform: scale(1.06); }
.category-circle-img img { width: 65%; height: 65%; object-fit: contain; }
.category-label {
  margin-top: 5px;
  font-size: 9px;
  font-weight: var(--fw-light);
  text-align: center;
  max-width: 72px;
  line-height: 1.25;
}

/* Category page hero banner */
.category-hero {
  background: #FFF0E0;
  width: 100%;
  line-height: 0;
  text-align: center;
  overflow: hidden;
}
.category-hero-picture { display: block; width: 100%; }
.category-hero-img {
  width: 100%;
  min-height: 220px;
  max-height: min(520px, 70vh);
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
}
.category-static {
  padding: 2rem 0 3rem;
  background: var(--cream);
}
.category-static-head { max-width: 720px; margin-bottom: 2rem; }
.category-static-tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.category-static-intro {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}
.category-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 8px;
}
@media (min-width: 768px) {
  .category-highlights { grid-template-columns: 1fr 1fr; }
}
.category-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
}
.category-highlights i {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.category-benefit-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
}
.category-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.1);
}
.category-benefit-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}
.category-benefit-card h3 {
  font-size: 14px !important;
  margin-bottom: 0.35rem;
}
.category-benefit-card p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}
.category-step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem;
  border: 1px solid #eee;
  height: 100%;
}
.category-step-num {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.category-step-card h3 { font-size: 14px !important; margin-bottom: 0.25rem; }
.category-step-card p { font-size: 12px; color: var(--text-muted); margin: 0; }
.category-cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, var(--navy-cta), #2d4a6f);
  border-radius: var(--radius-lg);
  color: #fff;
}
.category-cta-box h2 { font-size: 1.25rem !important; color: #fff; margin-bottom: 0.35rem; }
.category-cta-box p { margin: 0; opacity: 0.9; font-size: 14px; }
.category-cta-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.category-cta-actions .btn-outline-primary {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.category-cta-actions .btn-outline-primary:hover {
  background: #fff;
  color: var(--navy-cta);
}
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.category-hero-fallback {
  padding: 3rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, var(--blue-light), var(--orange-light));
}
.category-page-title {
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
}

/* ========== HERO — full image visible, no crop ========== */
.section-hero {
  position: relative;
  background: linear-gradient(180deg, #fffaf5 0%, var(--orange-light) 100%);
  margin-top: 0;
  line-height: 0;
}
.site-main { margin-top: 0; padding-top: 0; }
.hero-swiper { height: auto !important; width: 100%; }
.hero-slide {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f4fc, #fff5eb);
  min-height: 160px;
}
@media (max-width: 991.98px) {
  .hero-slide { min-height: 0; }
  .hero-placeholder { min-height: min(42vh, 320px); padding: 1.25rem; }
}
.hero-bg {
  position: relative !important;
  width: 100%;
  height: auto !important;
  max-height: 75vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.hero-video {
  position: relative !important;
  width: 100%;
  height: auto !important;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}
.hero-slide picture { display: block; width: 100%; line-height: 0; }
.hero-placeholder {
  min-height: min(55vh, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #e0e7ff, #fef3c7);
  color: var(--text-muted);
  font-size: 15px;
  padding: 2rem;
}
.hero-placeholder strong { color: var(--primary); }
.hero-prev, .hero-next {
  color: var(--text) !important;
  background: rgba(255,255,255,.85) !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.hero-prev::after, .hero-next::after { font-size: 14px !important; }
.hero-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,.6);
}
.hero-pagination .swiper-pagination-bullet-active { background: var(--white); }

/* Hero — unique enter transition per slide */
.hero-swiper .swiper-slide .hero-bg,
.hero-swiper .swiper-slide video,
.hero-swiper .swiper-slide picture img {
  will-change: transform, opacity, filter;
}
@keyframes heroTxZoom {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes heroTxSlideLeft {
  from { opacity: 0; transform: translateX(6%); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes heroTxSlideRight {
  from { opacity: 0; transform: translateX(-6%); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes heroTxSlideUp {
  from { opacity: 0; transform: translateY(5%); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroTxBlur {
  from { opacity: 0; filter: blur(10px); transform: scale(1.02); }
  to { opacity: 1; filter: blur(0); transform: scale(1); }
}
@keyframes heroTxRotate {
  from { opacity: 0; transform: scale(0.96) rotate(-2deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}
.hero-swiper[data-hero-transition="zoom"] .swiper-slide-active .hero-bg,
.hero-swiper[data-hero-transition="zoom"] .swiper-slide-active video,
.hero-swiper[data-hero-transition="zoom"] .swiper-slide-active picture img {
  animation: heroTxZoom 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-swiper[data-hero-transition="slide-left"] .swiper-slide-active .hero-bg,
.hero-swiper[data-hero-transition="slide-left"] .swiper-slide-active video,
.hero-swiper[data-hero-transition="slide-left"] .swiper-slide-active picture img {
  animation: heroTxSlideLeft 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-swiper[data-hero-transition="slide-right"] .swiper-slide-active .hero-bg,
.hero-swiper[data-hero-transition="slide-right"] .swiper-slide-active video,
.hero-swiper[data-hero-transition="slide-right"] .swiper-slide-active picture img {
  animation: heroTxSlideRight 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-swiper[data-hero-transition="slide-up"] .swiper-slide-active .hero-bg,
.hero-swiper[data-hero-transition="slide-up"] .swiper-slide-active video,
.hero-swiper[data-hero-transition="slide-up"] .swiper-slide-active picture img {
  animation: heroTxSlideUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-swiper[data-hero-transition="blur"] .swiper-slide-active .hero-bg,
.hero-swiper[data-hero-transition="blur"] .swiper-slide-active video,
.hero-swiper[data-hero-transition="blur"] .swiper-slide-active picture img {
  animation: heroTxBlur 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-swiper[data-hero-transition="rotate"] .swiper-slide-active .hero-bg,
.hero-swiper[data-hero-transition="rotate"] .swiper-slide-active video,
.hero-swiper[data-hero-transition="rotate"] .swiper-slide-active picture img {
  animation: heroTxRotate 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@media (prefers-reduced-motion: reduce) {
  .hero-swiper .swiper-slide .hero-bg,
  .hero-swiper .swiper-slide video,
  .hero-swiper .swiper-slide picture img {
    animation: none !important;
  }
  .btn-icon--call-ring { animation: none; }
  .btn-icon--call::after { animation: none; }
}

/* Offer bar — slim, desktop row / mobile stack */
.announcement-offer {
  position: relative;
  background: linear-gradient(90deg, #1e3a5f 0%, #2563eb 52%, #3b82f6 100%);
  color: #fff;
  overflow: hidden;
  line-height: 1.35;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.announcement-offer--animated {
  background: linear-gradient(110deg, #0f2744 0%, #1e3a5f 22%, #2563eb 50%, #3b82f6 78%, #1d4ed8 100%);
  background-size: 200% 100%;
  animation: offer-bg-shift 8s ease-in-out infinite alternate;
}
@keyframes offer-bg-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.announcement-offer-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 45%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0.12) 55%,
    transparent 100%
  );
  animation: offer-shine-sweep 4.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes offer-shine-sweep {
  0%, 35% { left: -100%; }
  65%, 100% { left: 120%; }
}
.announcement-offer-sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 10px #fbbf24;
  opacity: 0;
  animation: offer-sparkle 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.announcement-offer-sparkle--1 { top: 28%; left: 18%; animation-delay: 0.5s; }
.announcement-offer-sparkle--2 { top: 62%; right: 22%; animation-delay: 1.6s; }
@keyframes offer-sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1.2); }
}
.offer-text-track {
  display: inline-block;
  background: linear-gradient(90deg, #fff 0%, #fde68a 40%, #fff 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: offer-text-shimmer 5s linear infinite;
}
@keyframes offer-text-shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.offer-cta-btn--pulse {
  animation: offer-cta-glow 2.2s ease-in-out infinite;
}
@keyframes offer-cta-glow {
  0%, 100% { box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12), 0 0 0 0 rgba(255, 255, 255, 0.4); }
  50% { box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18), 0 0 0 6px rgba(255, 255, 255, 0.15); }
}
.announcement-offer-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px 16px;
}
.announcement-offer-text {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: clamp(12px, 2.4vw, 14px);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}
.offer-text-track--mobile {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.offer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff;
  border: none;
  color: #1e3a5f;
  font-size: 12px;
  font-weight: var(--fw-bold);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}
.offer-cta-btn:hover {
  background: #fff7ed;
  color: #1e3a5f;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.offer-cta-label--short {
  display: none;
}
@media (min-width: 768px) {
  .announcement-offer-inner {
    padding: 9px 24px;
    justify-content: space-between;
  }
  .announcement-offer-text {
    text-align: left;
    font-size: 13px;
    letter-spacing: 0.06em;
  }
}
@media (max-width: 767.98px) {
  .announcement-offer-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
  }
  .announcement-offer-text {
    text-align: left;
    flex: 1 1 auto;
    min-width: 0;
    font-size: clamp(10px, 2.85vw, 12px);
    line-height: 1.15;
    letter-spacing: 0.025em;
    overflow: hidden;
  }
  .offer-text-track--mobile {
    font-size: inherit;
    line-height: 1.15;
  }
  .offer-cta-btn {
    flex-shrink: 0;
    padding: 8px 12px;
    font-size: clamp(11px, 2.8vw, 12px);
  }
  .offer-cta-label--full {
    display: none;
  }
  .offer-cta-label--short {
    display: inline;
  }
}
@media (max-width: 380px) {
  .announcement-offer-inner {
    padding: 9px 10px;
    gap: 6px;
  }
  .announcement-offer-text {
    font-size: clamp(9px, 2.6vw, 11px);
  }
  .offer-cta-btn {
    padding: 7px 10px;
    font-size: 10px;
  }
}
@keyframes marquee-left { to { transform: translateX(-50%); } }

/* ========== GLOBAL SLIM TYPOGRAPHY ========== */
.section-eyebrow {
  color: var(--primary);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  font-weight: var(--fw-medium) !important;
  border-radius: 50px;
}
.btn-outline-primary {
  font-weight: var(--fw-medium) !important;
  border-radius: 50px;
  border-color: var(--primary);
  color: var(--primary);
}

/* Service Cards */
.service-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  height: 100%;
  text-decoration: none;
  color: var(--text);
  border: 1px solid #f0f0f0;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  border-color: #e8e8e8;
  color: var(--text);
}
.service-card-premium {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: linear-gradient(165deg, #fff 0%, #f8fbff 100%);
}
.service-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card-premium:hover::before { transform: scaleX(1); }
.service-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.25);
}
.section-services--premium {
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}

/* What We Do — slim wide cards, text on image overlay */
.section-wedo {
  padding: 0.75rem 0 0.9rem;
  background: #f8fafc;
  overflow: hidden;
}
.container-wedo {
  max-width: 1320px;
  padding-left: 12px;
  padding-right: 12px;
}
.wedo-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 0.55rem;
  padding: 0 2px;
}
.wedo-title {
  font-size: clamp(1.1rem, 4vw, 1.45rem) !important;
  font-weight: var(--fw-bold) !important;
  color: var(--navy-cta);
  margin: 0 0 0.1rem;
  line-height: 1.15;
}
.wedo-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.3;
}
.wedo-view-all {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}
.wedo-swiper {
  overflow: visible;
  padding: 2px 0 8px;
}
.wedo-swiper .swiper-slide {
  height: auto;
}
.wedo-card {
  display: block;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 3px 14px rgba(15, 23, 42, 0.1);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  animation: wedo-card-in 0.5s ease backwards;
  animation-delay: var(--wedo-delay, 0s);
}
@keyframes wedo-card-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.wedo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.18);
}
.wedo-card-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1.586 / 1;
  min-height: 168px;
  overflow: hidden;
  background: #1e3a5f;
}
.wedo-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.35s ease;
}
.wedo-card:hover .wedo-card-img {
  transform: scale(1.05);
  opacity: 0.55;
}
.wedo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 35, 55, 0.15) 0%,
    rgba(15, 35, 55, 0.55) 45%,
    rgba(10, 28, 48, 0.88) 100%
  );
  transition: background 0.35s ease;
  z-index: 1;
}
.wedo-card:hover .wedo-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(15, 35, 55, 0.2) 0%,
    rgba(15, 35, 55, 0.65) 40%,
    rgba(10, 28, 48, 0.92) 100%
  );
}
.wedo-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 14px 15px;
  pointer-events: none;
}
.wedo-card-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.wedo-card-title {
  font-size: 0.95rem !important;
  font-weight: var(--fw-bold) !important;
  color: #fff;
  margin: 0 0 5px;
  line-height: 1.25;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
.wedo-card-desc {
  font-size: 11.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .section-wedo {
    padding: 1rem 0 1.1rem;
  }
  .wedo-title {
    font-size: 1.55rem !important;
  }
  .wedo-sub {
    font-size: 14px;
  }
  .wedo-card-visual {
    min-height: 188px;
  }
  .wedo-card-title {
    font-size: 1.12rem !important;
  }
  .wedo-card-desc {
    font-size: 13px;
  }
  .wedo-card-content {
    padding: 16px 16px 17px;
  }
}
@media (min-width: 992px) {
  .wedo-title {
    font-size: 1.72rem !important;
  }
  .wedo-sub {
    font-size: 15px;
  }
  .wedo-card-title {
    font-size: 1.2rem !important;
  }
  .wedo-card-desc {
    font-size: 13.5px;
    -webkit-line-clamp: 3;
  }
  .wedo-card-icon {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
}
@media (max-width: 575.98px) {
  .section-wedo {
    padding: 0.65rem 0 0.75rem;
  }
  .container-wedo {
    padding-left: 10px;
    padding-right: 0;
  }
  .wedo-header {
    padding-right: 10px;
    margin-bottom: 0.45rem;
  }
  .wedo-swiper {
    padding-right: 10px;
  }
  .wedo-card-visual {
    min-height: 158px;
    aspect-ratio: 1.586 / 1;
  }
  .wedo-card-content {
    padding: 12px 12px 13px;
  }
  .wedo-card-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}
.service-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(253,186,116,.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.service-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.service-card h3 { font-size: 15px !important; font-weight: var(--fw-bold) !important; margin-bottom: 8px; }
.service-card p { color: var(--text-muted); font-size: 13px; margin: 0 0 12px; line-height: 1.5; }
.service-link {
  color: var(--primary);
  font-size: 12px;
  font-weight: var(--fw-medium);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card-premium:hover .service-link i { transform: translateX(4px); }
.service-card-premium .service-link i { transition: transform 0.25s; }

.section-why { background: var(--cream); }
.why-list { list-style: none; padding: 0; font-size: 13px; font-weight: var(--fw-light); }
.why-list i { color: var(--primary); margin-right: 6px; font-size: 12px; }
.counter-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  border: 1px solid #f0f0f0;
}
.counter-num { font-size: 1.75rem; font-weight: var(--fw-normal) !important; color: var(--primary); }
.counter-box p { margin: 0; color: var(--text-muted); font-size: 11px; font-weight: var(--fw-light); }

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #f0f0f0;
  height: 100%;
}
.project-img { height: 160px; overflow: hidden; }
.project-img img { width: 100%; height: 100%; object-fit: cover; }
.project-body { padding: 1rem; }
.project-body h3 { font-size: 14px; font-weight: var(--fw-normal) !important; }
.project-body p { font-size: 12px; font-weight: var(--fw-light); color: var(--text-muted); }

.section-testimonials { background: var(--cream); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid #f0f0f0;
  position: relative;
  min-height: 180px;
}
.quote-mark { font-size: 2.5rem; color: #bfdbfe; line-height: 1; }
.testimonial-product { font-size: 13px; font-weight: var(--fw-normal) !important; }
.testimonial-text { font-size: 13px; font-weight: var(--fw-light); line-height: 1.6; }
.testimonial-author { font-size: 11px; color: var(--text-muted); font-weight: var(--fw-light); }
.testimonial-tab {
  border: 1px solid #e8e8e8;
  background: transparent;
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: var(--fw-light);
  cursor: pointer;
}
.testimonial-tab.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #f0f0f0;
  height: 100%;
}
.blog-img { height: 140px; overflow: hidden; }
.blog-body { padding: 1rem; }
.blog-meta { font-size: 10px; color: var(--primary); font-weight: var(--fw-light); }
.blog-body h3 { font-size: 13px; font-weight: var(--fw-normal) !important; }
.blog-body p { font-size: 12px; font-weight: var(--fw-light); color: var(--text-muted); }

.lead-form-box {
  background: linear-gradient(135deg, var(--primary), #1e40af);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
}
.lead-form-box h2 { font-size: 1.25rem; font-weight: var(--fw-normal) !important; }
.lead-form-box p { font-size: 13px; font-weight: var(--fw-light); opacity: 0.9; }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 55%, #0c1222 100%);
  color: #94a3b8;
  font-weight: var(--fw-light);
  position: relative;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .site-footer {
    padding-bottom: calc(var(--bottom-nav-h) + var(--bottom-nav-float) + 32px + env(safe-area-inset-bottom, 0px));
  }
  .site-footer .footer-bottom {
    margin-bottom: 0;
  }
}
.site-footer--home {
  position: relative;
  z-index: 2;
  padding-top: 0;
  margin-top: -2.25rem;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 50%, #0c1222 100%);
}
.site-footer--home::before,
.site-footer--home::after {
  display: none;
}
.site-footer a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer a:hover { color: #fff; }
.footer-top { padding: 2.75rem 0 1.75rem; }
.site-footer--home .footer-top {
  padding-top: 3.25rem;
  padding-bottom: 2.25rem;
  position: relative;
  z-index: 3;
}
.footer-grid {
  align-items: flex-start;
}
.footer-col-brand {
  margin-bottom: 0.25rem;
}
.footer-brand-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}
.footer-brand {
  color: #fff;
  font-size: 1.32rem;
  font-weight: var(--fw-bold) !important;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
@media (min-width: 992px) {
  .footer-grid > div:not(.footer-col-brand) {
    border-left: 1px solid rgba(148, 163, 184, 0.1);
    padding-left: 1.75rem;
  }
}
.footer-desc {
  font-size: 14px;
  line-height: 1.65;
  color: #b8c5d6;
  margin-bottom: 1.25rem;
  max-width: 340px;
}
.site-footer h6 {
  font-size: 11px;
  font-weight: var(--fw-bold) !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #94a3b8;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  display: inline-block;
  min-width: 80px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  font-size: 13px;
  color: #cbd5e1;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-links-all {
  margin-top: 0.35rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}
.footer-links-all a {
  color: #93c5fd !important;
  font-size: 12px;
}
.footer-links-all a:hover {
  color: #fff !important;
}
.footer-contact li {
  margin-bottom: 0.75rem;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
}
.footer-contact-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 0.85rem;
}
.footer-contact a {
  color: #e2e8f0;
  word-break: break-word;
}
.footer-contact a:hover { color: #fff; }
.footer-newsletter-label {
  font-size: 12px;
  color: #94a3b8;
  margin: 1rem 0 0.5rem;
}
.footer-newsletter-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-newsletter-input {
  flex: 1 1 140px;
  min-width: 0;
  background: rgba(15, 23, 42, 0.65) !important;
  border: 1px solid rgba(148, 163, 184, 0.35) !important;
  color: #fff !important;
  border-radius: 12px !important;
  padding: 10px 14px !important;
  font-size: 13px !important;
}
.footer-newsletter-input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25) !important;
}
.footer-newsletter-input::placeholder { color: #64748b !important; }
.footer-newsletter-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  font-size: 13px;
  font-weight: var(--fw-bold);
  transition: transform 0.2s, box-shadow 0.2s;
}
.footer-newsletter-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}
.footer-newsletter .form-control {
  background: #1f2937;
  border-color: #374151;
  color: #fff;
}
.footer-newsletter .form-control::placeholder { color: #6b7280; }
.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding: 1.15rem 0 calc(1.15rem + env(safe-area-inset-bottom, 0px));
  font-size: 12px;
  background: rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 3;
}
.site-footer--home .footer-bottom {
  background: rgba(0, 0, 0, 0.35);
}
.site-footer--home .footer-bottom p {
  color: #94a3b8;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.footer-legal a {
  font-size: 11px;
  color: #94a3b8;
  transition: color 0.2s;
}
.footer-legal a:hover { color: #fff; }
.profiles-section {
  margin-top: 0.25rem;
}
.profiles-title {
  font-size: 11px;
  font-weight: var(--fw-bold) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7c8ba0;
  margin-bottom: 14px;
}
.profiles-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.profile-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 52px;
  text-decoration: none;
  color: inherit;
}
.profile-icon-wrap:hover { color: #fff; }
.profile-icon-inner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  margin-bottom: 5px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.profile-icon-inner[style*="gradient"],
.profile-icon-wrap:nth-child(4) .profile-icon-inner {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
}
.profile-icon-wrap:hover .profile-icon-inner {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
.profile-label {
  font-size: 9px;
  text-align: center;
  line-height: 1.2;
  color: #9ca3af;
  max-width: 52px;
  word-break: break-word;
}
.sticky-cta {
  position: fixed;
  z-index: 1035;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff !important;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  font-size: 12px;
  font-weight: var(--fw-medium) !important;
  padding: 10px 16px;
  bottom: calc(var(--bottom-nav-h) + var(--bottom-nav-float) + 20px);
  right: 16px;
}
@media (min-width: 992px) {
  .sticky-cta { bottom: 24px; right: 24px; }
}

/* Bottom nav — premium minimal */
.bottom-nav {
  position: fixed;
  bottom: calc(var(--bottom-nav-float) + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 24px, 400px);
  z-index: 1060;
  pointer-events: none;
}
.bottom-nav-pill {
  pointer-events: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 8px 10px 10px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 0;
  padding: 0 2px;
  border: none;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.18s ease;
}
.bottom-nav-item:active {
  transform: scale(0.94);
}
.bottom-nav-label {
  font-size: 9px;
  font-weight: var(--fw-medium);
  color: #94a3b8;
  transition: color 0.2s ease;
}
.bottom-nav-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #64748b;
  background: transparent;
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.bottom-nav-item.active .bottom-nav-label {
  color: #1e3a5f;
  font-weight: var(--fw-bold);
}
.bottom-nav-item.active .bottom-nav-icon {
  color: #fff;
  background: #1e3a5f;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.28);
  transform: translateY(-1px);
}
.bottom-nav-item--home {
  flex: 0 0 auto;
  margin: 0 4px;
}
.bottom-nav-item--home .bottom-nav-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin-top: -14px;
  color: #64748b;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}
.bottom-nav-item--home.active .bottom-nav-icon,
.bottom-nav-item--home .bottom-nav-icon--home {
  color: #fff;
  background: linear-gradient(145deg, #1e3a5f, #2563eb);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
  transform: translateY(-3px);
}
.bottom-nav-item--home.active .bottom-nav-label {
  color: #1e3a5f;
}
.bottom-nav-item--wa.active .bottom-nav-icon {
  background: #15803d;
}
@media (max-width: 380px) {
  .bottom-nav-icon {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }
  .bottom-nav-item--home .bottom-nav-icon {
    width: 42px;
    height: 42px;
    margin-top: -12px;
  }
  .bottom-nav-label {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .bottom-nav-item,
  .bottom-nav-icon {
    transition: none;
  }
}

/* Lead / consult popups — slim wide desktop, bottom sheet on mobile */
.lead-popup-modal {
  --lead-sheet-radius: 22px;
  --lead-accent: #e53935;
  --lead-accent-dark: #c62828;
  z-index: 1080 !important;
}
body.lead-sheet-open .modal-backdrop {
  z-index: 1075 !important;
}
body.lead-sheet-open .clickiya-chat-fab {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85);
  transition: opacity 0.25s, transform 0.25s;
}
.lead-popup-modal .modal-backdrop.show {
  opacity: 0.55;
  backdrop-filter: blur(3px);
}
.lead-popup-modal.modal {
  padding: 0 !important;
}
.lead-popup-modal.modal.show {
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
}
.lead-popup-dialog {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  max-height: min(88vh, 520px);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
}
.lead-popup-modal.fade .lead-popup-dialog {
  transform: translateY(110%);
}
.lead-popup-modal.show .lead-popup-dialog {
  transform: translateY(0);
}
.lead-popup-content {
  position: relative;
  border: none;
  border-radius: var(--lead-sheet-radius) var(--lead-sheet-radius) 0 0;
  overflow: hidden;
  box-shadow: 0 -8px 40px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.06);
  background: #fff;
}
.lead-popup-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2;
  background: linear-gradient(90deg, #e53935 0%, #f97316 50%, #e53935 100%);
  pointer-events: none;
}
.consult-modal-content::before {
  background: linear-gradient(90deg, #111 0%, #475569 50%, #111 100%);
}
.lead-popup-grab {
  display: block;
  width: 40px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: #cbd5e1;
  flex-shrink: 0;
}
.lead-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 6;
  width: 34px;
  height: 34px;
  border: 1.5px solid #e2e8f0;
  border-radius: 50%;
  background: #fff;
  color: #64748b;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.lead-popup-close:hover {
  color: #111;
  border-color: #111;
  transform: scale(1.05);
}
.lead-popup-body {
  padding: 0.5rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  text-align: left;
}
.lead-popup-layout {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.lead-popup-layout--media .lead-popup-panel--info {
  display: grid;
  grid-template-columns: 1fr minmax(100px, 38%);
  gap: 0.65rem;
  align-items: start;
}
.lead-popup-head {
  min-width: 0;
  padding-right: 2rem;
}
.lead-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  margin-bottom: 6px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b45309;
  background: linear-gradient(90deg, #fff7ed, #ffedd5);
  border: 1px solid #fed7aa;
}
.lead-popup-badge--dark {
  color: #fff;
  background: #111;
  border-color: #111;
}
.lead-popup-badge i {
  font-size: 11px;
}
.lead-popup-title {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.95rem, 3.8vw, 1.05rem);
  font-weight: 800 !important;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #0f172a;
  margin: 0 0 4px;
  padding: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lead-popup-lead {
  font-size: 11px;
  color: #64748b;
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lead-popup-banner-wrap {
  border-radius: 10px;
  overflow: hidden;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  min-height: 0;
}
.lead-popup-banner {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 72px;
  max-height: 88px;
  object-fit: cover;
}
.lead-popup-banner--desktop { display: none; }
.lead-popup-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lead-popup-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lead-popup-fields--stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lead-popup-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.lead-popup-fields--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.lead-popup-field--wide {
  grid-column: 1 / -1;
}
.lead-popup-select-wrap {
  position: relative;
}
.lead-popup-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.lead-popup-select-trigger {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.lead-popup-select-trigger.has-value .lead-popup-select-label {
  color: var(--text) !important;
  font-weight: 600 !important;
}
.lead-popup-select-chevron {
  font-size: 14px;
  color: #64748b;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.lead-popup-select-wrap.is-open .lead-popup-select-chevron {
  transform: rotate(180deg);
}
.lead-popup-select-wrap.is-open .lead-popup-select-trigger {
  border-color: #111 !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.06) !important;
}
.lead-popup-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 6px);
  z-index: 20;
  max-height: min(220px, 40vh);
  overflow-y: auto;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 -12px 40px rgba(15, 23, 42, 0.16);
  -webkit-overflow-scrolling: touch;
}
.lead-popup-select-menu[hidden] {
  display: none !important;
}
.lead-popup-select-option {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #0f172a;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}
.lead-popup-select-option:hover,
.lead-popup-select-option.is-selected {
  background: #f1f5f9;
}
.lead-popup-select-option.is-selected {
  font-weight: 700;
  color: #111;
}
.lead-popup-input {
  width: 100%;
  padding: 10px 12px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--text) !important;
  background: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 10px !important;
  min-height: 42px;
  box-shadow: none !important;
  transition: border-color 0.2s, background 0.2s;
}
.lead-popup-input::placeholder {
  color: #94a3b8;
}
.lead-popup-input:focus {
  background: #fff !important;
  border-color: #111 !important;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.06) !important;
}
select.lead-popup-input {
  color: #64748b;
}
select.lead-popup-input:valid,
select.lead-popup-input:focus {
  color: var(--text);
}
.lead-popup-submit {
  width: 100%;
  margin-top: 2px;
  padding: 11px 14px;
  border: none;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff !important;
  background: var(--lead-accent) !important;
  box-shadow: 0 4px 14px rgba(229, 57, 53, 0.3);
  transition: background 0.2s, transform 0.15s;
}
.lead-popup-submit:hover {
  color: #fff !important;
  background: var(--lead-accent-dark) !important;
  transform: translateY(-1px);
}
.lead-popup-tnc {
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  color: #94a3b8;
  margin: 0;
  letter-spacing: 0.03em;
}
.lead-popup-tnc a {
  color: #475569;
  font-weight: 600;
  text-decoration: underline;
}

/* Desktop: centered, wider, slimmer */
@media (min-width: 768px) {
  .lead-popup-modal.modal.show {
    align-items: center;
    padding: 1rem !important;
  }
  .lead-popup-modal.fade .lead-popup-dialog {
    transform: translateY(24px) scale(0.98);
    opacity: 0;
  }
  .lead-popup-modal.show .lead-popup-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  .lead-popup-dialog {
    max-width: min(680px, calc(100vw - 40px));
    max-height: none;
    margin: auto;
  }
  .lead-popup-content {
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  }
  .lead-popup-grab {
    display: none;
  }
  .lead-popup-body {
    padding: 0.85rem 1.1rem 1rem;
  }
  .lead-popup-layout,
  .lead-popup-layout--media {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 1.05fr);
    gap: 1rem;
    align-items: start;
  }
  .lead-popup-layout--media .lead-popup-panel--info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .lead-popup-head {
    padding-right: 2.25rem;
  }
  .lead-popup-title {
    font-size: 1rem;
    -webkit-line-clamp: 3;
  }
  .lead-popup-banner {
    max-height: 100px;
    min-height: 80px;
    border-radius: 10px;
  }
  .lead-popup-banner--mobile { display: none; }
  .lead-popup-banner--desktop { display: block; }
  .lead-popup-banner:only-of-type { display: block; }
  .lead-popup-fields--grid {
    grid-template-columns: 1fr 1fr;
  }
  #popupLeadForm .lead-popup-fields--stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  #popupLeadForm .lead-popup-select-wrap,
  #popupLeadForm .lead-popup-submit,
  #popupLeadForm .lead-popup-tnc {
    grid-column: 1 / -1;
  }
}

/* Mobile: sit above bottom nav */
@media (max-width: 767.98px) {
  .lead-popup-dialog {
    margin-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
    max-height: calc(82vh - 58px);
  }
  .lead-popup-body {
    padding: 0.35rem 0.9rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  }
  .lead-popup-layout--media .lead-popup-panel--info {
    grid-template-columns: 1fr 32%;
    gap: 0.5rem;
  }
  .lead-popup-head {
    padding-right: 1.75rem;
  }
  .lead-popup-title {
    font-size: 0.88rem;
    line-height: 1.2;
  }
  .lead-popup-banner {
    max-height: 70px;
    min-height: 58px;
  }
  .lead-popup-fields-row {
    grid-template-columns: 1fr;
  }
  .lead-popup-select-menu {
    bottom: auto;
    top: calc(100% + 6px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.16);
  }
  .lead-popup-submit {
    padding: 12px 14px;
    font-size: 11px;
  }
}

/* Consult variant */
.consult-modal-content {
  border-top: 3px solid #111;
}
.consult-modal .lead-popup-title {
  text-transform: none;
  font-size: 1.05rem;
  -webkit-line-clamp: 2;
}
.consult-modal-lead {
  margin: 0;
}
.consult-modal-submit {
  background: #111 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.consult-modal-submit:hover {
  background: #000 !important;
}
.popup-title { font-size: 14px; font-weight: var(--fw-normal) !important; }
.popup-submit-btn { font-size: 11px; font-weight: var(--fw-normal) !important; }

.page-hero {
  background: var(--primary);
  color: var(--white);
  padding: 2rem 0;
}
.page-hero h1 { font-size: 1.35rem; font-weight: var(--fw-normal) !important; }
.page-hero p { font-size: 12px; font-weight: var(--fw-light); opacity: 0.9; }

.form-control, .form-select {
  font-size: 13px;
  font-weight: var(--fw-light);
}
.form-control-lg { font-size: 14px; }

/* ========== MOBILE MENU DRAWER (reference style) ========== */
.mobile-menu-drawer {
  width: 100% !important;
  max-width: 100% !important;
  border: none;
  background: #fafafa;
}
.mobile-drawer-head {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  padding: 8px 12px;
  background: #fff;
  border-bottom: 1px solid #e8eef4;
  flex-shrink: 0;
  min-height: 56px;
}
.mobile-drawer-close {
  grid-column: 1;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 22px;
  color: var(--navy-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.mobile-drawer-logo {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-width: 0;
  padding: 2px 0;
}
.mobile-drawer-logo-img {
  height: auto;
  max-height: 38px;
  width: auto;
  max-width: min(200px, 70vw);
  object-fit: contain;
}
.mobile-drawer-wa {
  grid-column: 3;
  justify-self: end;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: #25d366;
  text-decoration: none;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.08);
}
.mobile-drawer-body {
  padding: 12px 14px 24px !important;
  overflow-y: auto;
}
.mobile-drawer-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 8px;
  border: 1.5px solid var(--navy-cta);
  border-radius: 999px;
  background: #fff;
  color: var(--navy-cta);
  font-size: 15px;
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-drawer-pill:hover {
  background: var(--navy-cta);
  color: #fff;
}
.mobile-drawer-pill i { font-size: 17px; }
.mobile-drawer-pill--btn {
  cursor: pointer;
  font: inherit;
  text-align: center;
}
.mobile-drawer-pill--btn:hover {
  background: var(--navy-cta);
  color: #fff;
}
.mobile-drawer-eyebrow {
  margin: 14px 0 10px;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
}
.mobile-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mobile-cat-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  text-decoration: none;
  color: var(--navy-cta);
  min-height: 56px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mobile-cat-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.mobile-cat-thumb {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e8f4fc, #fff5eb);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mobile-cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mobile-cat-thumb i {
  font-size: 18px;
  color: var(--primary);
}
.mobile-cat-name {
  font-size: 12px;
  font-weight: var(--fw-medium);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mobile-promo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.mobile-promo-card {
  position: relative;
  display: block;
  padding: 12px 10px;
  background: #e8eef5;
  border-radius: 12px;
  text-decoration: none;
  color: var(--navy-cta);
  min-height: 72px;
}
.mobile-promo-title {
  display: block;
  font-size: 13px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
}
.mobile-promo-sub {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.3;
}
.mobile-promo-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  opacity: 0.55;
}
.mobile-drawer-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #e5e5e5;
}
.mobile-drawer-quick a {
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  text-decoration: none;
}
.mobile-drawer-quick a:hover { color: var(--primary); }

/* Global readable sizes */
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.25rem) !important; }
.section-desc { font-size: 16px !important; }
.service-card h3 { font-size: 16px !important; }
.service-card p { font-size: 14px !important; }
.btn-primary, .btn-outline-primary { font-size: 15px !important; padding: 10px 22px !important; }
.page-hero h1 { font-size: 1.75rem !important; }
.form-control, .form-select { font-size: 15px !important; }

/* ========== SEARCH MODAL ========== */
.search-modal .modal-backdrop.show { opacity: 0.45; }
.search-modal .modal-dialog {
  max-width: 520px;
  margin: 1rem auto;
}
.search-modal-panel {
  border: none;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(30, 58, 95, 0.2);
  overflow: hidden;
}
.search-modal-panel .modal-body {
  padding: 1.5rem 1.35rem 1.25rem;
  position: relative;
}
.search-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 18px;
  z-index: 2;
}
.search-modal-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: var(--text-muted);
  margin-bottom: 8px;
}
.search-modal-label i { color: var(--primary); }
.search-modal-input-box {
  position: relative;
  margin-bottom: 4px;
}
.search-modal-input {
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--text);
  background: #fff;
  border: 2px solid #a8d4f0;
  border-radius: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-modal-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.search-results-list {
  margin-top: 12px;
  max-height: min(50vh, 320px);
  overflow-y: auto;
}
.search-result-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 10px 4px;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  transition: background 0.15s;
  border-radius: 6px;
}
.search-result-row:last-child { border-bottom: none; }
.search-result-row:hover {
  background: rgba(37, 99, 235, 0.06);
}
.search-result-type {
  font-size: 11px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
}
.search-result-type--service { color: #2563eb; }
.search-result-type--category { color: #d97706; }
.search-result-type--blog { color: #7c3aed; }
.search-result-type--project { color: #059669; }
.search-result-title {
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  line-height: 1.35;
}
.search-result-row:hover .search-result-title { color: var(--primary-dark); }
.search-modal-hint {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* ========== HOME PAGE SECTIONS ========== */
.home-section {
  position: relative;
  overflow: hidden;
}
.home-section--services {
  background: linear-gradient(180deg, var(--cream) 0%, #fff 50%, var(--cream) 100%);
}
/* Unified theme — Why + Portfolio (lite orange / blue) */
.home-section--glass-why,
.home-section--glass-portfolio {
  --theme-text: #0f2744;
  --theme-muted: #475569;
  --theme-accent: #f97316;
  --theme-blue: #2563eb;
  --theme-orange-glow: rgba(255, 183, 120, 0.2);
  --theme-blue-glow: rgba(147, 197, 253, 0.24);
  --theme-bg: linear-gradient(180deg, #fff9f5 0%, #f5f9ff 52%, #f8fbff 100%);
  --theme-card-border: rgba(249, 115, 22, 0.28);
}

/* One-time mirror flash when section scrolls into view */
@keyframes card-mirror-flash {
  0% {
    opacity: 0;
    transform: translateX(-130%) skewX(-14deg);
  }
  35% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translateX(230%) skewX(-14deg);
  }
}

.card-flash-target {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--theme-card-border) !important;
}
.card-flash-target::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.92) 50%,
    transparent 60%,
    transparent 100%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 8;
}
.card-flash-target.is-flash-play::after {
  animation: card-mirror-flash 0.7s ease-out forwards;
}

.portfolio-card-shell {
  border-radius: 22px;
  height: 100%;
  background: #fff;
  box-shadow: 0 4px 18px rgba(30, 58, 95, 0.06);
}
.portfolio-card-shell .portfolio-card {
  border-radius: 21px;
  box-shadow: none;
}

/* Home buttons — mirror flash on hover */
@keyframes btn-mirror-flash {
  0% {
    left: -75%;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    left: 125%;
    opacity: 0;
  }
}

.page-home .offer-cta-btn,
.page-home .section-why-premium .btn,
.page-home .section-portfolio .btn,
.page-home .portfolio-btn-site,
.page-home .home-section--blog .btn,
.page-home .home-section-view-all,
.page-home .blog-slide-card-link,
.page-home .home-section--lead .btn,
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-home .offer-cta-btn::before,
.page-home .section-why-premium .btn::before,
.page-home .section-portfolio .btn::before,
.page-home .portfolio-btn-site::before,
.page-home .home-section--blog .btn::before,
.page-home .home-section-view-all::before,
.page-home .blog-slide-card-link::before,
.page-home .home-section--lead .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.65),
    transparent
  );
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.page-home .offer-cta-btn:hover::before,
.page-home .section-why-premium .btn:hover::before,
.page-home .section-portfolio .btn:hover::before,
.page-home .portfolio-btn-site:hover::before,
.page-home .home-section--blog .btn:hover::before,
.page-home .home-section-view-all:hover::before,
.page-home .blog-slide-card-link:hover::before,
.page-home .home-section--lead .btn:hover::before {
  animation: btn-mirror-flash 0.55s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .card-flash-target.is-flash-play::after,
  .page-home .btn:hover::before,
  .page-home .offer-cta-btn:hover::before,
  .page-home .portfolio-btn-site:hover::before {
    animation: none;
  }
}

/* Why Clickiya — glassmorphism */
.section-why-premium {
  position: relative;
  padding: 1.5rem 0 0.65rem;
  overflow: hidden;
  color: var(--theme-text);
  background: transparent;
}
.why-premium-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 95% 15%, var(--theme-orange-glow), transparent 60%),
    radial-gradient(ellipse 50% 40% at 5% 85%, var(--theme-blue-glow), transparent 60%),
    linear-gradient(180deg, #fff9f5 0%, #f5f9ff 42%, #FCF6F1 100%);
  pointer-events: none;
}
.why-premium-copy {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.35rem 0.25rem 0.5rem;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.why-premium-aside {
  background: #fff;
  border-radius: 22px;
  padding: 1rem 1rem 0.9rem;
  box-shadow: 0 6px 28px rgba(30, 58, 95, 0.07);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.why-premium-aside.card-flash-target {
  border-radius: 20px;
}
.why-premium-stat.card-flash-target,
.why-premium-feature.card-flash-target {
  border-radius: 14px;
}
.why-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--theme-text);
  margin-bottom: 0.7rem;
  box-shadow: 0 2px 12px rgba(30, 58, 95, 0.06);
}
.why-premium-badge i {
  color: var(--theme-accent);
  font-size: 1.05rem;
}
.why-premium-title {
  font-size: clamp(1.45rem, 4.5vw, 2.1rem) !important;
  font-weight: var(--fw-bold) !important;
  color: var(--theme-text);
  line-height: 1.2;
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
}
.why-premium-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--theme-muted);
  margin: 0 0 0.9rem;
  max-width: 520px;
}
.why-premium-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.why-premium-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.5rem;
  font-size: 15px;
  color: #334155;
  line-height: 1.5;
}
.why-premium-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a2e, #3d3d4a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.why-premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn-why-cta {
  font-weight: var(--fw-bold);
  padding: 11px 24px;
  border-radius: 999px;
  font-size: 14px;
  background: #1a1a2e !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(26, 26, 46, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-why-cta:hover {
  background: #2d2d42 !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.3);
}
.btn-why-outline {
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 14px;
  background: #fff !important;
  border: 1px solid #cbd5e1 !important;
  color: var(--theme-text) !important;
  font-weight: var(--fw-medium);
}
.btn-why-outline:hover {
  background: #f8fafc !important;
  color: var(--theme-text) !important;
  border-color: #94a3b8 !important;
}
.why-premium-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.why-premium-stat {
  background: #fff;
  border-radius: 16px;
  padding: 0.9rem 0.7rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(30, 58, 95, 0.05);
  transition: box-shadow 0.2s;
}
.why-premium-stat:hover {
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.12);
}
.why-premium-stat-num {
  display: block;
  font-size: clamp(1.55rem, 4.2vw, 2rem);
  font-weight: var(--fw-bold) !important;
  color: var(--theme-blue);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.why-premium-stat-label {
  display: block;
  font-size: 12px;
  color: var(--theme-muted);
  margin-top: 6px;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.why-premium-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
}
.why-premium-trust span {
  font-size: 13px;
  color: var(--theme-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: #fafbfd;
  border: 1px solid #e8eef5;
  border-radius: 999px;
}
.why-premium-trust i {
  color: var(--theme-accent);
  font-size: 1rem;
}
.why-premium-features {
  border-top: none;
  padding-top: 0.85rem;
  margin-top: 0.25rem !important;
}
.why-premium-feature {
  background: #fff;
  border-radius: 16px;
  padding: 0.85rem 0.6rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 14px rgba(30, 58, 95, 0.05);
  transition: box-shadow 0.2s;
}
.why-premium-feature:hover {
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.1);
}
.why-premium-feature i {
  font-size: 1.45rem;
  color: var(--theme-accent);
  display: block;
  margin-bottom: 0.4rem;
}
.why-premium-feature strong {
  display: block;
  font-size: 14px;
  color: var(--theme-text);
  margin-bottom: 0.2rem;
  font-weight: var(--fw-bold);
}
.why-premium-feature span {
  font-size: 13px;
  color: var(--theme-muted);
  line-height: 1.4;
}
.why-premium-stats-wrap {
  margin-bottom: 8px;
}
@media (max-width: 991.98px) {
  .section-why-premium {
    padding: 1rem 0 0.9rem;
  }
  .why-premium-stats-wrap {
    margin: 0 -10px 8px;
    padding: 0 10px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .why-premium-stats-wrap::-webkit-scrollbar {
    display: none;
  }
  .why-premium-stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    min-width: min-content;
    margin-bottom: 0;
  }
  .why-premium-stat {
    flex: 0 0 40%;
    min-width: 120px;
    scroll-snap-align: start;
  }
  .why-premium-trust {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .why-premium-trust::-webkit-scrollbar {
    display: none;
  }
  .why-premium-trust span {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}
@media (max-width: 575.98px) {
  .section-why-premium {
    padding: 1rem 0 0.85rem;
  }
  .section-why-premium .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .why-premium-aside {
    border-radius: 16px;
    padding: 0.85rem 0.85rem 0.75rem;
  }
  .why-premium-title {
    font-size: 1.25rem !important;
  }
  .why-premium-lead {
    font-size: 14px;
    margin-bottom: 0.65rem;
  }
  .why-premium-list li {
    font-size: 13px;
  }
  .why-premium-actions {
    flex-direction: column;
  }
  .why-premium-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* Featured Projects — same theme as Why */
.home-section--portfolio {
  position: relative;
  padding: 0.65rem 0 1.15rem;
  overflow: hidden;
  background: transparent;
  border-top: none;
}
.portfolio-glass-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 8% 25%, var(--theme-orange-glow), transparent 60%),
    radial-gradient(ellipse 50% 40% at 92% 75%, var(--theme-blue-glow), transparent 60%),
    linear-gradient(180deg, #FCF6F1 0%, #f8fbff 55%, #ffffff 100%);
  pointer-events: none;
}
.portfolio-glass-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, #ffffff);
}
.container-portfolio {
  max-width: 1100px;
  padding-left: 10px;
  padding-right: 10px;
}
/* Home section header — title left, View All top-right */
.home-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 1rem;
  text-align: left;
}
.home-section-head-text {
  flex: 1;
  min-width: 0;
}
.home-section-head .section-eyebrow {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--theme-accent, #f97316);
}
.home-section-head .section-title {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  margin: 0 0 0.3rem;
  color: var(--theme-text, #0f2744);
  font-weight: var(--fw-bold) !important;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.home-section-head .section-desc {
  font-size: 14px;
  margin: 0;
  line-height: 1.45;
  color: var(--theme-muted, #475569);
  max-width: 420px;
}
.home-section-view-all {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: var(--fw-bold);
  text-decoration: none;
  color: var(--primary);
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.25);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  margin-top: 2px;
}
.home-section-view-all:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}
.home-section-view-all i {
  font-size: 0.95rem;
}
.portfolio-showcase {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
}
.portfolio-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #1a1a2e;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(140, 100, 160, 0.12);
}
.portfolio-arrow:hover {
  background: #1a1a2e;
  border-color: #1a1a2e;
  color: #fff;
  transform: scale(1.05);
}
.portfolio-swiper {
  flex: 1 1 100%;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .portfolio-swiper {
    flex: 1 1 auto;
    width: auto;
    padding: 0 4px;
  }
}
.portfolio-swiper .swiper-slide {
  height: auto !important;
  display: flex;
  box-sizing: border-box;
}
.portfolio-swiper .swiper-slide .portfolio-card-shell {
  width: 100%;
  display: flex;
}
.portfolio-pagination {
  flex: 0 0 100%;
  position: relative !important;
  margin-top: 4px;
  bottom: auto !important;
  line-height: 1;
}
.portfolio-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #94a3b8;
  opacity: 0.5;
}
.portfolio-pagination .swiper-pagination-bullet-active {
  width: 18px;
  border-radius: 4px;
  background: var(--primary);
  opacity: 1;
}
.portfolio-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-height: 100px;
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.portfolio-card-shell {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 2.5px solid rgba(37, 99, 235, 0.32) !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12);
}
.portfolio-card-shell:hover {
  border-color: rgba(37, 99, 235, 0.48) !important;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.18);
}
.home-section--portfolio .portfolio-card {
  border: none;
  box-shadow: none;
}
/* Full-bleed cover image — left panel (home featured projects) */
.portfolio-media-btn {
  flex: 0 0 40%;
  width: 40%;
  min-width: 118px;
  max-width: 46%;
  margin: 0;
  padding: 0;
  border: none;
  background: #0f172a;
  cursor: pointer;
  align-self: stretch;
  position: relative;
  display: block;
  overflow: hidden;
  touch-action: manipulation;
  border-radius: 17px 0 0 17px;
}
.portfolio-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  transition: transform 0.35s ease;
}
.portfolio-media-btn:hover .portfolio-cover,
.portfolio-media-btn:focus-visible .portfolio-cover {
  transform: scale(1.04);
}
.portfolio-thumb-grid {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 6px;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.5) 70%, transparent 100%);
  pointer-events: none;
}
.portfolio-thumb-chip {
  flex: 1 1 calc(50% - 4px);
  min-width: 0;
  max-width: calc(50% - 2px);
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 10;
  pointer-events: auto;
  cursor: pointer;
}
.portfolio-thumb-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.portfolio-thumb-chip-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2px 4px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: rgba(15, 23, 42, 0.75);
  line-height: 1.2;
  pointer-events: none;
}
.portfolio-thumb-chip--mobile .portfolio-thumb-chip-label {
  background: rgba(37, 99, 235, 0.88);
}
.portfolio-thumb-chip--desktop .portfolio-thumb-chip-label {
  background: rgba(249, 115, 22, 0.9);
}
.portfolio-tap-hint {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(37, 99, 235, 0.9);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
  pointer-events: none;
}
.portfolio-tap-hint .bi {
  font-size: 11px;
}
@media (min-width: 768px) {
  .portfolio-thumb-chip-label {
    font-size: 9px;
  }
  .portfolio-tap-hint {
    font-size: 10px;
    padding: 5px 10px;
  }
}
@media (max-width: 575.98px) {
  .portfolio-thumb-grid {
    padding: 5px;
    gap: 3px;
  }
  .portfolio-thumb-chip {
    border-width: 1.5px;
  }
  .portfolio-thumb-chip-label {
    font-size: 7px;
  }
}
/* Stacked preview — project single / projects page */
.portfolio-stack-btn:not(.portfolio-media-btn) {
  flex: 0 0 42%;
  width: 42%;
  min-width: 130px;
  border: none;
  background: #f1f5f9;
  padding: 8px 10px 8px 12px;
  cursor: pointer;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  overflow: visible;
}
.portfolio-stack {
  position: relative;
  width: 100%;
  height: 96px;
  min-height: 96px;
  display: block;
  contain: layout style;
}
.portfolio-stack-layer {
  position: absolute;
  width: 76%;
  aspect-ratio: 4/3;
  max-height: 92px;
  overflow: hidden;
  background: #fff;
  border: 4px solid #fff;
  border-radius: 3px;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.18), 0 1px 3px rgba(15, 23, 42, 0.1);
  transform-origin: center bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.portfolio-stack-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.portfolio-stack-layer--1 {
  left: 18%;
  bottom: 6px;
  z-index: 3;
  transform: rotate(4deg);
}
.portfolio-stack-layer--2 {
  left: 8%;
  bottom: 2px;
  z-index: 2;
  transform: rotate(-6deg);
  opacity: 0.96;
}
.portfolio-stack-layer--3 {
  left: 0;
  bottom: 0;
  z-index: 1;
  transform: rotate(-10deg);
  opacity: 0.9;
}
@media (hover: hover) and (pointer: fine) {
  .portfolio-stack-layer {
    transition: transform 0.22s ease;
  }
  .portfolio-stack-btn:not(.portfolio-media-btn):hover .portfolio-stack-layer--1 {
    transform: rotate(5deg) translateY(-2px);
  }
  .portfolio-stack-btn:not(.portfolio-media-btn):hover .portfolio-stack-layer--2 {
    transform: rotate(-5deg) translateY(-1px);
  }
}
.portfolio-swiper .swiper-slide {
  contain: layout style;
  overflow: hidden;
}
.portfolio-stack-badge {
  position: absolute;
  left: 4px;
  bottom: 4px;
  z-index: 4;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b6b, #ffd93d, #6bcb77, #4d96ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.portfolio-card-content {
  flex: 1;
  min-width: 0;
  padding: 12px 14px 12px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  background: #fff;
  border-left: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 0;
  overflow: hidden;
}
.portfolio-card-title {
  font-size: 1.05rem !important;
  font-weight: var(--fw-bold) !important;
  color: var(--theme-text);
  margin: 0;
  line-height: 1.35;
  width: 100%;
  letter-spacing: -0.02em;
}
.portfolio-card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--theme-muted);
  margin: 0;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.portfolio-btn-site {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 55%, #3b82f6 100%);
  color: #fff;
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}
.portfolio-btn-site::after {
  content: '\2192';
  font-size: 0.9em;
  opacity: 0.9;
}
.portfolio-btn-site:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.45);
}
@media (min-width: 768px) {
  .home-section--portfolio {
    padding: 1.15rem 0 0.9rem;
  }
  .portfolio-media-btn {
    flex: 0 0 42%;
    width: 42%;
    min-width: 140px;
    border-radius: 18px 0 0 18px;
  }
  .portfolio-stack-btn:not(.portfolio-media-btn) {
    width: 44%;
    min-width: 150px;
  }
  .portfolio-stack {
    height: 104px;
    min-height: 104px;
  }
  .portfolio-stack-layer {
    max-height: 98px;
  }
  .portfolio-card {
    min-height: 108px;
  }
  .portfolio-card-content {
    padding: 14px 18px 14px 16px;
    gap: 8px;
  }
  .portfolio-card-title {
    font-size: 1.1rem !important;
  }
  .portfolio-card-desc {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }
  .portfolio-btn-site {
    font-size: 14px;
    padding: 9px 20px;
  }
}
@media (max-width: 575.98px) {
  .home-section--portfolio {
    padding: 0.85rem 0 0.75rem;
  }
  .home-section-head--portfolio {
    padding: 0 4px;
  }
  .home-section-head--portfolio .section-eyebrow {
    font-size: clamp(12px, 3.2vw, 13px);
  }
  .home-section-head--portfolio .section-title {
    font-size: clamp(1.35rem, 5.5vw, 1.65rem) !important;
  }
  .home-section-head--portfolio .section-desc {
    font-size: clamp(14px, 3.8vw, 15px);
  }
  .home-section-head--portfolio .home-section-view-all {
    font-size: clamp(12px, 3.2vw, 13px);
    padding: 8px 14px;
  }
  .portfolio-swiper .swiper-slide {
    width: 94%;
    max-width: 360px;
  }
  .portfolio-card-shell {
    border-width: 3px !important;
    border-color: rgba(37, 99, 235, 0.42) !important;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.16);
  }
  .portfolio-card {
    min-height: 108px;
    border-radius: 15px;
  }
  .portfolio-media-btn {
    flex: 0 0 42%;
    width: 42%;
    min-width: 120px;
    max-width: 48%;
    border-radius: 14px 0 0 14px;
  }
  .portfolio-card-content {
    padding: 12px 12px 12px 10px;
    gap: 7px;
  }
  .portfolio-card-title {
    font-size: clamp(1rem, 4.2vw, 1.1rem) !important;
  }
  .portfolio-card-desc {
    font-size: clamp(13px, 3.6vw, 14px);
    line-height: 1.45;
  }
  .portfolio-btn-site {
    padding: 9px 16px;
    font-size: clamp(12px, 3.4vw, 13px);
    margin-top: 4px;
  }
  .portfolio-gallery-badge {
    width: 26px;
    height: 26px;
    left: 6px;
    bottom: 6px;
  }
  .portfolio-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .portfolio-pagination .swiper-pagination-bullet-active {
    width: 22px;
  }
}
/* ========== HOME PAGE — fluid mobile typography ========== */
@media (max-width: 991.98px) {
  .page-home {
    --home-fs-body: clamp(15px, 3.9vw, 16px);
    --home-fs-sm: clamp(14px, 3.5vw, 15px);
    --home-fs-title: clamp(1.35rem, 5.2vw, 1.85rem);
    --home-fs-sub: clamp(14px, 3.7vw, 16px);
    --home-fs-eyebrow: clamp(12px, 3.1vw, 13px);
    --home-fs-btn: clamp(13px, 3.4vw, 14px);
  }
  .page-home .home-section-head .section-eyebrow {
    font-size: var(--home-fs-eyebrow);
  }
  .page-home .home-section-head .section-title {
    font-size: var(--home-fs-title) !important;
    line-height: 1.2;
  }
  .page-home .home-section-head .section-desc {
    font-size: var(--home-fs-sub);
    line-height: 1.5;
  }
  .page-home .home-section-view-all {
    font-size: var(--home-fs-btn);
    padding: 8px 14px;
  }
  .page-home .wedo-title {
    font-size: var(--home-fs-title);
  }
  .page-home .wedo-sub {
    font-size: var(--home-fs-sub);
  }
  .page-home .wedo-view-all {
    font-size: var(--home-fs-btn);
  }
  .page-home .wedo-card-title {
    font-size: clamp(1rem, 4vw, 1.15rem) !important;
  }
  .page-home .wedo-card-desc {
    font-size: var(--home-fs-sm);
    line-height: 1.45;
  }
  .page-home .home-cat-strip-label {
    font-size: clamp(14px, 3.6vw, 15px);
  }
  .page-home .home-cat-strip-hint {
    font-size: clamp(12px, 3.2vw, 13px);
  }
  .page-home .home-cat-chip-label {
    font-size: clamp(12px, 3.2vw, 13px);
  }
  .page-home .why-premium-lead {
    font-size: var(--home-fs-sub);
  }
  .page-home .why-premium-list li {
    font-size: var(--home-fs-sm);
  }
  .page-home .why-premium-feature strong {
    font-size: clamp(14px, 3.6vw, 15px);
  }
  .page-home .why-premium-feature span {
    font-size: var(--home-fs-sm);
  }
  .page-home .counter-num {
    font-size: clamp(1.5rem, 6vw, 1.85rem) !important;
  }
  .page-home .counter-box p {
    font-size: clamp(12px, 3.2vw, 13px);
  }
  .page-home .voices-heading {
    font-size: var(--home-fs-title);
  }
  .page-home .voices-text {
    font-size: var(--home-fs-body);
    line-height: 1.55;
  }
  .page-home .voices-product {
    font-size: clamp(1rem, 4vw, 1.15rem);
  }
  .page-home .voices-author {
    font-size: var(--home-fs-sm);
  }
  .page-home .voices-pill {
    font-size: var(--home-fs-sm);
  }
  .page-home .home-contact-title {
    font-size: var(--home-fs-title) !important;
  }
  .page-home .home-contact-lead {
    font-size: var(--home-fs-sub);
  }
  .page-home .home-contact-eyebrow {
    font-size: var(--home-fs-eyebrow);
  }
  .page-home .home-contact-step-guide-text strong {
    font-size: clamp(14px, 3.6vw, 15px);
  }
  .page-home .home-contact-step-guide-text small {
    font-size: var(--home-fs-sm);
  }
  .page-home .blog-slide-title {
    font-size: clamp(1.05rem, 4.5vw, 1.2rem) !important;
  }
  .page-home .blog-slide-desc {
    font-size: var(--home-fs-sm);
  }
  .page-home .blog-slide-meta {
    font-size: var(--home-fs-sm);
  }
  .page-home .form-control,
  .page-home .form-select {
    font-size: var(--home-fs-body) !important;
  }
  .page-home .btn {
    font-size: var(--home-fs-btn);
  }
}

/* Project gallery lightbox */
.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.project-lightbox[hidden] { display: none !important; }
.project-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 28, 0.88);
}
.project-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: 92vh;
  background: #0f2430;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.project-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  z-index: 3;
}
.project-lightbox-title {
  color: #fff;
  font-size: 1.1rem !important;
  margin: 0 36px 6px 4px;
}
.project-lightbox-caption {
  margin: 0 36px 12px 4px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #93c5fd;
}
.project-lightbox-caption[hidden] {
  display: none !important;
}
.project-lightbox-stage {
  position: relative;
  flex: 1;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-lightbox-media {
  width: 100%;
  max-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-lightbox-media img,
.project-lightbox-media video {
  max-width: 100%;
  max-height: 58vh;
  border-radius: 10px;
  object-fit: contain;
}
.project-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  z-index: 2;
}
.project-lightbox-nav--prev { left: 4px; }
.project-lightbox-nav--next { right: 4px; }
.project-lightbox-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 4px 0;
  scrollbar-width: none;
}
.project-lightbox-thumbs::-webkit-scrollbar { display: none; }
.project-lightbox-thumb {
  flex: 0 0 auto;
  width: 64px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s, border-color 0.2s;
}
.project-lightbox-thumb.is-active {
  border-color: #7ec8e8;
  opacity: 1;
}
.project-lightbox-thumb-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2px 4px;
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: rgba(15, 23, 42, 0.82);
  line-height: 1.2;
  pointer-events: none;
}
.project-lightbox-thumb[data-role="mobile"] .project-lightbox-thumb-label {
  background: rgba(37, 99, 235, 0.92);
}
.project-lightbox-thumb[data-role="desktop"] .project-lightbox-thumb-label {
  background: rgba(249, 115, 22, 0.92);
}
.project-lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-lightbox-thumb--video::after {
  content: '▶';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.35);
}
.project-card--premium {
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.project-card--premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.project-card--premium .project-img { height: 200px; }

/* ========== PROJECTS PAGE — premium portfolio grid ========== */
.page-projects,
.page-project-single {
  background: linear-gradient(180deg, #eef6ff 0%, #fafcff 35%, #fff8f0 100%);
}
.projects-hero {
  position: relative;
  padding: 1.5rem 0 2rem;
  overflow: hidden;
}
.projects-hero--compact {
  padding-bottom: 1.25rem;
}
.projects-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 247, 237, 0.85) 100%);
  pointer-events: none;
}
.projects-crumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(37, 99, 235, 0.1);
}
.projects-crumb a {
  color: var(--primary);
  text-decoration: none;
  font-weight: var(--fw-medium);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.projects-crumb span { color: var(--navy-cta); font-weight: var(--fw-bold); }
.projects-crumb .bi-chevron-right { font-size: 0.65rem; color: #cbd5e1; }
.projects-hero-inner { max-width: 720px; }
.projects-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: linear-gradient(90deg, #eff6ff, #fff7ed);
  border: 1px solid rgba(37, 99, 235, 0.12);
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 0.65rem;
}
.projects-hero-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy-cta);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  line-height: 1.15;
}
.projects-hero-lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 1.25rem;
}
.projects-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.projects-stat {
  flex: 1 1 100px;
  min-width: 100px;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.06);
}
.projects-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}
.projects-stat span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.page-projects .site-main {
  padding-bottom: calc(var(--bottom-nav-h) + var(--bottom-nav-float) + 72px + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 992px) {
  .page-projects .site-main {
    padding-bottom: 2rem;
  }
}
.projects-container {
  padding-left: 14px;
  padding-right: 14px;
}
@media (min-width: 768px) {
  .projects-container {
    padding-left: var(--bs-gutter-x, 12px);
    padding-right: var(--bs-gutter-x, 12px);
  }
}
.projects-main {
  padding: 0 0 1.5rem;
}
.projects-grid-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 12px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  border: 1px solid rgba(37, 99, 235, 0.08);
}
.projects-grid-hint i { color: var(--primary); margin-right: 4px; }
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 576px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
/* App-style project card */
.project-app-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.project-app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.12);
}
.project-app-visual {
  position: relative;
  width: 100%;
  border: none;
  background: linear-gradient(180deg, #eef6ff 0%, #f1f5f9 100%);
  padding: 16px 14px 12px;
  cursor: pointer;
  display: block;
  touch-action: manipulation;
}
.project-app-visual--static {
  cursor: default;
}
.project-app-stack {
  position: relative;
  width: 100%;
  max-width: 280px;
  height: 150px;
  margin: 0 auto;
  display: block;
}
.project-app-stack-layer {
  position: absolute;
  width: 72%;
  aspect-ratio: 4/3;
  max-height: 120px;
  overflow: hidden;
  background: #fff;
  border: 3px solid #fff;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}
.project-app-stack-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-app-stack-layer--1 {
  left: 16%;
  bottom: 8px;
  z-index: 3;
  transform: rotate(5deg);
}
.project-app-stack-layer--2 {
  left: 8%;
  bottom: 4px;
  z-index: 2;
  transform: rotate(-5deg);
  opacity: 0.95;
}
.project-app-stack-layer--3 {
  left: 0;
  bottom: 0;
  z-index: 1;
  transform: rotate(-9deg);
  opacity: 0.88;
}
.project-app-gallery-hint {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  font-size: 0.6875rem;
  font-weight: var(--fw-medium);
  color: #fff;
  background: rgba(30, 58, 95, 0.75);
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(6px);
}
.project-app-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.project-app-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--navy-cta);
  margin: 0 0 6px;
  line-height: 1.25;
}
.project-app-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 12px;
  flex: 1;
}
.project-app-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.project-app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  text-decoration: none;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.project-app-btn--primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.project-app-btn--primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
}
.project-app-btn--secondary {
  background: #fff;
  color: var(--navy-cta);
  border: 1.5px solid rgba(37, 99, 235, 0.22);
}
.project-app-btn--secondary:hover {
  background: #eff6ff;
  color: var(--primary);
  border-color: var(--primary);
}
.project-app-btn--light {
  background: #fff;
  color: var(--navy-cta);
}
.project-app-btn--wa {
  background: #25d366;
  color: #fff;
}
.project-app-btn--wa:hover { color: #fff; background: #128c7e; }
/* Related services — horizontal app scroll */
.projects-related {
  padding: 0 0 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(239, 246, 255, 0.5) 100%);
}
.projects-related-head {
  margin-bottom: 1rem;
  padding: 0 2px;
}
.projects-related-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ea580c;
  margin-bottom: 0.35rem;
}
.projects-related-title {
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  font-weight: 800;
  color: var(--navy-cta);
  margin: 0 0 0.4rem;
}
.projects-related-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.projects-related-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.projects-related-scroll::-webkit-scrollbar { display: none; }
.projects-related-card {
  flex: 0 0 min(280px, 82vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.07);
  transition: transform 0.22s, box-shadow 0.22s;
}
.projects-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.12);
  color: inherit;
}
.projects-related-card-img {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #eff6ff, #ffedd5);
}
.projects-related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects-related-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.projects-related-card-body strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-cta);
  line-height: 1.2;
}
.projects-related-card-body span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.projects-related-card-body em {
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: var(--fw-medium);
  color: var(--primary);
  margin-top: 2px;
}
@media (min-width: 992px) {
  .projects-related-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
    gap: 14px;
  }
  .projects-related-card {
    flex: none;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 14px;
  }
  .projects-related-card-img {
    flex: none;
    width: 100%;
    height: 100px;
    border-radius: 12px;
    margin: 0 auto;
  }
}
/* Projects mobile sticky bar */
.projects-mobile-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(var(--bottom-nav-h) + var(--bottom-nav-float) + env(safe-area-inset-bottom, 0px));
  z-index: 1035;
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
  padding: 8px 10px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.97));
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 -6px 24px rgba(37, 99, 235, 0.12);
}
.projects-mobile-bar-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 8px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  text-decoration: none;
  border: 1.5px solid transparent;
}
.projects-mobile-bar-btn--call {
  background: #fff;
  border-color: rgba(37, 99, 235, 0.3);
  color: #1d4ed8;
}
.projects-mobile-bar-btn--wa {
  background: #f0fdf4;
  border-color: rgba(34, 197, 94, 0.35);
  color: #15803d;
}
.projects-mobile-bar-btn--primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.projects-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  background: #fff;
  border-radius: 20px;
  border: 1px dashed rgba(37, 99, 235, 0.2);
}
.projects-empty i {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: 1rem;
}
.projects-cta {
  padding: 0 0 3.5rem;
}
.projects-cta-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem 1.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 55%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.35);
}
.projects-cta-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: #fff;
}
.projects-cta-card p {
  margin: 0;
  opacity: 0.92;
  font-size: 1rem;
}
.projects-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.projects-single-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 0.5rem;
}
.project-single-body {
  padding: 0 0 3rem;
}
.project-single-showcase {
  max-width: 640px;
  margin: 0 auto 2rem;
}
.project-app-card--single {
  max-width: 420px;
  margin: 0 auto;
}
.project-app-stack--large {
  height: 200px;
  max-width: 340px;
}
.project-app-stack--large .project-app-stack-layer {
  max-height: 150px;
}
.project-case-study {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}
.project-case-study h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-cta);
  margin-bottom: 1rem;
}
.project-case-study-content {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}
.project-case-study-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1rem 0;
}
@media (max-width: 767.98px) {
  .projects-hero {
    padding: 1rem 0 1.25rem;
  }
  .projects-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .projects-stat {
    min-width: 0;
    padding: 10px 8px;
    text-align: center;
  }
  .projects-stat strong { font-size: 1.1rem; }
  .projects-stat span { font-size: 0.6875rem; }
  .project-app-stack {
    height: 130px;
  }
  .projects-cta-card {
    text-align: center;
    align-items: center;
  }
  .projects-cta-btns {
    justify-content: center;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .project-app-actions {
    flex-direction: row;
  }
  .project-app-actions .project-app-btn {
    flex: 1;
    width: auto;
  }
  .projects-cta-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.25rem;
  }
}

.project-placeholder,
.blog-placeholder {
  height: 100%;
  min-height: 140px;
  background: linear-gradient(135deg, var(--blue-light), var(--orange-light));
}
/* Trusted Voices — title beside review, heading in orange band */
.voices-section {
  --voices-split: 42%;
  position: relative;
  padding: 0.75rem 0 0.65rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .voices-section {
    padding: 0.85rem 0 0.75rem;
  }
}
.voices-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fafafa 0%, #fafafa var(--voices-split), #f3e8d8 var(--voices-split), #efe0cc 100%);
  z-index: 0;
}
.voices-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.voices-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  align-items: start;
}
@media (min-width: 992px) {
  .voices-layout {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1rem;
    align-items: stretch;
    min-height: 260px;
  }
}
.voices-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .voices-stack {
    max-width: 520px;
    margin: 0;
    align-items: stretch;
  }
}
.voices-photo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 0;
  margin-top: 0;
  z-index: 2;
  position: relative;
  pointer-events: none;
}
.voices-photo {
  max-height: 155px;
  width: auto;
  max-width: 88%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.08));
  user-select: none;
  transition: opacity 0.35s ease;
}
@media (min-width: 992px) {
  .voices-photo {
    max-height: 220px;
    max-width: 78%;
    margin-left: 8%;
  }
}
.voices-card {
  position: relative;
  z-index: 5;
  margin-top: -1.75rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(30, 58, 95, 0.1);
  padding: 0.85rem 0.9rem 0.65rem;
  width: 100%;
  text-align: left;
}
@media (min-width: 992px) {
  .voices-card {
    margin-top: -2.1rem;
    padding: 0.8rem 1rem 0.65rem;
    border-radius: 16px;
  }
}
.voices-card-inner {
  display: block;
  padding-top: 0.4rem;
  text-align: left;
}
.voices-product {
  font-size: 0.95rem !important;
  font-weight: var(--fw-bold) !important;
  color: var(--navy-cta);
  margin: 0 0 0.35rem;
  line-height: 1.25;
  text-align: left;
  padding: 0;
  border: none;
  max-width: 100%;
}
@media (min-width: 992px) {
  .voices-product {
    font-size: 1rem !important;
    margin-bottom: 0.4rem;
  }
}
.voices-card--in {
  animation: voices-card-in 0.4s ease;
}
@keyframes voices-card-in {
  from { opacity: 0.65; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes voices-enter-left {
  from { opacity: 0; transform: translateX(-28px) scale(0.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes voices-enter-right {
  from { opacity: 0; transform: translateX(28px) scale(0.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes voices-enter-up {
  from { opacity: 0; transform: translateY(22px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes voices-enter-down {
  from { opacity: 0; transform: translateY(-18px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes voices-enter-zoom {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.voices-photo.voices-enter-left { animation: voices-enter-left 0.55s cubic-bezier(0.22, 1, 0.36, 1) both; }
.voices-photo.voices-enter-right { animation: voices-enter-right 0.55s cubic-bezier(0.22, 1, 0.36, 1) both; }
.voices-photo.voices-enter-up { animation: voices-enter-up 0.55s cubic-bezier(0.22, 1, 0.36, 1) both; }
.voices-photo.voices-enter-down { animation: voices-enter-down 0.55s cubic-bezier(0.22, 1, 0.36, 1) both; }
.voices-photo.voices-enter-zoom { animation: voices-enter-zoom 0.5s cubic-bezier(0.22, 1, 0.36, 1) both; }
.voices-card.voices-card-enter-left { animation: voices-enter-left 0.55s cubic-bezier(0.22, 1, 0.36, 1) both; }
.voices-card.voices-card-enter-right { animation: voices-enter-right 0.55s cubic-bezier(0.22, 1, 0.36, 1) both; }
.voices-card.voices-card-enter-up { animation: voices-enter-up 0.55s cubic-bezier(0.22, 1, 0.36, 1) both; }
.voices-card.voices-card-enter-down { animation: voices-enter-down 0.55s cubic-bezier(0.22, 1, 0.36, 1) both; }
.voices-card.voices-card-enter-zoom { animation: voices-enter-zoom 0.5s cubic-bezier(0.22, 1, 0.36, 1) both; }
.voices-quote {
  position: absolute;
  font-size: 2rem;
  line-height: 1;
  color: #bfdbfe;
  font-family: Georgia, 'Times New Roman', serif;
  pointer-events: none;
}
.voices-quote--open { top: 0.05rem; left: 0.45rem; }
.voices-quote--close { bottom: 0; right: 0.45rem; }
.voices-text {
  font-size: 13px;
  line-height: 1.45;
  color: #4a5f7a;
  margin: 0 0 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 992px) {
  .voices-text {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
}
.voices-author {
  font-size: 12px;
  color: #6b7c93;
  margin: 0;
}
.voices-pills {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 0.5rem;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px 4px 4px;
  mask-image: linear-gradient(90deg, #000 92%, transparent 100%);
  touch-action: pan-x;
}
.voices-pills::-webkit-scrollbar {
  display: none;
}
.voices-pill {
  flex: 0 0 auto;
  border: 1px solid #d4c4b0;
  background: #fff;
  color: var(--navy-cta);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.voices-pill:hover {
  border-color: #e8b88a;
}
.voices-pill.is-active {
  background: #fde6c8;
  border-color: #e8b88a;
}
.voices-heading-col {
  text-align: center;
  padding: 0.25rem 0 0;
}
@media (min-width: 992px) {
  .voices-heading-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: right;
    padding: calc(var(--voices-split) + 0.35rem) 0.5rem 1.25rem 1rem;
    align-self: stretch;
  }
}
.voices-heading {
  font-size: clamp(1.2rem, 4.8vw, 2rem);
  font-weight: var(--fw-bold) !important;
  color: var(--navy-cta);
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}
.voices-lead {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0.35rem 0 0;
  max-width: 320px;
}
@media (min-width: 992px) {
  .voices-lead {
    margin-left: auto;
  }
}
@media (max-width: 991.98px) {
  .voices-section .voices-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .voices-layout {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }
  .voices-heading-col {
    order: -1;
    padding: 0.15rem 0 0;
  }
  .voices-heading {
    font-size: 1.1rem;
  }
  .voices-stack {
    order: 0;
  }
  .voices-card {
    margin-top: -1.45rem;
  }
  .voices-photo {
    max-height: 140px;
  }
  .voices-card-inner {
    padding-top: 0.45rem;
  }
  .voices-pills {
    mask-image: linear-gradient(90deg, #000 88%, transparent 100%);
  }
}

/* Home contact — balanced two-panel */
.home-contact-section {
  padding: 1rem 0 1.25rem;
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
}
.home-contact-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
  align-items: stretch;
}
.home-contact-info,
.home-contact-form-card {
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.07);
}
.home-contact-info {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 1.1rem 1rem 1.15rem;
  background: linear-gradient(165deg, #f8fbff 0%, #eff6ff 42%, #e0f2fe 100%);
  color: #1e293b;
  border-color: #dbeafe;
  overflow: hidden;
}
.home-contact-info::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 65%;
  height: 75%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.home-contact-info > * {
  position: relative;
  z-index: 1;
}
.home-contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.home-contact-title {
  font-size: 1.2rem !important;
  font-weight: var(--fw-bold) !important;
  color: #0f172a;
  margin: 0 0 0.35rem;
  line-height: 1.25;
}
.home-contact-lead {
  font-size: 13px;
  color: #475569;
  margin: 0;
  line-height: 1.5;
  max-width: 28em;
}
.home-contact-step-guide {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-contact-step-guide-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(147, 197, 253, 0.45);
  transition: background 0.25s, border-color 0.25s;
}
.home-contact-step-guide-item.is-active {
  background: #fff;
  border-color: #93c5fd;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}
.home-contact-step-guide-item.is-done {
  opacity: 0.85;
}
.home-contact-step-guide-item.is-done .home-contact-step-guide-num {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
}
.home-contact-step-guide-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: var(--fw-bold);
  color: #1d4ed8;
  background: #dbeafe;
  border: 1px solid #bfdbfe;
}
.home-contact-step-guide-item.is-active .home-contact-step-guide-num {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}
.home-contact-step-guide-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.home-contact-step-guide-text strong {
  font-size: 12px;
  font-weight: var(--fw-bold);
  color: #0f172a;
}
.home-contact-step-guide-text small {
  font-size: 10px;
  color: #64748b;
}
.home-contact-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.home-contact-perks li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  font-size: 9px;
  font-weight: var(--fw-medium);
  color: #475569;
  padding: 8px 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(147, 197, 253, 0.35);
}
.home-contact-perks i {
  font-size: 1rem;
  color: #f59e0b;
}
.home-contact-touch {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-contact-touch-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  color: #0f172a;
  transition: transform 0.2s, box-shadow 0.2s;
}
.home-contact-touch-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  color: #0f172a;
}
.home-contact-touch-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
}
.home-contact-touch-icon--mail {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}
.home-contact-touch-icon--phone {
  background: linear-gradient(135deg, #16a34a, #4ade80);
}
.home-contact-touch-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.home-contact-touch-body strong {
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.home-contact-touch-body span {
  font-size: 12px;
  font-weight: var(--fw-bold);
  color: #0f172a;
  word-break: break-all;
}
.home-contact-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #25d366;
  color: #fff !important;
  font-size: 13px;
  font-weight: var(--fw-bold);
  text-decoration: none;
  margin-top: auto;
}
.home-contact-form-card {
  padding: 1rem 1rem 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: visible;
}
.home-contact-form-kicker {
  margin: 0 0 0.65rem;
  font-size: 12px;
  font-weight: var(--fw-bold);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.home-contact-steps-head {
  margin-bottom: 0.75rem;
}
.home-contact-progress {
  display: flex;
  gap: 5px;
  margin-bottom: 6px;
}
.home-contact-progress-seg {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: #e2e8f0;
  transition: background 0.3s ease;
}
.home-contact-progress-seg.is-done {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
}
.home-contact-progress-seg.is-current {
  background: #93c5fd;
}
.home-contact-step-meta {
  margin: 0;
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.home-contact-steps-track {
  position: relative;
  min-height: 118px;
  overflow: hidden;
}
.home-contact-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: home-contact-step-in 0.32s ease;
}
.home-contact-step[hidden] {
  display: none !important;
}
@keyframes home-contact-step-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}
.home-contact-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}
.home-contact-label {
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: #64748b;
}
.home-contact-label .req { color: #ef4444; }
.home-contact-optional {
  font-weight: var(--fw-normal);
  color: #94a3b8;
}
.home-contact-input {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #fff;
  font-size: 15px;
  color: #0f172a;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.home-contact-input::placeholder {
  color: #94a3b8;
}
.home-contact-input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.home-contact-input.is-invalid {
  border-color: #ef4444;
  background: #fef2f2;
}
.home-contact-input.is-valid {
  border-color: #22c55e;
}
.home-contact-error {
  font-size: 11px;
  color: #dc2626;
  min-height: 0;
  line-height: 1.3;
}
.home-contact-error:empty {
  display: none;
}
.home-contact-phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
}
.home-contact-phone-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.home-contact-phone-wrap.is-invalid {
  border-color: #ef4444;
}
.home-contact-phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: #64748b;
  background: #f1f5f9;
  border-right: 1px solid #e2e8f0;
}
.home-contact-input--phone {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
.home-contact-service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 120px;
  overflow-y: auto;
  padding: 2px 0;
  -webkit-overflow-scrolling: touch;
}
.home-contact-service-chip {
  flex: 0 1 auto;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 11px;
  font-weight: var(--fw-medium);
  color: #475569;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  line-height: 1.2;
  text-align: left;
}
.home-contact-service-chip.is-selected {
  border-color: var(--primary);
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: var(--fw-bold);
}
.home-contact-textarea {
  min-height: 72px;
  resize: none;
}
.home-contact-char {
  font-size: 10px;
  color: #94a3b8;
  text-align: right;
}
.home-contact-consent {
  font-size: 10px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}
.home-contact-consent a { color: var(--primary); }
.home-contact-steps-nav {
  display: flex;
  gap: 8px;
  margin-top: 0.75rem;
}
.home-contact-back {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: #64748b;
  cursor: pointer;
}
.home-contact-next,
.home-contact-submit {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 16px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  color: #fff;
  font-size: 14px;
  font-weight: var(--fw-bold);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transition: transform 0.2s, opacity 0.2s;
}
.home-contact-submit {
  background: linear-gradient(135deg, #ea580c, #f97316);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}
.home-contact-next:hover,
.home-contact-submit:hover {
  transform: translateY(-1px);
}
.home-contact-next:disabled,
.home-contact-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}
.home-contact-form-note {
  margin: 0.5rem 0 0;
  font-size: 11px;
  min-height: 1em;
  text-align: center;
}
.home-contact-form-note.is-success { color: #15803d; }
.home-contact-form-note.is-error { color: #dc2626; }
.home-contact-form-visual {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0 0;
  padding: 0;
  min-height: 140px;
  background: transparent;
  border: none;
  overflow: visible;
}
.home-contact-visual-art {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(420px, 50vh);
  object-fit: contain;
  object-position: center bottom;
  display: block;
  background: transparent !important;
  border-radius: 0;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .home-contact-form-card {
    min-height: 100%;
    padding: 0.7rem 0.85rem 0.5rem;
  }
  .home-contact-form--steps {
    flex: 0 0 auto;
  }
  .home-contact-form-visual {
    margin: 0.35rem 0 0;
    min-height: 180px;
    flex: 1 1 auto;
  }
  .home-contact-visual-art {
    max-height: min(480px, 55vh);
  }
}
@media (min-width: 768px) {
  .home-contact-section {
    padding: 0.85rem 0 1.1rem;
  }
  .home-contact-shell {
    grid-template-columns: 35% 65%;
    gap: 10px;
    max-width: 1040px;
    align-items: stretch;
  }
  .home-contact-info {
    gap: 8px;
    padding: 0.8rem 0.75rem;
  }
  .home-contact-eyebrow {
    font-size: 9px;
    padding: 3px 8px;
    margin-bottom: 0.25rem;
  }
  .home-contact-title {
    font-size: 1.02rem !important;
    margin-bottom: 0.2rem;
  }
  .home-contact-lead {
    font-size: 11px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .home-contact-step-guide {
    gap: 4px;
  }
  .home-contact-step-guide-item {
    padding: 5px 7px;
    gap: 7px;
    border-radius: 8px;
  }
  .home-contact-step-guide-num {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }
  .home-contact-step-guide-text strong {
    font-size: 11px;
  }
  .home-contact-step-guide-text small {
    display: none;
  }
  .home-contact-perks {
    gap: 4px;
  }
  .home-contact-perks li {
    padding: 5px 2px;
    font-size: 8px;
    border-radius: 6px;
  }
  .home-contact-perks i {
    font-size: 0.85rem;
  }
  .home-contact-touch {
    flex-direction: column;
    gap: 5px;
  }
  .home-contact-touch-card {
    padding: 6px 8px;
    gap: 7px;
    border-radius: 8px;
  }
  .home-contact-touch-icon {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
    border-radius: 7px;
  }
  .home-contact-touch-body strong {
    font-size: 9px;
  }
  .home-contact-touch-body span {
    font-size: 10px;
    line-height: 1.2;
  }
  .home-contact-wa-btn {
    padding: 7px 10px;
    font-size: 11px;
    border-radius: 8px;
    margin-top: 2px;
  }
  .home-contact-form-card {
    padding: 0.7rem 0.85rem 0;
    display: flex;
    flex-direction: column;
  }
  .home-contact-form--steps {
    flex: 0 0 auto;
  }
  .home-contact-steps-head {
    margin-bottom: 0.5rem;
  }
  .home-contact-progress-seg {
    height: 3px;
  }
  .home-contact-step-meta {
    font-size: 10px;
  }
  .home-contact-steps-track {
    min-height: 0;
  }
  .home-contact-form--steps {
    display: flex;
    flex-direction: column;
  }
  .home-contact-step {
    gap: 8px;
  }
  .home-contact-step--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: start;
  }
  .home-contact-field {
    gap: 3px;
  }
  .home-contact-label {
    font-size: 10px;
  }
  .home-contact-input {
    min-height: 50px;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 12px;
    border-width: 1.5px;
  }
  .home-contact-input:focus {
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
  }
  .home-contact-phone-wrap {
    min-height: 50px;
  }
  .home-contact-phone-prefix {
    padding: 0 12px;
    font-size: 14px;
  }
  .home-contact-input--phone {
    min-height: 48px;
    font-size: 15px;
  }
  .home-contact-service-chips {
    max-height: 58px;
    gap: 4px;
  }
  .home-contact-service-chip {
    padding: 5px 9px;
    font-size: 10px;
  }
  .home-contact-textarea {
    min-height: 52px;
  }
  .home-contact-consent {
    font-size: 9px;
    margin-top: 4px;
  }
  .home-contact-steps-nav {
    margin-top: 0.5rem;
    gap: 6px;
  }
  .home-contact-back {
    padding: 8px 12px;
    font-size: 12px;
  }
  .home-contact-next,
  .home-contact-submit {
    padding: 9px 14px;
    font-size: 13px;
  }
  .home-contact-form-note {
    margin-top: 0.35rem;
    font-size: 10px;
  }
}
@media (max-width: 767.98px) {
  .home-contact-step-guide {
    flex-direction: row;
    overflow-x: auto;
    gap: 6px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .home-contact-step-guide-item {
    flex: 0 0 auto;
    min-width: 140px;
    padding: 6px 8px;
  }
  .home-contact-step-guide-text small {
    display: none;
  }
  .home-contact-perks {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Home blog — seamless into footer */
.home-section--blog {
  padding: 1.35rem 0 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #FCF6F1 38%,
    #ebe3da 58%,
    #c4b8ad 72%,
    #94a3b8 84%,
    #64748b 91%,
    #475569 96%,
    #1e293b 100%
  );
  overflow: visible;
}
.home-section--blog-overlap {
  position: relative;
  z-index: 8;
  margin-bottom: -2.25rem;
  padding-bottom: 0;
}
.home-section--blog .container {
  overflow: visible;
  z-index: 2;
}
.home-section--blog-overlap .blog-home-slider-wrap {
  padding-bottom: 0.5rem;
}
.home-section--blog-overlap .blog-slide-card {
  position: relative;
  z-index: 2;
}
.home-section--blog .home-section-head .section-title,
.home-section--blog .home-section-head .section-desc,
.home-section--blog .home-section-head .section-eyebrow {
  position: relative;
  z-index: 2;
}
.home-section--blog .home-section-view-all {
  background: rgba(255, 255, 255, 0.95);
}
.blog-home-slider-wrap {
  position: relative;
  overflow: visible;
  padding: 0;
  margin: 0 -6px;
}
.blog-home-swiper {
  overflow: visible;
  padding: 48px 6px 8px !important;
}
.blog-home-swiper .swiper-slide {
  height: auto;
  overflow: visible;
}
.blog-slide-card {
  position: relative;
  min-height: 200px;
  border-radius: 26px;
  background: var(--blog-card-bg, #f5ebe0);
  box-shadow: 0 12px 36px rgba(30, 58, 95, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: visible;
}
.blog-slide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(30, 58, 95, 0.14);
}
.blog-slide-card-link {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  align-items: center;
  position: relative;
  min-height: 200px;
  padding: 2.65rem 1rem 1rem;
  text-decoration: none;
  color: inherit;
  overflow: visible;
  border-radius: 26px;
}
.blog-slide-top {
  position: absolute;
  top: 0.75rem;
  left: 0.85rem;
  right: 0.85rem;
  z-index: 5;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  pointer-events: none;
}
.blog-slide-bg {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.blog-slide-bg--solid {
  background: var(--blog-card-bg, #f5ebe0);
}
.blog-slide-scrim {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.82) 42%,
    rgba(255, 255, 255, 0.45) 68%,
    rgba(255, 255, 255, 0.15) 100%
  );
  pointer-events: none;
}
.blog-slide-body {
  position: relative;
  z-index: 3;
  grid-column: 1;
  max-width: 100%;
  padding-top: 2px;
  padding-bottom: 0.25rem;
  padding-right: 8px;
}
.blog-slide-title {
  font-size: 1.08rem !important;
  font-weight: var(--fw-bold) !important;
  color: #0f172a;
  line-height: 1.32;
  margin: 0 0 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-slide-desc {
  font-size: 13px;
  line-height: 1.45;
  color: #475569;
  margin: 0 0 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-size: 13px;
  font-weight: var(--fw-medium);
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.blog-slide-media-wrap {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  width: 42%;
  max-width: 200px;
  min-height: 140px;
  z-index: 4;
  pointer-events: none;
}
.blog-slide-date {
  position: static;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: var(--fw-medium);
  color: #1e293b;
  background: rgba(255, 255, 255, 0.96);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.1);
  white-space: nowrap;
  line-height: 1.2;
}
.blog-slide-date i {
  font-size: 0.72rem;
  color: var(--primary);
  opacity: 0.9;
}
.blog-slide-media {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-52%);
  width: 100%;
  max-width: 200px;
  z-index: 4;
}
.blog-slide-media img {
  width: 100%;
  height: auto;
  max-height: 195px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 16px 32px rgba(30, 58, 95, 0.22));
}
.blog-slide-media.is-empty {
  right: 0;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  width: 90%;
  aspect-ratio: 1;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
}
.blog-slider-nav--corners {
  position: absolute;
  top: 0;
  left: 4px;
  right: 4px;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.blog-slider-nav--corners > * {
  pointer-events: auto;
}
.blog-slider-nav__end {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.blog-nav-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: #fff;
  color: var(--primary);
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  transition: transform 0.22s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.22s, color 0.2s;
  box-shadow: 0 4px 14px rgba(30, 58, 95, 0.14);
  border: 1px solid rgba(148, 163, 184, 0.3);
}
.blog-nav-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(135deg, #f97316, #3b82f6, #a855f7);
  background-size: 200% 200%;
  animation: blog-nav-gradient 4s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.2s;
}
.blog-nav-btn:hover::before {
  opacity: 1;
}
@keyframes blog-nav-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.blog-nav-btn:hover {
  transform: scale(1.08);
  color: #1d4ed8;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.22);
}
.blog-nav-btn:active {
  transform: scale(0.94);
}
.blog-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.blog-nav-btn.swiper-button-disabled::before {
  display: none;
}
.blog-home-pagination {
  position: relative !important;
  margin: 0 !important;
  bottom: auto !important;
  width: auto !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(30, 58, 95, 0.1);
  backdrop-filter: blur(8px);
}
.blog-home-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 !important;
  background: #cbd5e1;
  opacity: 1;
  transition: width 0.3s ease, background 0.3s, box-shadow 0.3s;
}
.blog-home-pagination .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 5px;
  background: linear-gradient(90deg, #f97316, #3b82f6);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.45);
}
.blog-home-pagination .swiper-pagination-bullet-active-main {
  background: linear-gradient(90deg, #f97316, #3b82f6);
}
@media (min-width: 992px) {
  .home-section-head .section-title {
    font-size: 1.85rem;
  }
  .home-section-view-all {
    padding: 9px 18px;
    font-size: 13px;
  }
  .blog-slide-card,
  .blog-slide-card-link {
    min-height: 215px;
  }
  .blog-slide-card-link {
    padding: 1.3rem 1.15rem 1rem;
    grid-template-columns: 1fr minmax(160px, 42%);
  }
  .blog-slide-body {
    max-width: 56%;
  }
  .blog-slide-title {
    font-size: 1.18rem !important;
  }
  .blog-slide-desc {
    font-size: 14px;
  }
  .blog-slide-media-wrap {
    max-width: 220px;
  }
  .blog-slide-media {
    max-width: 215px;
    right: -20px;
  }
  .blog-slide-media img {
    max-height: 210px;
  }
  .site-footer--home .footer-top {
    padding-top: 2.75rem;
  }
  .blog-slide-card-link {
    padding-top: 2.75rem;
  }
}
@media (max-width: 767.98px) {
  .blog-slide-card {
    overflow: hidden;
  }
  .blog-slide-card-link {
    display: block;
    position: relative;
    min-height: 168px;
    padding: 0.95rem 0.8rem 0.85rem;
    overflow: hidden;
  }
  .blog-slide-body {
    max-width: 58%;
    padding-right: 4px;
  }
  .blog-slide-media-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    min-height: 0;
    height: auto;
    align-self: auto;
    pointer-events: none;
  }
  .blog-slide-top {
    top: 0.6rem;
    left: 0.65rem;
    right: 0.65rem;
  }
  .blog-slide-date {
    font-size: 10px;
    padding: 4px 10px;
  }
  .blog-slide-card-link {
    padding-top: 2.35rem;
  }
  .blog-slide-media {
    position: absolute;
    right: 0.45rem;
    bottom: 0.4rem;
    top: auto;
    left: auto;
    transform: none;
    width: 42%;
    max-width: 44%;
  }
  .blog-slide-media img {
    max-height: 112px;
    object-position: right bottom;
  }
  .blog-slide-scrim {
    background: linear-gradient(
      108deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.88) 48%,
      rgba(255, 255, 255, 0.55) 72%,
      rgba(255, 255, 255, 0.2) 100%
    );
  }
}
@media (max-width: 575.98px) {
  .home-section-head {
    align-items: center;
    margin-bottom: 0.85rem;
  }
  .home-section-view-all {
    padding: 7px 12px;
    font-size: 11px;
  }
  .home-section--blog-overlap {
    margin-bottom: -1.75rem;
  }
  .site-footer--home {
    margin-top: -1.75rem;
  }
  .blog-home-swiper {
    padding: 44px 8px 0 !important;
  }
  .blog-slide-card {
    min-height: 0;
  }
  .blog-slide-card-link {
    min-height: 168px;
    padding: 2.2rem 0.75rem 0.75rem;
  }
  .blog-slide-top {
    top: 0.55rem;
    left: 0.6rem;
    right: 0.6rem;
  }
  .blog-slide-body {
    max-width: 56%;
    padding: 0;
  }
  .blog-slide-title {
    font-size: 0.98rem !important;
    margin-bottom: 0.3rem;
  }
  .blog-slide-desc {
    margin-bottom: 0.45rem;
    font-size: 12px;
  }
  .blog-slide-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
  .blog-slide-media {
    width: 44%;
    max-width: 46%;
  }
  .blog-slide-media img {
    max-height: 100px;
  }
  .blog-slider-nav--corners {
    left: 2px;
    right: 2px;
  }
  .blog-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
    border-radius: 10px;
  }
  .blog-home-pagination {
    padding: 6px 10px;
    min-height: 36px;
  }
  .blog-slider-nav__end {
    gap: 6px;
  }
  .site-footer--home .footer-top {
    padding-top: 2.75rem;
  }
  .footer-brand {
    font-size: 1.12rem;
  }
  .profiles-icons {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .profiles-icons::-webkit-scrollbar { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .announcement-offer--animated,
  .announcement-offer-shine,
  .offer-text-track,
  .offer-text-track--mobile,
  .offer-cta-btn--pulse,
  .blog-nav-btn::before,
  .blog-home-pagination .swiper-pagination-bullet-active {
    animation: none;
  }
}
.blog-card--premium {
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.blog-card--premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}
.blog-card--premium a { text-decoration: none; color: inherit; }
.home-section--lead .lead-form-box {
  background: linear-gradient(135deg, #1e40af 0%, var(--primary) 45%, #3b82f6 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.35);
}
.home-section--lead .form-control,
.home-section--lead .form-select {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 10px;
}
/* Home — category chips below offer */
.home-categories-strip {
  padding: 10px 0 12px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-bottom: 1px solid #e8edf3;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}
.home-cat-strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px 8px;
}
.home-cat-strip-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1e3a5f;
}
.home-cat-strip-label i {
  color: var(--primary);
  font-size: 0.85rem;
}
.home-cat-strip-hint {
  font-size: 11px;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.home-cat-scroll-wrap {
  position: relative;
}
.home-cat-scroll-wrap::before,
.home-cat-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  z-index: 2;
  pointer-events: none;
}
.home-cat-scroll-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, transparent 100%);
}
.home-cat-scroll-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, transparent 100%);
}
.home-cat-scroll {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 14px 8px;
  cursor: grab;
  touch-action: pan-x;
}
.home-cat-scroll::-webkit-scrollbar {
  display: none;
}
.home-cat-scroll.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.home-cat-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 4px 16px 4px 4px;
  border-radius: 999px;
  text-decoration: none;
  color: #1e3a5f;
  background: transparent;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}
.home-cat-chip:hover,
.home-cat-chip.is-swapped,
.home-cat-chip:focus-visible {
  border-color: rgba(37, 99, 235, 0.35);
  background: transparent;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
  transform: translateY(-1px);
}
.home-cat-chip-slide {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  height: 32px;
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
}
.home-cat-chip:hover .home-cat-chip-slide,
.home-cat-chip.is-swapped .home-cat-chip-slide,
.home-cat-chip:focus-visible .home-cat-chip-slide {
  transform: scaleX(-1);
}
.home-cat-chip-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #e2e8f0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scaleX(1);
}
.home-cat-chip:hover .home-cat-chip-icon,
.home-cat-chip.is-swapped .home-cat-chip-icon,
.home-cat-chip:focus-visible .home-cat-chip-icon {
  transform: scaleX(-1);
}
.home-cat-chip-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.home-cat-chip-icon i {
  font-size: 0.95rem;
  color: var(--primary);
}
.home-cat-chip-label {
  font-size: 13px;
  font-weight: var(--fw-bold);
  white-space: nowrap;
  line-height: 1;
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scaleX(1);
}
.home-cat-chip:hover .home-cat-chip-label,
.home-cat-chip.is-swapped .home-cat-chip-label,
.home-cat-chip:focus-visible .home-cat-chip-label {
  transform: scaleX(-1);
}
.home-cat-chip.is-navigating .home-cat-chip-slide {
  opacity: 0.9;
  transform: scaleX(-1) translateX(6px);
}
@media (min-width: 768px) {
  .home-categories-strip {
    padding: 12px 0 14px;
  }
  .home-cat-strip-head {
    padding: 0 20px 10px;
  }
  .home-cat-strip-label {
    font-size: 13px;
  }
  .home-cat-scroll {
    gap: 12px;
    padding: 4px 20px 10px;
  }
  .home-cat-chip {
    height: 48px;
    padding-right: 18px;
  }
  .home-cat-chip-icon {
    width: 38px;
    height: 38px;
  }
  .home-cat-chip-icon img {
    width: 28px;
    height: 28px;
  }
  .home-cat-chip-label {
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .home-cat-strip-hint {
    font-size: 10px;
  }
  .home-cat-chip {
    height: 42px;
  }
}

.form-toast { font-size: 13px; font-weight: var(--fw-light); }

/* ========== PREMIUM CATEGORY PAGE (e.g. website-development) ========== */
.page-category-premium {
  --cat-text: #1e293b;
  --cat-muted: #64748b;
  --cat-fs-body: 1.0625rem;
  --cat-fs-sm: 0.9375rem;
  --cat-fs-card: 1rem;
  --cat-fs-h2: 1.5rem;
  --cat-fs-h1: 1.875rem;
  --cat-accent-blue: #2563eb;
  --cat-accent-orange: #f97316;
  --cat-sticky-bar-h: 64px;
  background: linear-gradient(180deg, #eef6ff 0%, #fafcff 35%, #fff8f0 100%);
}
.page-category-premium .site-main {
  padding-bottom: calc(
    var(--bottom-nav-h) + var(--bottom-nav-float) + var(--cat-sticky-bar-h) + 24px + env(safe-area-inset-bottom, 0px)
  );
}
@media (min-width: 992px) {
  .page-category-premium .site-main {
    padding-bottom: 2rem;
  }
}
.page-category-premium .bottom-nav-pill {
  border-color: rgba(37, 99, 235, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 246, 255, 0.96) 100%);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1), 0 2px 8px rgba(249, 115, 22, 0.06);
}
.page-category-premium .bottom-nav-item--home .bottom-nav-icon--home,
.page-category-premium .bottom-nav-item--home.active .bottom-nav-icon {
  background: linear-gradient(145deg, #2563eb 0%, #1d4ed8 55%, #f97316 140%);
}
/* Premium hero — full width banner only (no text on image) */
.category-hero--premium.category-hero--visual {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: normal;
  overflow: hidden;
  background: linear-gradient(180deg, #eef6ff 0%, #ffffff 50%, #fff7ed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-hero--visual .category-hero-picture {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  line-height: 0;
}
.category-hero--visual .category-hero-img {
  width: 100%;
  max-width: 100%;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
  vertical-align: top;
}
.category-hero-fallback-bg {
  width: 100%;
  min-height: 240px;
  background: linear-gradient(135deg, #e0f2fe 0%, #fff7ed 100%);
}
.category-hero-fallback-bg--website-development {
  background: linear-gradient(135deg, #dbeafe 0%, #ffedd5 100%);
}
.category-hero-fallback-bg--seo {
  background: linear-gradient(135deg, #dbeafe 0%, #ecfdf5 50%, #ffedd5 100%);
}
.category-hero-fallback-bg--social-media-marketing,
.category-hero-fallback-bg--meta-ads,
.category-hero-fallback-bg--google-ads,
.category-hero-fallback-bg--branding-graphics,
.category-hero-fallback-bg--ecommerce-solutions,
.category-hero-fallback-bg--whatsapp-marketing,
.category-hero-fallback-bg--lead-generation,
.category-hero-fallback-bg--naps-nats,
.category-hero-fallback-bg--ai-automation {
  background: linear-gradient(135deg, #eef6ff 0%, #ffffff 45%, #fff8f0 100%);
}
.category-hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  background: linear-gradient(to top, #f8fafc 0%, transparent 100%);
  pointer-events: none;
}
/* Page intro — below hero */
.cat-premium-page-head {
  padding: 0.85rem 0 0.5rem;
  margin-top: -8px;
  position: relative;
  z-index: 2;
}
.cat-premium-crumb-wrap {
  margin-bottom: 0.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-premium-crumb-wrap::-webkit-scrollbar { display: none; }
.cat-premium-crumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(239, 246, 255, 0.9) 50%, rgba(255, 247, 237, 0.9) 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.06);
  font-size: 0.8125rem;
  white-space: nowrap;
}
.cat-premium-crumb li {
  display: inline-flex;
  align-items: center;
}
.cat-premium-crumb a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--cat-accent-blue);
  text-decoration: none;
  font-weight: var(--fw-medium);
  padding: 2px 4px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.cat-premium-crumb a:hover {
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.08);
}
.cat-premium-crumb-sep {
  color: #cbd5e1;
  font-size: 0.65rem;
  padding: 0 2px;
}
.cat-premium-crumb-current span {
  color: var(--navy-cta);
  font-weight: var(--fw-bold);
  max-width: 42vw;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: bottom;
}
.cat-premium-page-intro {
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 55%, #fffaf5 100%);
  border-radius: 20px;
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(249, 115, 22, 0.05);
}
.cat-premium-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: linear-gradient(90deg, #eff6ff 0%, #fff7ed 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 0.65rem;
}
.cat-premium-page-title {
  font-size: clamp(1.65rem, 4.5vw, 2.25rem);
  font-weight: 800;
  color: var(--navy-cta);
  line-height: 1.15;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}
.cat-premium-page-tagline {
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  color: var(--cat-muted);
  margin: 0 0 0.5rem;
}
.cat-premium-page-lead {
  font-size: var(--cat-fs-body);
  line-height: 1.65;
  color: var(--cat-text);
  margin: 0 0 1rem;
}
.cat-premium-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cat-premium-page-actions .btn {
  border-radius: 12px;
  font-weight: var(--fw-medium);
  padding: 10px 18px;
}
.cat-premium {
  position: relative;
  background: transparent;
  padding: 0 0 2.5rem;
  overflow: hidden;
}
.cat-premium > * { position: relative; z-index: 1; }
.cat-premium-stats-wrap {
  padding: 1rem 0 1.25rem;
}
.cat-premium-stats-wrap .container,
.cat-premium-stats-scroll {
  max-width: 1320px;
  margin: 0 auto;
}
@keyframes cat-premium-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cat-premium-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.cat-premium-reveal {
  animation: cat-premium-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: var(--reveal-delay, 0s);
}
.cat-premium-stats-wrap {
  padding: 0 0 1rem;
  overflow: hidden;
}
.cat-premium-stats-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 14px 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-premium-stats-scroll::-webkit-scrollbar { display: none; }
.cat-premium-stat-card {
  flex: 1 1 0;
  min-width: 140px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  padding: 18px 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}
.cat-premium-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.1);
  border-color: #bfdbfe;
}
.cat-premium-stat-card:active {
  transform: scale(0.97);
}
.cat-premium-stat-card i {
  font-size: 1.5rem;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}
.cat-premium-stat-card strong {
  display: block;
  font-size: 1.375rem;
  color: var(--navy-cta);
  line-height: 1.2;
}
.cat-premium-stat-card span {
  font-size: var(--cat-fs-sm);
  color: var(--cat-muted);
  line-height: 1.3;
}
.cat-premium-pills {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cat-premium-pills li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--cat-fs-body);
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}
.cat-premium-pills i {
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 1px;
}
.cat-premium-section {
  padding: 1.75rem 0;
}
.cat-premium-section--soft {
  background: #fff;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}
.cat-premium-section-head {
  position: relative;
  padding-left: 14px;
  margin-bottom: 1.35rem;
}
.cat-premium-section-head::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #2563eb, #f59e0b);
}
.cat-premium-h2 {
  font-size: var(--cat-fs-h2);
  font-weight: 800;
  color: var(--navy-cta);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.cat-premium-sub {
  font-size: var(--cat-fs-body);
  color: var(--cat-muted);
  margin: 0;
  line-height: 1.5;
}
/* NAPS/NATS scheme cards & comparison */
.cat-premium-scheme-grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 768px) {
  .cat-premium-scheme-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cat-premium-scheme-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  padding: 1.15rem 1.1rem 1.2rem;
  box-shadow: 0 6px 22px rgba(37, 99, 235, 0.06);
}
.cat-premium-scheme-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.65rem;
}
.cat-premium-scheme-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eff6ff, #ffedd5);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.cat-premium-scheme-head h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
  color: var(--navy-cta);
  line-height: 1.35;
}
.cat-premium-scheme-body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 0.65rem;
}
.cat-premium-scheme-points {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cat-premium-scheme-points li {
  font-size: 0.8125rem;
  color: #475569;
  display: flex;
  gap: 8px;
  line-height: 1.45;
}
.cat-premium-scheme-points .bi-check2 {
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 2px;
}
.cat-premium-scheme-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: var(--fw-bold);
  color: var(--primary);
  text-decoration: none;
}
.cat-premium-scheme-link:hover { text-decoration: underline; }
.cat-premium-section--compare {
  padding: 1.5rem 0 2rem;
  background: #f8fafc;
}
.cat-premium-compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  background: #fff;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}
.cat-premium-compare-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.8125rem;
}
.cat-premium-compare-table th,
.cat-premium-compare-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: top;
}
.cat-premium-compare-table thead th {
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  color: #fff;
  font-weight: 800;
  font-size: 0.8125rem;
}
.cat-premium-compare-table tbody tr:last-child td {
  border-bottom: none;
}
.cat-premium-compare-table tbody td:first-child {
  font-weight: var(--fw-bold);
  color: var(--navy-cta);
  background: #f8fafc;
  width: 28%;
}
.cat-premium-section--types {
  background: linear-gradient(180deg, #eef6ff 0%, #ffffff 40%, #fff8f0 100%);
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}
.cat-premium-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  opacity: 1;
  visibility: visible;
}
@media (min-width: 576px) {
  .cat-premium-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (min-width: 992px) {
  .cat-premium-types-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
.cat-premium-type-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.cat-premium-type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(37, 99, 235, 0.14);
}
.cat-premium-type-img-wrap {
  position: relative;
  height: 168px;
  overflow: hidden;
}
.cat-premium-type-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-premium-type-icon {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.cat-premium-type-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cat-premium-type-body h3 {
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
  color: var(--navy-cta);
  margin-bottom: 8px;
}
.cat-premium-type-desc {
  font-size: var(--cat-fs-card);
  color: var(--cat-muted);
  line-height: 1.55;
  margin-bottom: 10px;
}
.cat-premium-type-details {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.cat-premium-type-details li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--cat-fs-sm);
  color: var(--cat-text);
  line-height: 1.45;
  margin-bottom: 6px;
}
.cat-premium-type-details li i {
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}
.cat-premium-type-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff !important;
  font-size: var(--cat-fs-sm);
  font-weight: var(--fw-medium);
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cat-premium-type-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  color: #fff !important;
}
.cat-premium-type-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.cat-premium-type-tags span {
  font-size: 0.8125rem;
  font-weight: var(--fw-medium);
  padding: 5px 10px;
  border-radius: 8px;
  background: #eff6ff;
  color: #1d4ed8;
}
.cat-premium-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.cat-premium-tech-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid #e8eef4;
}
.cat-premium-tech-chip i {
  font-size: 1.35rem;
  color: var(--primary);
  flex-shrink: 0;
}
.cat-premium-tech-chip strong {
  display: block;
  font-size: 1rem;
  color: var(--navy-cta);
}
.cat-premium-tech-chip span {
  font-size: var(--cat-fs-sm);
  color: var(--cat-muted);
}
.cat-premium-deliver-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.cat-premium-deliver-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  border: 1px solid #e8eef4;
  height: 100%;
}
.cat-premium-deliver-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eff6ff, #fff7ed);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.cat-premium-deliver-card h3 {
  font-size: 1.0625rem;
  font-weight: var(--fw-bold);
  margin-bottom: 6px;
  color: var(--navy-cta);
}
.cat-premium-deliver-card p {
  font-size: var(--cat-fs-sm);
  color: var(--cat-muted);
  margin: 0;
  line-height: 1.5;
}
.cat-premium-benefit {
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  height: 100%;
  border: 1px solid #e8eef4;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}
.cat-premium-benefit i {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}
.cat-premium-benefit h3 {
  font-size: 1.0625rem;
  font-weight: var(--fw-bold);
  margin-bottom: 6px;
}
.cat-premium-benefit p {
  font-size: var(--cat-fs-sm);
  color: var(--cat-muted);
  margin: 0;
  line-height: 1.5;
}
.cat-premium-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cat-premium-timeline-item {
  display: flex;
  gap: 14px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #e8eef4;
  align-items: flex-start;
}
.cat-premium-timeline-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-cta), #2563eb);
  color: #fff;
  font-size: 12px;
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-premium-timeline-item h3 {
  font-size: 1.0625rem;
  font-weight: var(--fw-bold);
  margin-bottom: 6px;
  color: var(--navy-cta);
}
.cat-premium-timeline-item p {
  font-size: var(--cat-fs-card);
  color: var(--cat-muted);
  margin: 0;
  line-height: 1.55;
}
.cat-premium-faq .accordion-item {
  border: 1px solid #e8eef4;
  border-radius: 12px !important;
  margin-bottom: 8px;
  overflow: hidden;
}
.cat-premium-faq .accordion-button {
  font-size: 1.0625rem;
  font-weight: var(--fw-medium);
  padding: 16px 18px;
  background: #fff;
}
.cat-premium-faq .accordion-button:not(.collapsed) {
  background: #eff6ff;
  color: var(--navy-cta);
}
.cat-premium-faq .accordion-body {
  font-size: var(--cat-fs-body);
  line-height: 1.65;
  color: var(--cat-muted);
}
.cat-premium-cta-section {
  padding: 0 0 1.5rem;
}
.cat-premium-cta-card {
  background: linear-gradient(135deg, var(--navy-cta) 0%, #1e40af 55%, #2563eb 100%);
  border-radius: 20px;
  padding: 1.5rem 1.35rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 16px 40px rgba(30, 58, 95, 0.25);
}
.cat-premium-cta-card h2 {
  font-size: 1.375rem;
  color: #fff;
  margin-bottom: 0.4rem;
  font-weight: 800;
}
.cat-premium-cta-card p {
  margin: 0;
  opacity: 0.92;
  font-size: var(--cat-fs-body);
}
.cat-premium-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cat-premium-cta-btns .btn {
  border-radius: 999px;
  font-weight: var(--fw-medium);
}
.cat-premium-services-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.cat-premium-services-scroll::-webkit-scrollbar { display: none; }
.cat-premium-service-card {
  flex: 0 0 min(260px, 78vw);
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid #e8eef4;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cat-premium-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
  color: inherit;
}
.cat-premium-service-card h3 {
  font-size: 1.0625rem;
  font-weight: var(--fw-bold);
  color: var(--navy-cta);
  margin-bottom: 8px;
}
.cat-premium-service-card p {
  font-size: var(--cat-fs-sm);
  color: var(--cat-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}
.cat-premium-service-link {
  font-size: var(--cat-fs-sm);
  color: var(--primary);
  font-weight: var(--fw-medium);
}
.cat-premium-admin-box {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid #e8eef4;
  font-size: 14px;
  line-height: 1.7;
}
.cat-premium-mobile-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(var(--bottom-nav-h) + var(--bottom-nav-float) + env(safe-area-inset-bottom, 0px));
  z-index: 1035;
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 246, 255, 0.97) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 -6px 24px rgba(37, 99, 235, 0.12), 0 4px 16px rgba(249, 115, 22, 0.08);
}
.cat-premium-mobile-bar-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 11px 8px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  text-decoration: none;
  border: 1.5px solid transparent;
  min-width: 0;
  white-space: nowrap;
}
.cat-premium-mobile-bar-btn--call {
  border-color: rgba(37, 99, 235, 0.35);
  color: #1d4ed8;
  background: #fff;
}
.cat-premium-mobile-bar-btn--wa {
  border-color: rgba(34, 197, 94, 0.4);
  color: #15803d;
  background: #f0fdf4;
}
.cat-premium-mobile-bar-btn--primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 70%, #3b82f6 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
@media (max-width: 380px) {
  .cat-premium-mobile-bar-btn {
    font-size: 0.8125rem;
    padding: 10px 6px;
    gap: 4px;
  }
  .cat-premium-mobile-bar-btn i { font-size: 1rem; }
}
@media (min-width: 768px) {
  .cat-premium-stats-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    overflow: visible;
    padding: 0;
  }
  .cat-premium-stat-card { min-width: 0; }
  .cat-premium-page-intro {
    padding: 1.75rem 2rem;
  }
  .cat-premium-page-actions .btn-lg {
    padding: 12px 24px;
  }
}
@media (max-width: 767.98px) {
  .cat-premium-page-head {
    padding: 0.75rem 0 0.25rem;
  }
  .cat-premium-page-head .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .cat-premium-page-intro {
    border-radius: 18px;
    margin: 0;
    padding: 1.15rem 1rem;
  }
  .cat-premium-crumb-current span {
    max-width: 38vw;
  }
  .cat-premium .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .cat-premium-stat-card {
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
  }
  .cat-premium-type-card {
    border-radius: 20px;
  }
  .cat-premium-page-actions .btn {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    font-size: 0.9rem;
    padding: 10px 12px;
  }
  .cat-premium-page-actions .btn:last-child {
    flex: 1 1 100%;
  }
  .page-category-premium {
    --cat-fs-h1: 1.75rem;
    --cat-fs-h2: 1.375rem;
    --cat-fs-body: 1.0625rem;
  }
  .cat-premium-section { padding: 2rem 0; }
}
@media (min-width: 768px) {
  .page-category-premium {
    --cat-fs-h1: 2.35rem;
    --cat-fs-h2: 1.75rem;
    --cat-fs-body: 1.125rem;
  }
  .cat-premium-pills {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .cat-premium-pills li { flex: 1 1 calc(50% - 8px); }
  .cat-premium-tech-grid { grid-template-columns: repeat(4, 1fr); }
  .cat-premium-deliver-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-premium-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .cat-premium-cta-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
  }
  .cat-premium-services-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
  }
  .cat-premium-service-card { flex: none; }
}
@media (min-width: 1200px) {
  .cat-premium-types-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .cat-premium-h2 { font-size: var(--cat-fs-h2); }
}

/* ========== PREMIUM INNER PAGES (gallery, about, services, legal) ========== */
.page-premium {
  background: linear-gradient(180deg, #eef6ff 0%, #fafcff 40%, #fff8f0 100%);
}
.page-premium .site-main {
  padding-bottom: calc(var(--bottom-nav-h) + var(--bottom-nav-float) + 16px + env(safe-area-inset-bottom, 0px));
}
.pg-hero {
  position: relative;
  padding: 1.25rem 0 1.75rem;
  overflow: hidden;
}
.pg-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.95), rgba(255, 247, 237, 0.85));
  pointer-events: none;
}
.pg-crumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.8125rem;
  margin-bottom: 0.85rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.1);
}
.pg-crumb a {
  color: var(--primary);
  text-decoration: none;
  font-weight: var(--fw-medium);
}
.pg-crumb span { font-weight: var(--fw-bold); color: var(--navy-cta); }
.pg-crumb .bi-chevron-right { font-size: 0.65rem; color: #cbd5e1; }
.pg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #1d4ed8;
  background: linear-gradient(90deg, #eff6ff, #fff7ed);
  border: 1px solid rgba(37, 99, 235, 0.12);
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 0.6rem;
}
.pg-hero-title {
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  font-weight: 800;
  color: var(--navy-cta);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}
.pg-hero-lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 640px;
  margin: 0;
}
.pg-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.15rem;
}
.pg-stat {
  flex: 1 1 90px;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.06);
}
.pg-stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}
.pg-stat span { font-size: 0.8125rem; color: var(--text-muted); }
.pg-section {
  padding: 0 0 2.5rem;
}
.pg-section--soft {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.5) 0%, transparent 100%);
  padding-top: 1.5rem;
}
.pg-section-head { margin-bottom: 1.25rem; }
.pg-h2 {
  font-size: clamp(1.3rem, 3.5vw, 1.65rem);
  font-weight: 800;
  color: var(--navy-cta);
  margin: 0 0 0.35rem;
}
.pg-sub { color: var(--text-muted); margin: 0; font-size: 1rem; }
.pg-content-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.07);
}
.pg-prose {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}
.pg-prose h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-cta);
  margin: 1.5rem 0 0.65rem;
}
.pg-prose h2:first-child { margin-top: 0; }
.pg-prose h3 { font-size: 1.1rem; font-weight: var(--fw-bold); margin: 1.25rem 0 0.5rem; }
.pg-prose p { margin-bottom: 0.85rem; }
.pg-prose ul, .pg-prose ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.pg-prose li { margin-bottom: 0.35rem; }
.pg-prose a { color: var(--primary); font-weight: var(--fw-medium); }
.pg-prose em { color: var(--text-muted); font-size: 0.9375rem; }
.pg-legal-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  padding: 10px 12px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  font-size: 0.8125rem;
}
.pg-legal-nav span { color: var(--text-muted); font-weight: var(--fw-medium); }
.pg-legal-nav a {
  padding: 6px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--primary);
  text-decoration: none;
  font-weight: var(--fw-medium);
}
.pg-legal-nav a:hover { background: var(--primary); color: #fff; }
.pg-legal-nav a.is-active {
  background: var(--primary);
  color: #fff;
}
/* Round services ring */
.pg-round-services {
  padding: 0 0 2.5rem;
  background: linear-gradient(180deg, transparent, rgba(239, 246, 255, 0.45));
}
.pg-round-head {
  text-align: center;
  margin-bottom: 1.25rem;
  padding: 0 8px;
}
.pg-round-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ea580c;
  margin-bottom: 0.35rem;
}
.pg-round-title {
  font-size: clamp(1.3rem, 4vw, 1.75rem);
  font-weight: 800;
  color: var(--navy-cta);
  margin: 0 0 0.4rem;
}
.pg-round-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 520px;
  line-height: 1.5;
}
.pg-round-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 12px 8px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: flex-start;
}
.pg-round-scroll::-webkit-scrollbar { display: none; }
@media (min-width: 992px) {
  .pg-round-scroll {
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
    gap: 20px 24px;
    max-width: 1100px;
    margin: 0 auto;
  }
}
.pg-round-chip {
  flex: 0 0 108px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease;
}
.pg-round-chip:hover {
  transform: translateY(-6px);
  color: inherit;
}
.pg-round-chip-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  padding: 4px;
  background: linear-gradient(145deg, #2563eb, #f97316);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg-round-chip-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  display: block;
}
.pg-round-chip-name {
  display: block;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--navy-cta);
  margin-top: 10px;
  line-height: 1.2;
  max-width: 108px;
}
.pg-round-chip-desc {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 4px;
  max-width: 108px;
}
@media (min-width: 992px) {
  .pg-round-chip { flex: 0 0 120px; }
  .pg-round-chip-ring { width: 108px; height: 108px; }
  .pg-round-chip-name { font-size: 0.875rem; max-width: 120px; }
}
/* Gallery */
.pg-gallery-hint {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pg-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 768px) {
  .pg-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}
@media (min-width: 1200px) {
  .pg-gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.pg-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: #e2e8f0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s;
}
.pg-gallery-item:hover { transform: scale(1.02); }
.pg-gallery-item img,
.pg-gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pg-gallery-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 2.5rem;
  pointer-events: none;
}
.pg-gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 10px;
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}
.pg-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  background: #fff;
  border-radius: 20px;
  border: 1px dashed rgba(37, 99, 235, 0.2);
}
.pg-empty i { font-size: 3rem; color: var(--primary); opacity: 0.5; }

/* 404 page */
.page-404 {
  min-height: 58vh;
  display: flex;
  align-items: center;
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 45%, #eef6ff 100%);
}
.page-404-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 1.75rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}
.page-404-code {
  font-size: clamp(4rem, 18vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 0.5rem;
  background: linear-gradient(135deg, #2563eb, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-404-title {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
}
.page-404-lead {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}
.page-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.page-404-actions .btn {
  border-radius: 999px;
  font-weight: 600;
}
.page-404-help {
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
  font-size: 14px;
  color: #64748b;
}
.page-404-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  margin-right: 1rem;
}
.page-404-contact {
  color: #64748b;
  text-decoration: none;
}
.page-404-contact:hover {
  color: #2563eb;
}

/* About features */
.pg-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .pg-features { grid-template-columns: repeat(4, 1fr); }
}
.pg-feature {
  background: #fff;
  border-radius: 16px;
  padding: 1.15rem;
  text-align: center;
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.05);
}
.pg-feature i {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}
.pg-feature h3 {
  font-size: 0.9375rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: var(--navy-cta);
}
.pg-feature p { font-size: 0.8125rem; color: var(--text-muted); margin: 0; line-height: 1.45; }
/* Services page cards */
.pg-cat-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 576px) {
  .pg-cat-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .pg-cat-cards { grid-template-columns: repeat(3, 1fr); }
}
.pg-cat-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 6px 22px rgba(37, 99, 235, 0.07);
  transition: transform 0.22s, box-shadow 0.22s;
}
.pg-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
  color: inherit;
}
.pg-cat-card-visual {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f1f5f9;
}
.pg-cat-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pg-cat-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pg-cat-card-body strong {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--navy-cta);
}
.pg-cat-card-body > span {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.pg-cat-card-body em {
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: var(--fw-medium);
  color: var(--primary);
  margin-top: 4px;
}
.pg-service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pg-service-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, border-color 0.2s;
}
.pg-service-row:hover {
  background: #f8fbff;
  border-color: rgba(37, 99, 235, 0.2);
  color: inherit;
}
.pg-service-row-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eff6ff, #ffedd5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.pg-service-row-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pg-service-row-text strong { font-size: 1rem; color: var(--navy-cta); }
.pg-service-row-text small { font-size: 0.75rem; color: var(--primary); font-weight: var(--fw-medium); }
.pg-service-row-text > span { font-size: 0.8125rem; color: var(--text-muted); }
.pg-service-row-arrow { color: #cbd5e1; flex-shrink: 0; }
.pg-process-steps {
  display: grid;
  gap: 12px;
}
@media (min-width: 768px) {
  .pg-process-steps { grid-template-columns: repeat(2, 1fr); }
}
.pg-process-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(37, 99, 235, 0.08);
}
.pg-process-step > span {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg-process-step h3 { font-size: 1rem; margin: 0 0 4px; font-weight: 800; color: var(--navy-cta); }
.pg-process-step p { margin: 0; font-size: 0.875rem; color: var(--text-muted); }
/* CTA */
.pg-cta {
  padding: 0 0 3rem;
}
.pg-cta-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #1e3a5f, #2563eb 60%, #1d4ed8);
  color: #fff;
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.35);
}
.pg-cta-card h2 {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: #fff;
}
.pg-cta-card p { margin: 0; opacity: 0.92; }
.pg-cta-btns { display: flex; flex-wrap: wrap; gap: 10px; }
.pg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: var(--fw-medium);
  text-decoration: none;
  font-size: 0.9375rem;
}
.pg-btn--light { background: #fff; color: var(--navy-cta); }
.pg-btn--wa { background: #25d366; color: #fff; }
.pg-btn--wa:hover { color: #fff; background: #128c7e; }
@media (min-width: 768px) {
  .pg-cta-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.25rem;
  }
}
@media (max-width: 767.98px) {
  .pg-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .pg-stat { text-align: center; padding: 10px 6px; min-width: 0; }
  .pg-stat strong { font-size: 1.05rem; }
  .pg-content-card { padding: 1.15rem 1rem; }
}

/* Contact page — clean app layout */
.page-premium--contact {
  padding-bottom: calc(var(--bottom-nav-h, 64px) + var(--bottom-nav-float, 12px) + 72px);
  background: linear-gradient(180deg, #f0f6ff 0%, #f8fafc 35%, #fff 100%);
}
/* Inner page banners (contact, blog, gallery, etc.) */
.page-banner-hero {
  margin-bottom: 0;
}
.page-banner-head {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f8fafc 100%);
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
  padding: 1rem 0 1.15rem;
}
.page-banner-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}
.page-banner-crumb a {
  color: var(--primary);
  text-decoration: none;
  font-weight: var(--fw-medium);
}
.page-banner-crumb span {
  font-weight: var(--fw-bold);
  color: var(--navy-cta);
}
.page-banner-crumb .bi-chevron-right {
  font-size: 0.65rem;
  color: #cbd5e1;
}
.page-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.page-banner-title {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  color: var(--navy-cta);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}
.page-banner-lead {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 640px;
}
.page-banner-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0.85rem;
}
.page-banner-stat {
  flex: 1;
  min-width: 90px;
  max-width: 140px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  text-align: center;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.06);
}
.page-banner-stat strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-cta);
}
.page-banner-stat span {
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}
.page-banner-fallback--contact { background: linear-gradient(135deg, #dbeafe, #ffedd5); }
.page-banner-fallback--blog { background: linear-gradient(135deg, #e0e7ff, #fce7f3); }
.page-banner-fallback--gallery { background: linear-gradient(135deg, #ccfbf1, #dbeafe); }
.page-banner-fallback--projects { background: linear-gradient(135deg, #dbeafe, #fef3c7); }
.page-banner-fallback--about { background: linear-gradient(135deg, #ede9fe, #ffedd5); }
.page-banner-fallback--services { background: linear-gradient(135deg, #eff6ff, #ecfdf5); }
.page-has-visual-banner .pg-hero {
  display: none;
}
.projects-intro-bar {
  background: linear-gradient(90deg, #eff6ff, #fff7ed);
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  padding: 10px 0;
}
.projects-intro-bar p {
  margin: 0;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: var(--fw-bold);
  color: #475569;
}
.projects-intro-bar .bi {
  color: var(--primary);
  margin-right: 4px;
}
.page-has-visual-banner.page-projects .page-banner-title {
  font-size: clamp(1.25rem, 4vw, 1.65rem);
}
/* Blog list cards */
.pg-blog-card {
  height: 100%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s, box-shadow 0.22s;
}
.pg-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
}
.pg-blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.pg-blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f1f5f9;
}
.pg-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(26, 43, 72, 0.1);
}
.pg-blog-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #cbd5e1;
}
.pg-blog-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.pg-blog-meta {
  font-size: 0.6875rem;
  font-weight: var(--fw-bold);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pg-blog-card-body h2 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
  color: var(--navy-cta);
  line-height: 1.35;
}
.pg-blog-card-body p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
  flex: 1;
}
.pg-blog-more {
  font-size: 0.8125rem;
  font-weight: var(--fw-bold);
  color: var(--primary);
  margin-top: 4px;
}
.page-premium--contact .pg-hero {
  padding-bottom: 0.75rem;
  background: transparent;
}
.page-premium--contact .pg-hero-stats {
  display: none;
}
@media (min-width: 992px) {
  .page-premium--contact { padding-bottom: 2rem; }
}
.pg-contact-page {
  padding: 0 0 2rem;
  scroll-margin-top: 72px;
}
.pg-contact-wa-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pg-contact-wa-banner:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}
.pg-contact-wa-banner .bi-whatsapp {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.pg-contact-wa-banner span {
  flex: 1;
  min-width: 0;
}
.pg-contact-wa-banner .bi-chevron-right {
  opacity: 0.85;
  flex-shrink: 0;
}
.pg-contact-form-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #16a34a;
  background: #ecfdf5;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.pg-contact-side-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  margin-bottom: 0.85rem;
}
.pg-contact-side-card h3 {
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
  margin: 0 0 10px;
}
.pg-contact-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pg-contact-steps-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: var(--fw-medium);
  color: var(--navy-cta);
}
.pg-contact-steps-list span {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pg-contact-app {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.pg-contact-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-bottom: 1px solid #f1f5f9;
}
@media (min-width: 576px) {
  .pg-contact-channels {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pg-contact-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s;
}
@media (min-width: 576px) {
  .pg-contact-channel {
    border-bottom: none;
    border-right: 1px solid #f1f5f9;
  }
  .pg-contact-channel:last-child { border-right: none; }
}
.pg-contact-channel:active,
.pg-contact-channel:hover {
  background: #f8fafc;
  color: inherit;
}
.pg-contact-channel-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.pg-contact-channel-icon--call { background: #eff6ff; color: var(--primary); }
.pg-contact-channel-icon--wa { background: #ecfdf5; color: #16a34a; }
.pg-contact-channel-icon--mail { background: #fff7ed; color: #ea580c; }
.pg-contact-channel-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.pg-contact-channel-text strong {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--navy-cta);
}
.pg-contact-channel-text small {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pg-contact-split {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .pg-contact-split {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.pg-contact-form-wrap {
  padding: 1.15rem 1.1rem 1.25rem;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.pg-contact-form-wrap .home-contact-form {
  flex: 0 0 auto;
}
.pg-contact-form-promo {
  margin-top: 12px;
  flex: 1 1 auto;
  min-height: 140px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px dashed rgba(37, 99, 235, 0.22);
  background: linear-gradient(145deg, #eff6ff 0%, #fff7ed 55%, #f8fafc 100%);
}
.pg-contact-form-promo-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 140px;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
}
.pg-contact-form-promo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 140px;
  padding: 1rem;
  text-align: center;
  color: #64748b;
}
.pg-contact-form-promo-placeholder .bi-image {
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.45;
}
.pg-contact-form-promo-placeholder span {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--navy-cta);
}
.pg-contact-form-promo-placeholder small {
  font-size: 0.6875rem;
  line-height: 1.4;
  max-width: 220px;
  color: #94a3b8;
}
@media (min-width: 992px) {
  .pg-contact-form-promo {
    min-height: 180px;
  }
  .pg-contact-form-promo-img,
  .pg-contact-form-promo-placeholder {
    min-height: 180px;
  }
}
.pg-contact-form-head {
  margin-bottom: 0.85rem;
}
.pg-contact-form-head h2 {
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--navy-cta);
}
.pg-contact-form-head p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.pg-contact-side {
  padding: 1rem 1.1rem 1.2rem;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
}
@media (min-width: 992px) {
  .pg-contact-side {
    border-top: none;
    border-left: 1px solid #f1f5f9;
  }
}
.pg-contact-about {
  margin-bottom: 0.85rem;
}
.pg-contact-about summary {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--navy-cta);
  cursor: pointer;
  list-style: none;
  padding: 4px 0;
}
.pg-contact-about summary::-webkit-details-marker { display: none; }
.pg-contact-about-body {
  font-size: 0.8125rem;
  margin-top: 0.5rem;
  max-height: 200px;
  overflow-y: auto;
}
.pg-contact-about-body h2 {
  font-size: 0.9375rem;
  margin: 0.75rem 0 0.35rem;
}
.pg-contact-about-body h2:first-child { margin-top: 0; }
.pg-contact-about-body p,
.pg-contact-about-body li {
  font-size: 0.8125rem;
  line-height: 1.5;
}
.pg-contact-perks {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pg-contact-perks li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  color: #475569;
  background: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
}
.pg-contact-perks i { color: var(--primary); }
.pg-contact-loc {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.pg-contact-loc i { color: var(--primary); margin-top: 2px; }
.pg-contact-faq-mini h3 {
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
  margin: 0 0 8px;
}
.pg-contact-faq-mini details {
  border-bottom: 1px solid #e2e8f0;
  padding: 8px 0;
}
.pg-contact-faq-mini details:last-child { border-bottom: none; }
.pg-contact-faq-mini summary {
  font-size: 0.8125rem;
  font-weight: var(--fw-bold);
  color: var(--navy-cta);
  cursor: pointer;
  list-style: none;
}
.pg-contact-faq-mini summary::-webkit-details-marker { display: none; }
.pg-contact-faq-mini p {
  margin: 6px 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.pg-contact-map-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.pg-contact-map-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.pg-contact-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.pg-contact-mobile-bar {
  z-index: 1040;
}
.page-premium--contact .home-contact-steps-track {
  min-height: 100px;
}
