/* =====================================================
   AEROCITY TECHNOLOGIES — ADVANCED PREMIUM CSS
   ===================================================== */

:root {
  --primary:       #1e3a8a;
  --primary-light: #3b82f6;
  --primary-dark:  #1e40af;
  --secondary:     #0f172a;
  --accent:        #f59e0b;
  --accent-dark:   #d97706;
  --accent-light:  #fbbf24;
  --text:          #1e293b;
  --text-muted:    #64748b;
  --light-bg:      #f8fafc;
  --border:        #e2e8f0;
  --white:         #ffffff;
  --gradient:      linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --gradient-mesh: radial-gradient(at 40% 20%, hsla(228,100%,74%,0.15) 0, transparent 50%),
                   radial-gradient(at 80% 0%,   hsla(189,100%,56%,0.12) 0, transparent 50%),
                   radial-gradient(at 0%  50%,  hsla(355,100%,93%,0.1)  0, transparent 50%),
                   radial-gradient(at 80% 50%,  hsla(340,100%,76%,0.08) 0, transparent 50%),
                   radial-gradient(at 0%  100%, hsla(22,100%,77%,0.12)  0, transparent 50%),
                   radial-gradient(at 80% 100%, hsla(242,100%,70%,0.15) 0, transparent 50%);
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(30,58,138,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:   0 20px 50px rgba(30,58,138,0.14), 0 8px 20px rgba(0,0,0,0.06);
  --shadow-xl:   0 30px 80px rgba(30,58,138,0.2),  0 12px 30px rgba(0,0,0,0.08);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* ── BASE ─────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  background: #fff;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ── SCROLLBAR ───────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--primary), var(--primary-light)); border-radius: 3px; }

/* ── SELECTION ───────────────────────────────────── */
::selection { background: rgba(59,130,246,0.2); color: var(--primary); }

/* =====================================================
   PRELOADER — PREMIUM
   ===================================================== */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: #050a14;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.preloader-logo-img {
  height: 64px; width: auto; display: block;
  filter: brightness(0) invert(1);
  opacity: 0;
  animation: preloaderLogoIn 0.6s ease 0.15s forwards;
}
@keyframes preloaderLogoIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.preloader-bar {
  width: 200px; height: 3px; background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden;
}
.preloader-bar span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  border-radius: 2px;
  animation: barLoad 1.6s var(--ease-smooth) forwards;
}
.preloader-text {
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.25);
  letter-spacing: 2px; text-transform: uppercase;
}
@keyframes barLoad { from { width: 0; } to { width: 100%; } }

/* =====================================================
   TOP HEADER BAR
   ===================================================== */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  height: 42px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  transition: transform 0.4s var(--ease-smooth);
}
.topbar.hide { transform: translateY(-100%); }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 42px;
}
/* LEFT */
.topbar-left { display: flex; align-items: center; gap: 0; }
.topbar-item {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--text-muted); font-size: 12px; font-weight: 500;
  text-decoration: none; padding: 0 16px 0 0;
  transition: color 0.25s;
  white-space: nowrap;
}
.topbar-item:hover { color: var(--primary); }
.topbar-item:first-child { padding-left: 0; }
.topbar-icon {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(30,58,138,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; color: var(--primary); flex-shrink: 0;
}
.topbar-divider {
  display: inline-flex; width: 1px; height: 16px;
  background: var(--border); margin: 0 12px;
}
/* RIGHT */
.topbar-right { display: flex; align-items: center; gap: 0; }
.topbar-rating {
  display: flex; align-items: center; gap: 3px;
  font-size: 11px; font-weight: 600;
}
.topbar-rating i { color: var(--accent); font-size: 10px; }
.topbar-rating strong { color: var(--text); margin-left: 4px; }
.topbar-rating-label { color: var(--text-muted); margin-left: 2px; font-weight: 400; }
.topbar-socials { display: flex; align-items: center; gap: 2px; }
.topbar-socials a {
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(30,58,138,0.05);
  color: var(--text-muted); font-size: 10.5px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.25s;
}
.topbar-socials a:hover {
  background: var(--primary); color: #fff;
  transform: translateY(-1px);
}

/* =====================================================
   NAVBAR — REDESIGNED
   ===================================================== */
#mainNavbar {
  position: fixed; left: 0; right: 0; z-index: 1000;
  top: 42px;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: top 0.4s var(--ease-smooth),
              background 0.4s var(--ease-smooth),
              box-shadow 0.4s,
              padding 0.3s;
}
#mainNavbar.topbar-hidden { top: 0; }
#mainNavbar.scrolled {
  background: #fff;
  box-shadow: 0 4px 24px rgba(30,58,138,0.09), 0 1px 0 var(--border);
  border-bottom-color: transparent;
}

/* Brand */
.navbar-brand {
  display: flex; align-items: center;
  text-decoration: none; padding: 0;
  flex-shrink: 0; min-width: 0;
  transition: padding 0.3s;
}
#mainNavbar.scrolled .navbar-brand { padding: 0; }
.navbar-logo {
  height: 52px;
  width: auto;
  display: block;
  transition: height 0.3s;
}
#mainNavbar.scrolled .navbar-logo { height: 44px; }
.brand-text {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.55rem; font-weight: 900; color: var(--text);
  letter-spacing: -1px; line-height: 1;
}
.brand-city { color: var(--primary); }
.brand-dot  { color: var(--accent); }
.brand-tag {
  font-size: 9.5px; font-weight: 800; letter-spacing: 1.5px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; padding: 3px 9px 3px 8px; border-radius: 20px;
  text-transform: uppercase; line-height: 1; margin-top: 2px;
  box-shadow: 0 2px 10px rgba(30,58,138,0.25);
}

/* Nav links */
.nav-link {
  color: var(--text-muted) !important;
  font-weight: 600; font-size: 0.88rem;
  padding: 22px 14px !important;
  transition: color 0.25s;
  position: relative;
  white-space: nowrap;
}
#mainNavbar.scrolled .nav-link { padding: 14px 14px !important; }
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 2px; background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.3s var(--ease-bounce);
  border-radius: 2px 2px 0 0;
}
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Dropdown arrow */
.nav-arrow {
  font-size: 9px; margin-left: 4px; opacity: 0.6;
  transition: transform 0.3s, opacity 0.3s;
  display: inline-block;
}
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); opacity: 1; }

/* ── MEGA MENU — PROFESSIONAL FLAT ──────────────────── */
.nav-dropdown { position: relative; }
.nav-mega-menu {
  position: absolute; top: calc(100% + 2px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 720px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #1e3a8a;
  box-shadow: 0 20px 60px rgba(15,23,42,0.14), 0 4px 16px rgba(0,0,0,0.06);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.nav-dropdown:hover .nav-mega-menu {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Top label bar */
.nm-top-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px;
  border-bottom: 1px solid #f1f5f9;
  background: #fafbfc;
}
.nm-section-tag {
  font-size: 10px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; color: #94a3b8;
  display: flex; align-items: center; gap: 6px;
}
.nm-view-all {
  font-size: 11.5px; font-weight: 700; color: #3b82f6;
  text-decoration: none; display: flex; align-items: center; gap: 5px;
  transition: color 0.15s;
}
.nm-view-all:hover { color: #1d4ed8; }
.nm-view-all i { font-size: 9px; transition: transform 0.15s; }
.nm-view-all:hover i { transform: translateX(2px); }

/* Body: grid + panel */
.nm-body { display: flex; }

/* Left service grid */
.nm-grid {
  flex: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 6px;
  gap: 0;
}
.nm-item {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px;
  text-decoration: none; color: #374151;
  position: relative;
  transition: background 0.15s;
}
.nm-item::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 2px; background: transparent;
  transition: background 0.15s;
}
.nm-item:hover { background: #f8fafc; }
.nm-item:hover::before { background: #3b82f6; }

.nm-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; border: 1px solid;
  transition: transform 0.15s;
}
.nm-item:hover .nm-icon { transform: scale(1.08); }

.nm-item-text { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.nm-item-title {
  font-size: 12.5px; font-weight: 700; color: #1e293b;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color 0.15s;
}
.nm-item:hover .nm-item-title { color: #1e3a8a; }
.nm-item-sub {
  font-size: 10.5px; color: #94a3b8; font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nm-item-arrow {
  font-size: 8px; color: #cbd5e1;
  opacity: 0; transform: translateX(-3px);
  transition: opacity 0.15s, transform 0.15s, color 0.15s;
  flex-shrink: 0;
}
.nm-item:hover .nm-item-arrow { opacity: 1; transform: translateX(0); color: #3b82f6; }

/* Divider between left grid and right panel */
.nm-panel {
  width: 200px; flex-shrink: 0;
  background: linear-gradient(160deg, #0c1a4b 0%, #0d1b4b 50%, #162554 100%);
  position: relative; overflow: hidden;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.nm-panel-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}
.nm-panel-body {
  position: relative; z-index: 1;
  padding: 18px 16px 16px;
  display: flex; flex-direction: column; height: 100%;
}
.nm-panel-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fbbf24; margin-bottom: 10px;
}
.nm-panel-title {
  font-size: 13.5px; font-weight: 800; color: #fff;
  line-height: 1.35; margin-bottom: 7px;
}
.nm-panel-sub {
  font-size: 11px; color: rgba(255,255,255,0.5);
  line-height: 1.55; margin-bottom: 14px; flex: 1;
}
.nm-panel-stats {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 14px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nm-stat { flex: 1; text-align: center; }
.nm-stat strong { display: block; font-size: 13px; font-weight: 800; color: #fff; }
.nm-stat span { font-size: 9px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; }
.nm-stat-div { width: 1px; height: 24px; background: rgba(255,255,255,0.1); }
.nm-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: #f59e0b; color: #0f172a;
  font-size: 11px; font-weight: 800; padding: 9px 14px;
  text-decoration: none; letter-spacing: 0.2px;
  transition: background 0.15s;
}
.nm-cta-btn:hover { background: #fbbf24; color: #0f172a; }

/* ── RIGHT CTA GROUP ─────────────────────────────────── */
.navbar-cta-group {
  display: flex; align-items: center; gap: 12px; padding: 8px 0;
}
.nav-phone {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; cursor: pointer;
  padding: 8px 14px; border-radius: 12px;
  border: 1px solid var(--border);
  background: #f8fafc;
  transition: all 0.3s;
}
.nav-phone:hover { background: rgba(30,58,138,0.05); border-color: rgba(30,58,138,0.2); }
.nav-phone-icon {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: rgba(30,58,138,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 13px;
  transition: all 0.3s;
}
.nav-phone:hover .nav-phone-icon { background: var(--primary); color: #fff; }
.nav-phone-text { display: flex; flex-direction: column; }
.nav-phone-label { font-size: 10px; color: var(--text-muted); line-height: 1; font-weight: 500; }
.nav-phone-num   { font-size: 12.5px; color: var(--text); font-weight: 700; line-height: 1.4; }
.btn-nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, #f97316 100%);
  color: #0f172a !important; font-weight: 700; font-size: 0.88rem;
  padding: 10px 22px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 6px 22px rgba(245,158,11,0.4);
  transition: all 0.35s var(--ease-bounce);
  white-space: nowrap;
}
.btn-nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245,158,11,0.55);
  color: #0f172a !important;
}
.btn-nav-cta i { font-size: 12px; }

/* ── MOBILE TOGGLER ──────────────────────────────────── */
/*
 * Using inline-block + padding instead of display:flex on <button>
 * because flex on button has broken layout in Samsung Internet < 9
 * and older Android WebView (Chrome < 66).
 */
.navbar-toggler {
  border: none;
  padding: 6px 4px;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.navbar-toggler:focus { box-shadow: none; outline: none; }
.toggler-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.32s ease, opacity 0.2s ease;
}
.toggler-bar:first-child { margin-top: 0; }
.toggler-bar:last-child  { margin-bottom: 0; }
/* X animation when sidebar is open */
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ─────────────────────────────────────── */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    border-radius: 16px; padding: 16px 12px; margin-top: 10px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(30,58,138,0.1);
  }
  .nav-link { padding: 12px 16px !important; border-radius: 10px; }
  .nav-link::after { display: none; }
  .nav-mega-menu {
    position: static; width: 100%; transform: none !important;
    opacity: 1 !important; visibility: visible !important; pointer-events: all !important;
    box-shadow: none; border-top: 2px solid #1e3a8a; margin-top: 4px;
    border-left: none; border-right: none; border-bottom: none;
    display: none;
  }
  .nav-dropdown:hover .nav-mega-menu { display: block; }
  .nm-body { flex-direction: column; }
  .nm-panel { width: 100%; display: none; }
  .nm-grid { grid-template-columns: 1fr; padding: 4px; }
  .nm-item { padding: 9px 10px; }
  .nm-top-bar { padding: 8px 14px; }
  .navbar-cta-group { padding: 12px 8px 4px; gap: 10px; }
  .nav-phone { display: none !important; }
  .btn-nav-cta { width: 100%; justify-content: center; }
}

/* =====================================================
   HERO SECTION — ADVANCED
   ===================================================== */
/* =====================================================
   HERO IMAGE SLIDER — VIBRANT / ADVANCED
   ===================================================== */

/* Top progress line */
.hs-progress-line {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,0.12); z-index: 20; overflow: hidden;
}
#hsProgress {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.5), #fff, var(--accent));
  border-radius: 0 2px 2px 0;
}

/* Wrapper */
.hs-wrap {
  position: relative;
  background: #050d2e;
  border-bottom: none;
  overflow: hidden;
}

/* Slide */
.hs-slide {
  position: relative;
  height: 820px;
  padding-top: 104px;
  background: #050d2e; /* overridden per-slide via inline style */
  overflow: hidden;
}

/* BG image mode */
.hs-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 7s ease;
}
.swiper-slide-active .hs-img { transform: scale(1); }
.hs-img-overlay-light {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

/* Tinted blobs */
.hs-bg-blob {
  position: absolute; inset: 0; pointer-events: none;
}

/* Decorative rings */
.hs-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
  border: 1px solid rgba(255,255,255,0.07);
}
.hs-ring-lg { width: 560px; height: 560px; right: -110px; top: -120px; }
.hs-ring-md { width: 340px; height: 340px; right: 80px;   bottom: -110px; opacity: 0.55; }
.hs-ring-sm { width: 170px; height: 170px; left:  3%;     top: 10%;       opacity: 0.45; }

/* Light sweep across slide */
.hs-sweep {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(120deg,
    rgba(255,255,255,0.04) 0%,
    transparent           45%,
    rgba(255,255,255,0.03) 100%);
}

/* Dot grid */
.hs-dot-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.7) 35%, rgba(0,0,0,0.7) 65%, transparent 100%);
}

/* Container fills slide height */
.hs-slide .container { height: 100%; position: relative; z-index: 2; }
.hs-slide .row        { height: 100%; }

/* ══════════════════════════════════════════════════
   TECH SLIDES — background layers & visuals
══════════════════════════════════════════════════ */
.hs-tgrid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 55px 55px;
}
.hs-tgrid::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 27px 27px; background-position: 13px 13px;
}
.hs-scanline {
  position: absolute; left: 0; right: 0; height: 1px; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 50%, transparent);
  animation: hsScanMove 14s linear infinite;
}
@keyframes hsScanMove {
  0%   { top: 0%;   opacity: 0; }
  3%   { opacity: 1; }
  97%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.hs-glow {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 1;
  filter: blur(70px);
}
.hs-brk { position: absolute; width: 26px; height: 26px; z-index: 3; opacity: 0.28; }
.hs-brk-tl { top: 18px; left: 18px; border-top: 2px solid; border-left: 2px solid; }
.hs-brk-tr { top: 18px; right: 18px; border-top: 2px solid; border-right: 2px solid; }
.hs-brk-bl { bottom: 18px; left: 18px; border-bottom: 2px solid; border-left: 2px solid; }
.hs-brk-br { bottom: 18px; right: 18px; border-bottom: 2px solid; border-right: 2px solid; }
.hs-parts { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hs-parts span { position: absolute; border-radius: 50%; animation: hsPUp linear infinite; opacity: 0; }
@keyframes hsPUp {
  0%   { transform: translateY(820px); opacity: 0; }
  6%   { opacity: 0.8; }
  88%  { opacity: 0.4; }
  100% { transform: translateY(-40px); opacity: 0; }
}
/* ── Code window ── */
.hs-tv { position: relative; width: 100%; max-width: 455px; margin-left: auto; }
.hs-cwin {
  background: rgba(0,0,0,0.62); border: 1px solid rgba(255,255,255,0.11);
  border-radius: 12px; overflow: hidden;
}
.hs-cbar {
  background: rgba(255,255,255,0.06); padding: 9px 14px;
  display: flex; align-items: center; gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hs-cdot { width: 10px; height: 10px; border-radius: 50%; }
.hs-cdot-r { background: #ef4444; } .hs-cdot-y { background: #f59e0b; } .hs-cdot-g { background: #10b981; }
.hs-cfile { margin-left: 4px; font-size: 10.5px; color: rgba(255,255,255,0.28); font-family: monospace; }
.hs-cbody { padding: 12px 14px; font-family: 'Courier New', monospace; font-size: 11px; line-height: 1.82; }
.hs-cl { display: block; }
.hs-ln { color: rgba(255,255,255,0.14); display: inline-block; width: 18px; text-align: right; margin-right: 12px; font-size: 10px; user-select: none; }
.kw { color: #c792ea; } .fn { color: #82aaff; } .st { color: #c3e88d; }
.cmt { color: #546e7a; font-style: italic; } .nm { color: #f78c6c; } .op { color: #89ddff; } .cl { color: #ffcb6b; }
/* ── Dashboard window ── */
.hs-dwin {
  background: rgba(0,0,0,0.58); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; overflow: hidden;
}
.hs-dhead {
  background: rgba(255,255,255,0.05); padding: 10px 16px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hs-dtitle { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.82); font-family: 'Inter',sans-serif; letter-spacing: 0.4px; }
.hs-dlive { font-size: 9px; padding: 2px 8px; border-radius: 20px; font-weight: 700; font-family: 'Inter',sans-serif; background: rgba(16,185,129,0.18); color: #34d399; border: 1px solid rgba(16,185,129,0.28); }
.hs-dbody { padding: 13px 16px; }
.hs-dkpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.hs-dkpi { padding: 9px 10px; border-radius: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); }
.hs-dkpi-v { font-size: 15px; font-weight: 900; color: #fff; font-family: 'Space Grotesk',sans-serif; line-height: 1; }
.hs-dkpi-l { font-size: 8px; color: rgba(255,255,255,0.36); margin-top: 3px; font-family: 'Inter',sans-serif; text-transform: uppercase; letter-spacing: 0.5px; }
.hs-dkpi-c { font-size: 8px; margin-top: 4px; font-weight: 700; font-family: 'Inter',sans-serif; }
.hs-barchart { display: flex; align-items: flex-end; gap: 5px; height: 68px; margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 2px; }
.hs-barchart span { flex: 1; border-radius: 3px 3px 0 0; }
.hs-dtable {}
.hs-dtr { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hs-dtr:last-child { border: none; }
.hs-dtk { font-size: 10px; color: rgba(255,255,255,0.48); font-family: 'Inter',sans-serif; }
.hs-dtv { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.85); font-family: 'Inter',sans-serif; }
/* ── Phone mockup ── */
.hs-phone {
  width: 188px; background: #08080c;
  border-radius: 28px; border: 2px solid rgba(255,255,255,0.14);
  overflow: hidden; margin: 0 auto;
}
.hs-pnotch { height: 25px; display: flex; align-items: center; justify-content: center; }
.hs-ppill { width: 52px; height: 13px; background: #111; border-radius: 10px; }
.hs-pscr { padding: 0 10px 12px; }
.pbar { display: flex; justify-content: space-between; align-items: center; padding: 4px 0 8px; }
.pbar-logo { font-size: 11px; font-weight: 800; color: #fff; font-family: 'Space Grotesk',sans-serif; }
.pbal { border-radius: 10px; padding: 10px; margin-bottom: 8px; }
.pbal-l { font-size: 8.5px; color: rgba(255,255,255,0.48); font-family: 'Inter',sans-serif; }
.pbal-v { font-size: 18px; font-weight: 900; color: #fff; font-family: 'Space Grotesk',sans-serif; line-height: 1.2; margin: 2px 0; }
.pbal-s { font-size: 8.5px; font-weight: 600; font-family: 'Inter',sans-serif; }
.pacts { display: grid; grid-template-columns: repeat(4,1fr); gap: 5px; margin-bottom: 8px; }
.pact { padding: 7px 3px; border-radius: 7px; background: rgba(255,255,255,0.06); text-align: center; }
.pact i { font-size: 11px; display: block; margin-bottom: 2px; }
.pact span { font-size: 7.5px; color: rgba(255,255,255,0.5); font-family: 'Inter',sans-serif; }
.ptxh { font-size: 8.5px; font-weight: 700; color: rgba(255,255,255,0.5); margin-bottom: 4px; font-family: 'Inter',sans-serif; text-transform: uppercase; letter-spacing: 0.5px; }
.ptx { display: flex; align-items: center; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05); gap: 6px; }
.ptx:last-child { border: none; }
.ptxi { width: 21px; height: 21px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 8px; flex-shrink: 0; }
.ptxn { font-size: 8.5px; color: rgba(255,255,255,0.7); font-family: 'Inter',sans-serif; flex: 1; }
.ptxa { font-size: 8.5px; font-weight: 700; font-family: 'Inter',sans-serif; }
/* ── Tech chip tags ── */
.hs-tchips { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 12px; }
.hs-tchip { padding: 4px 10px; border-radius: 5px; font-size: 10px; font-family: 'Inter',sans-serif; font-weight: 600; }

/* ── CONTENT ANIMATIONS ───────────────────────────────── */
.hs-content { display: flex; flex-direction: column; justify-content: center; height: 100%; }
.hs-content > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.swiper-slide-active .hs-content > *:nth-child(1) { opacity:1; transform:none; transition-delay:0.08s; }
.swiper-slide-active .hs-content > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.2s; }
.swiper-slide-active .hs-content > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.32s; }
.swiper-slide-active .hs-content > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.44s; }
.swiper-slide-active .hs-content > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.56s; }

/* Badge */
.hs-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; border: 1px solid;
  margin-bottom: 16px; width: fit-content;
  backdrop-filter: blur(8px);
}
.hs-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  animation: hsBadgePulse 1.8s ease-in-out infinite;
}
@keyframes hsBadgePulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.75)} }

/* Title */
.hs-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--hs-text, #fff);
  margin-bottom: 14px;
}
.hs-title-accent { display: inline-block; }

/* Subtitle */
.hs-subtitle {
  font-size: 0.92rem;
  color: var(--hs-muted, rgba(255,255,255,0.68));
  line-height: 1.78; max-width: 480px; margin-bottom: 26px;
}

/* Buttons */
.hs-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hs-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 700; font-size: 0.87rem;
  padding: 11px 26px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
  transition: all 0.3s var(--ease-bounce);
}
.hs-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.35); color: #fff; }
.hs-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.87rem;
  padding: 10px 22px; border-radius: 50px; border: 1.5px solid;
  background: rgba(255,255,255,0.06); backdrop-filter: blur(8px);
  text-decoration: none; transition: all 0.3s;
}
.hs-btn-outline:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }

/* Mini stats row */
.hs-stats-row {
  display: flex; align-items: center; gap: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--hs-border, rgba(255,255,255,0.15));
  flex-wrap: wrap;
}
.hs-mini-stat { display: flex; flex-direction: column; }
.hs-mini-stat strong { font-size: 1.1rem; font-weight: 900; line-height: 1; letter-spacing: -0.5px; }
.hs-mini-stat span   { font-size: 10px; color: var(--hs-muted, rgba(255,255,255,0.55)); margin-top: 3px; font-weight: 500; }

/* ── RIGHT VISUAL ────────────────────────────────────── */
.hs-visual {
  position: relative; width: 320px; height: 320px; flex-shrink: 0;
}
.hs-visual-circle {
  width: 240px; height: 240px; border-radius: 50%;
  background: linear-gradient(135deg, var(--hs-c1), var(--hs-c2));
  display: flex; align-items: center; justify-content: center;
  font-size: 5.5rem; color: rgba(255,255,255,0.9);
  box-shadow: 0 24px 70px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08) inset;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: hsCirclePulse 4s ease-in-out infinite;
}
@keyframes hsCirclePulse {
  0%,100% { box-shadow: 0 24px 70px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08) inset; }
  50%      { box-shadow: 0 36px 90px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.12) inset; }
}

/* Floating chips */
.hs-chip {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 16px; font-size: 11.5px; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 7px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  white-space: nowrap;
  animation: hsChipFloat 3s ease-in-out infinite;
}
.hs-chip-tl { top: 12px;  left: -16px;  animation-delay: 0s; }
.hs-chip-br { bottom: 12px; right: -16px; animation-delay: -1.1s; }
.hs-chip-tr { top: 50%;  right: -24px; transform: translateY(-50%); animation-delay: -2.2s; }
@keyframes hsChipFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
.hs-chip-tr { animation-name: hsChipFloatTr; }
@keyframes hsChipFloatTr {
  0%,100% { transform: translateY(-50%); }
  50%      { transform: translateY(calc(-50% - 7px)); }
}

/* ── NAVIGATION ARROWS ───────────────────────────────── */
.hs-nav {
  position: absolute; top: 50%; z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85); font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: all 0.3s var(--ease-bounce);
}
.hs-nav:hover {
  background: rgba(255,255,255,0.92);
  color: var(--primary);
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(-50%) scale(1.1);
}
.hs-prev { left: 16px;  transform: translateY(-50%); }
.hs-next { right: 16px; transform: translateY(-50%); }
.hs-prev:hover, .hs-next:hover { transform: translateY(-50%) scale(1.1); }

/* ── CONTROLS (dots + counter) ──────────────────────── */
.hs-controls {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 16px; z-index: 10;
}
.hs-counter {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
}
.hs-cur { font-size: 14px; font-weight: 800; color: rgba(255,255,255,0.9); }
.hs-dots { display: flex; gap: 6px; align-items: center; }
.hs-dot {
  width: 7px; height: 7px; border-radius: 50%; border: none; padding: 0;
  background: rgba(255,255,255,0.25); cursor: pointer;
  transition: all 0.35s var(--ease-bounce);
}
.hs-dot.active {
  width: 24px; border-radius: 4px;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0.6));
}

/* ── SHARED HERO BUTTON STYLES (CTA section) ─────────── */
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent), #f97316);
  color: #0f172a; font-weight: 700; font-size: 0.95rem;
  padding: 15px 32px; border-radius: 50px;
  box-shadow: 0 8px 30px rgba(245,158,11,0.4);
  transition: all 0.35s var(--ease-bounce);
  border: none; cursor: pointer; text-decoration: none;
}
.btn-hero-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 50px rgba(245,158,11,0.5);
  color: #0f172a;
}
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff; font-weight: 600; font-size: 0.95rem;
  padding: 15px 32px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s; text-decoration: none;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  color: #fff; transform: translateY(-3px);
}
.btn-hero-secondary .play-circle {
  width: 32px; height: 32px; background: rgba(255,255,255,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 10px;
}

/* ── TECH PILLS (shared) ─────────────────────────────── */
.tech-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.tech-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  padding: 5px 13px; border-radius: 50px; font-size: 11.5px; font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s; white-space: nowrap;
}
.tech-pill:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
  .hs-slide { height: auto; min-height: 420px; padding-top: 100px; padding-bottom: 70px; }
  .hs-title { font-size: 1.55rem; letter-spacing: -0.8px; }
  .hs-prev { left: 8px; }
  .hs-next { right: 8px; }
  .hs-controls { bottom: 14px; }
}


/* =====================================================
   SECTION COMMONS
   ===================================================== */
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(30,58,138,0.08), rgba(59,130,246,0.06));
  color: var(--primary-light);
  border: 1px solid rgba(59,130,246,0.15);
  padding: 6px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-badge i { font-size: 10px; }
.section-title {
  font-size: clamp(1.9rem,3.5vw,3rem); font-weight: 900;
  color: var(--text); letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px;
}
.section-title .gradient-text {
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 580px; margin: 0 auto 56px; line-height: 1.8; }
.section-line { width: 50px; height: 4px; background: linear-gradient(90deg,var(--primary),var(--primary-light),var(--accent)); border-radius: 2px; margin: 16px auto 0; }
.section-line.left { margin-left: 0; }

/* =====================================================
   SERVICES — REDESIGNED
   ===================================================== */
.services-section {
  padding: 90px 0 110px;
  background: linear-gradient(150deg, #fffbeb 0%, #ffffff 50%, #fefce8 100%);
  position: relative; overflow: hidden;
}
.services-section::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 8% 15%, rgba(251,191,36,0.13) 0%, transparent 50%),
    radial-gradient(ellipse at 92% 85%, rgba(245,158,11,0.10) 0%, transparent 50%);
}

/* ── Section Header ── */
.srv-header { margin-bottom: 56px; }
.srv-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.srv-eyebrow-line {
  display: block; width: 50px; height: 1.5px;
  background: linear-gradient(90deg, transparent, #f59e0b);
}
.srv-eyebrow-line-r {
  background: linear-gradient(90deg, #f59e0b, transparent);
}
.srv-eyebrow-text {
  font-size: 11.5px; font-weight: 800; letter-spacing: 2.2px;
  text-transform: uppercase; color: #b45309;
  display: flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #fcd34d; border-radius: 100px;
  padding: 6px 16px;
}
.srv-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 900; line-height: 1.18; color: #0f172a;
  letter-spacing: -1.5px; margin-bottom: 18px;
}
.srv-highlight {
  background: linear-gradient(135deg, #b45309 0%, #d97706 40%, #f59e0b 70%, #fbbf24 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.srv-subtitle {
  max-width: 580px; margin: 0 auto;
  font-size: 1.05rem; line-height: 1.78; color: #64748b;
}

/* ── Cards ── */
.srv-card {
  background: #fff;
  border-radius: 20px;
  padding: 34px 28px 28px;
  height: 100%;
  transition: all 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1.5px solid #fde68a;
  box-shadow: 0 2px 18px rgba(245,158,11,0.07);
  cursor: pointer; position: relative; overflow: hidden;
}
.srv-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3.5px;
  background: linear-gradient(90deg, #b45309, #d97706, #f59e0b);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  border-radius: 20px 20px 0 0;
}
.srv-card:hover::before { transform: scaleX(1); }
.srv-card:hover {
  transform: translateY(-11px);
  box-shadow: 0 24px 52px rgba(245,158,11,0.16), 0 0 0 1.5px rgba(245,158,11,0.22);
  border-color: transparent;
}
.srv-card-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; margin-bottom: 22px;
}
.srv-card-icon {
  width: 58px; height: 58px; flex-shrink: 0;
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1.5px solid #fde68a; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 23px; color: #d97706;
  transition: all 0.38s;
}
.srv-card:hover .srv-card-icon {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  border-color: transparent; color: #fff;
  box-shadow: 0 8px 22px rgba(245,158,11,0.40);
  transform: rotate(-4deg) scale(1.06);
}
.srv-card-num {
  font-size: 4.8rem; font-weight: 900; line-height: 1;
  color: #f59e0b; opacity: 0.08; letter-spacing: -3px;
  transition: opacity 0.38s; user-select: none;
}
.srv-card:hover .srv-card-num { opacity: 0.14; }
.srv-card-title {
  font-size: 1.06rem; font-weight: 750;
  color: #0f172a; margin-bottom: 9px; letter-spacing: -0.3px;
  transition: color 0.3s;
}
.srv-card:hover .srv-card-title { color: #92400e; }
.srv-card-desc {
  color: #64748b; font-size: 0.9rem; line-height: 1.74;
  margin-bottom: 0; transition: color 0.3s;
}
.srv-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: #d97706; font-weight: 700; font-size: 0.84rem;
  margin-top: 18px; transition: gap 0.3s, color 0.3s;
}
.srv-card:hover .srv-card-link { gap: 10px; color: #92400e; }

/* CTA button */
.srv-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #b45309, #d97706, #f59e0b);
  color: #fff; font-weight: 700; font-size: 0.97rem;
  padding: 14px 42px; border-radius: 100px; text-decoration: none;
  box-shadow: 0 8px 28px rgba(245,158,11,0.38);
  transition: all 0.3s;
}
.srv-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(245,158,11,0.52);
  color: #fff;
}

/* =====================================================
   MARQUEE TECH STRIP
   ===================================================== */
.tech-strip {
  background: #0a0f2e;
  display: flex;
  align-items: center;
  height: 52px;
  overflow: hidden;
  position: relative;
}

/* Pinned left label */
.tech-strip-label {
  position: relative;
  display: flex; align-items: center; gap: 9px;
  background: #1e3a8a;
  color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 0 32px 0 22px;
  height: 100%;
  flex-shrink: 0;
  z-index: 3;
  white-space: nowrap;
}
.tech-strip-label i { font-size: 13px; opacity: 0.9; }

/* Chevron arrow pointing right */
.tech-strip-arrow {
  position: absolute; right: -20px; top: 0;
  width: 0; height: 0;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 20px solid #1e3a8a;
  z-index: 4;
}

/* Right fade */
.tech-strip-fade {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 80px; z-index: 2; pointer-events: none;
  background: linear-gradient(-90deg, #0a0f2e 0%, transparent 100%);
}

/* Scrolling track */
.tech-track-wrap {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 24px;
  background: #0a0f2e;
}
.tech-marquee {
  display: flex; align-items: center; gap: 10px;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.tech-marquee:hover { animation-play-state: paused; }

.tech-item {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px;
  background: var(--tc, #1e3a8a);
  color: #fff;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2px; white-space: nowrap;
  cursor: default;
  transition: filter 0.2s, transform 0.2s;
}
.tech-item:hover { filter: brightness(1.18); transform: scale(1.04); }
.tech-item i {
  font-size: 14px; color: rgba(255,255,255,0.9);
}

@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* =====================================================
   PORTFOLIO
   ===================================================== */
/* ── Portfolio Section ── */
.portfolio-section {
  padding: 100px 0 110px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

/* Header */
.pf-header { margin-bottom: 52px; }
.pf-eyebrow { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.pf-eyebrow-line { display: block; width: 50px; height: 1.5px; background: linear-gradient(90deg, transparent, #3b82f6); }
.pf-eyebrow-line-r { background: linear-gradient(90deg, #3b82f6, transparent); }
.pf-eyebrow-text {
  font-size: 11.5px; font-weight: 800; letter-spacing: 2.2px; text-transform: uppercase;
  color: #1d4ed8; display: flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #bfdbfe; border-radius: 100px; padding: 6px 16px;
}
.pf-title {
  font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 900; line-height: 1.18;
  color: #0f172a; letter-spacing: -1.5px; margin-bottom: 18px;
}
.pf-highlight {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pf-subtitle { max-width: 560px; margin: 0 auto; font-size: 1.05rem; line-height: 1.78; color: #64748b; }

/* Filter Tabs */
.pf-filter-wrap { display: flex; justify-content: center; margin-bottom: 48px; }
.pf-filter-tabs {
  display: flex; gap: 4px; flex-wrap: wrap; justify-content: center;
  background: #f1f5f9; padding: 5px; border-radius: 50px;
}
.filter-btn {
  padding: 9px 22px; border-radius: 50px; border: none; background: transparent;
  color: #64748b; font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: all 0.28s;
}
.filter-btn.active, .filter-btn:hover {
  background: #fff; color: #1d4ed8;
  box-shadow: 0 2px 12px rgba(30,58,138,0.13);
}

/* Cards */
.pf-card {
  border-radius: 20px; overflow: hidden; cursor: pointer;
  background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: all 0.42s cubic-bezier(0.34,1.56,0.64,1);
  border: 1px solid #e2e8f0;
}
.pf-card:hover { transform: translateY(-10px); box-shadow: 0 28px 60px rgba(0,0,0,0.13); border-color: transparent; }

.pf-card-img { position: relative; height: 238px; overflow: hidden; }
.pf-card-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s ease; }
.pf-card:hover .pf-card-img img { transform: scale(1.07); }
.pf-card-placeholder {
  width:100%; height:100%;
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 60%, #3b82f6 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: rgba(255,255,255,0.12);
}
.pf-card-cat {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
  color: #1d4ed8; font-size: 10.5px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
  border: 1px solid rgba(59,130,246,0.25);
}
.pf-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(15,23,42,0.5) 0%, rgba(29,78,216,0.88) 100%);
  opacity: 0; transition: opacity 0.38s;
  display: flex; align-items: center; justify-content: center;
}
.pf-card:hover .pf-card-overlay { opacity: 1; }
.pf-card-overlay-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.18); border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff; font-size: 13px; font-weight: 700;
  padding: 11px 24px; border-radius: 50px; backdrop-filter: blur(8px);
  transform: translateY(14px) scale(0.9); transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
}
.pf-card:hover .pf-card-overlay-btn { transform: translateY(0) scale(1); }

.pf-card-info {
  padding: 18px 22px; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  border-top: 1px solid #f1f5f9;
}
.pf-card-title { font-size: 1rem; font-weight: 750; color: #0f172a; margin-bottom: 3px; letter-spacing: -0.3px; }
.pf-card-client { font-size: 0.82rem; color: #94a3b8; margin: 0; }
.pf-card-arrow {
  width: 38px; height: 38px; flex-shrink: 0;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #bfdbfe; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #2563eb; font-size: 14px;
  transition: all 0.38s cubic-bezier(0.34,1.56,0.64,1);
}
.pf-card:hover .pf-card-arrow {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  border-color: transparent; color: #fff;
  transform: rotate(-45deg) scale(1.1);
  box-shadow: 0 4px 16px rgba(37,99,235,0.38);
}

/* CTA */
.pf-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb, #3b82f6);
  color: #fff; font-weight: 700; font-size: 0.97rem;
  padding: 14px 42px; border-radius: 100px; text-decoration: none;
  box-shadow: 0 8px 28px rgba(37,99,235,0.35); transition: all 0.3s;
}
.pf-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(37,99,235,0.5); color: #fff; }

/* =====================================================
   PORTFOLIO MODAL — FLAT DESIGN
   ===================================================== */
.pf-modal .modal-dialog { max-width: 900px; }
.pf-modal-content {
  border-radius: 0; overflow: hidden; border: none;
  background: #fff;
}

/* Header — flat solid color */
.pf-modal-header {
  padding: 28px 32px 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.pf-modal-header-pattern,
.pf-modal-header-blob { display: none; }

.pf-modal-header-content {
  display: flex; align-items: center; justify-content: space-between;
}
.pf-modal-header-left { display: flex; align-items: center; gap: 18px; }
.pf-modal-header-icon {
  width: 56px; height: 56px; border-radius: 4px;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff; flex-shrink: 0;
}
.pf-modal-header-num {
  font-size: 4rem; font-weight: 900; color: rgba(255,255,255,0.1);
  line-height: 1; letter-spacing: -3px; user-select: none;
}
.pf-modal-cat {
  display: inline-block; font-size: 10px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  background: rgba(255,255,255,0.22); color: #fff;
  padding: 3px 12px; border-radius: 2px; margin-bottom: 8px;
}
.pf-modal-hero-title {
  font-size: 1.5rem; font-weight: 800; color: #fff; margin: 0 0 5px;
  line-height: 1.2; letter-spacing: -0.3px;
}
.pf-modal-hero-client { font-size: 0.87rem; color: rgba(255,255,255,0.65); margin: 0; }
.pf-modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  width: 34px; height: 34px; border-radius: 2px; border: none;
  background: rgba(255,255,255,0.18);
  color: #fff; font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.pf-modal-close:hover { background: rgba(255,255,255,0.32); }

/* Body */
.pf-modal-body { padding: 0; }

/* Stats bar */
.pf-modal-stats {
  display: flex; align-items: stretch;
  background: #fff; border-bottom: 1px solid #e2e8f0;
}
.pf-modal-stat {
  display: flex; align-items: center; gap: 12px;
  flex: 1; padding: 18px 24px;
  border-right: 1px solid #e2e8f0;
}
.pf-modal-stat:last-child { border-right: none; }
.pf-modal-stat-icon {
  width: 34px; height: 34px; border-radius: 4px;
  background: #f1f5f9;
  display: flex; align-items: center; justify-content: center;
  color: #475569; font-size: 13px; flex-shrink: 0;
}
.pf-modal-stat-val {
  display: block; font-size: 0.95rem; font-weight: 800;
  color: #0f172a; line-height: 1;
}
.pf-modal-stat-lbl {
  display: block; font-size: 10.5px; color: #94a3b8;
  margin-top: 3px; text-transform: uppercase; letter-spacing: 0.5px;
}
.pf-modal-stat-div { display: none; }

/* Inner content padding */
.pf-modal-inner { padding: 28px 32px 32px; }

/* Section titles */
.pf-modal-section-title {
  font-size: 10px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: #94a3b8; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.pf-modal-section-title::after {
  content: ''; flex: 1; height: 1px; background: #e2e8f0;
}

/* Description */
.pf-modal-desc { font-size: 0.93rem; line-height: 1.8; color: #475569; }

/* Tech chips — flat */
.pf-tech-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.pf-tech-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; padding: 5px 12px;
  border-radius: 3px; border: 1.5px solid currentColor;
  letter-spacing: 0.2px; opacity: 0.9;
}
.pf-tech-chip::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; display: inline-block; flex-shrink: 0;
}

/* Features grid */
.pf-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pf-feature-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.87rem; color: #334155; line-height: 1.5; padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
}
.pf-feature-check { color: #16a34a; margin-top: 2px; font-size: 11px; flex-shrink: 0; }

/* Info card — flat */
.pf-modal-info-card {
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 4px; padding: 0; overflow: hidden;
}
.pf-info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 18px; border-bottom: 1px solid #e2e8f0;
}
.pf-info-row:last-child { border-bottom: none; }
.pf-info-label { font-size: 0.8rem; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.pf-info-value { font-size: 0.88rem; color: #0f172a; font-weight: 700; }
.pf-badge-green {
  font-size: 10.5px; font-weight: 700; background: #dcfce7; color: #16a34a;
  padding: 2px 10px; border-radius: 2px; text-transform: uppercase; letter-spacing: 0.5px;
}
.pf-badge-blue {
  font-size: 10.5px; font-weight: 700; background: #dbeafe; color: #1d4ed8;
  padding: 2px 10px; border-radius: 2px; text-transform: uppercase; letter-spacing: 0.5px;
}

/* CTA buttons — flat */
.pf-modal-cta-wrap { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.pf-modal-cta-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #2563eb; color: #fff; font-weight: 700; font-size: 0.93rem;
  padding: 13px 20px; border-radius: 4px; text-decoration: none; transition: background 0.2s;
}
.pf-modal-cta-primary:hover { background: #1d4ed8; color: #fff; }
.pf-modal-cta-secondary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #fff; color: #334155; font-weight: 700; font-size: 0.93rem;
  padding: 12px 20px; border-radius: 4px; text-decoration: none;
  border: 1.5px solid #e2e8f0; transition: border-color 0.2s, color 0.2s;
}
.pf-modal-cta-secondary:hover { border-color: #2563eb; color: #2563eb; }

/* =====================================================
   PORTFOLIO PAGE — NEW LAYOUT PIECES
   ===================================================== */

/* Hero */
.pf-hero {
  background: linear-gradient(135deg, #060d26 0%, #0d1b4b 60%, #1e3a8a 100%);
  padding: 92px 0 82px; position: relative; overflow: hidden;
}
.pf-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.pf-hero::before {
  content: ''; position: absolute;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 65%);
  top: -140px; right: -120px; pointer-events: none;
}
.pf-hero::after {
  content: ''; position: absolute;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 65%);
  bottom: -100px; left: -70px; pointer-events: none;
}
.pf-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px; padding: 7px 20px;
  color: rgba(255,255,255,0.85); font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.pf-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900;
  color: #fff; line-height: 1.15; letter-spacing: -1.5px; margin-bottom: 16px;
}
.pf-hero-title span {
  background: linear-gradient(135deg, #60a5fa, #93c5fd, #bfdbfe);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pf-hero-sub {
  color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.75;
  max-width: 520px; margin: 0 auto 24px;
}
.pf-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.pf-breadcrumb .breadcrumb-item a:hover { color: #93c5fd; }
.pf-breadcrumb .breadcrumb-item.active,
.pf-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* Stats Strip */
.pf-stats-strip {
  background: #fff; position: relative; z-index: 5;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.pf-stats-row { display: flex; align-items: stretch; }
.pf-stat-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 24px 16px; gap: 4px; text-align: center;
}
.pf-stat-item strong {
  font-size: 1.85rem; font-weight: 900; color: #1e3a8a;
  letter-spacing: -1px; line-height: 1;
}
.pf-stat-item span { font-size: 10.5px; color: #64748b; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; }
.pf-stat-div { width: 1px; background: #e2e8f0; align-self: stretch; margin: 14px 0; }

/* Main section */
.pf-main-sec { padding: 76px 0 96px; background: #f8fafc; }

/* Filter header area */
.pf-filter-header { margin-bottom: 52px; text-align: center; }

/* Portfolio grid */
.pf-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.pf-grid-item { transition: opacity 0.35s ease, transform 0.35s ease; }

/* Placeholder uses CSS variable for hue */
.pf-card-placeholder {
  background: linear-gradient(135deg,
    hsl(var(--hue,220), 65%, 18%) 0%,
    hsl(var(--hue,220), 75%, 38%) 100%);
}

/* Tech strip at card bottom */
.pf-card-tech-strip {
  padding: 10px 18px 14px; display: flex; flex-wrap: wrap; gap: 5px;
  border-top: 1px solid #f1f5f9;
}
.pf-card-tech-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2px;
  background: #eff6ff; color: #2563eb; border-radius: 4px; padding: 3px 9px;
}
.pf-card-tech-more {
  font-size: 10px; font-weight: 700;
  background: #f1f5f9; color: #64748b; border-radius: 4px; padding: 3px 8px;
}

/* Empty state */
.pf-empty { text-align: center; padding: 90px 20px; }
.pf-empty-icon {
  width: 80px; height: 80px; border-radius: 20px; margin: 0 auto 24px;
  background: #eff6ff; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #93c5fd;
}
.pf-empty h4 { font-size: 1.25rem; font-weight: 800; color: #334155; margin-bottom: 8px; }
.pf-empty p { color: #94a3b8; font-size: 0.92rem; }

/* Modal layout 2-col */
.pf-modal .modal-dialog { max-width: 960px; }
.pf-modal-layout { display: grid; grid-template-columns: 360px 1fr; gap: 36px; }
.pf-modal-img-wrap { border-radius: 12px; overflow: hidden; margin-bottom: 22px; }
.pf-modal-img { width: 100%; height: 240px; object-fit: cover; display: block; }
.pf-modal-img-placeholder {
  width: 100%; height: 240px; border-radius: 12px;
  background: linear-gradient(135deg,
    hsl(var(--hue,220), 65%, 18%) 0%,
    hsl(var(--hue,220), 75%, 38%) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: rgba(255,255,255,0.18); margin-bottom: 22px;
}

/* CTA Section */
.pf-cta-sec {
  position: relative; overflow: hidden;
  padding: 96px 0 104px;
  background: linear-gradient(135deg, #060d26 0%, #0d1b4b 60%, #1e3a8a 100%);
}
.pf-cta-sec-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
}
.pf-cta-glow-a {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: #3b82f6; opacity: 0.13; filter: blur(80px);
  top: -160px; right: -120px; pointer-events: none;
}
.pf-cta-glow-b {
  position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: #10b981; opacity: 0.08; filter: blur(60px);
  bottom: -100px; left: -90px; pointer-events: none;
}
.pf-cta-inner { position: relative; z-index: 2; }
.pf-cta-icon {
  width: 76px; height: 76px; border-radius: 22px;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 30px; color: #fff; margin: 0 auto 24px;
}
.pf-cta-title {
  font-size: clamp(1.75rem, 4vw, 2.7rem); font-weight: 900;
  color: #fff; margin-bottom: 14px; letter-spacing: -1px;
}
.pf-cta-sub {
  color: rgba(255,255,255,0.62); font-size: 1.02rem; line-height: 1.75;
  max-width: 480px; margin: 0 auto 38px;
}
.pf-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.pf-cta-btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.88);
  font-weight: 700; font-size: 0.97rem;
  padding: 14px 36px; border-radius: 100px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.22); transition: all 0.3s;
}
.pf-cta-btn-outline:hover {
  background: rgba(255,255,255,0.16); color: #fff;
  border-color: rgba(255,255,255,0.46);
}

/* ── Portfolio Responsive ── */
@media (max-width: 1199px) { .pf-grid { gap: 20px; } }
@media (max-width: 991px) {
  .pf-hero { padding: 72px 0 62px; }
  .pf-main-sec { padding: 56px 0 72px; }
  .pf-grid { grid-template-columns: repeat(2,1fr); gap: 18px; }
  .pf-modal-layout { grid-template-columns: 1fr; }
  .pf-modal-img, .pf-modal-img-placeholder { height: 220px; }
  .pf-stats-row { flex-wrap: wrap; }
  .pf-stat-item { flex: 0 0 50%; }
  .pf-stat-div:nth-child(4) { display: none; }
  .pf-cta-sec { padding: 72px 0 80px; }
}
@media (max-width: 767px) {
  .pf-hero { padding: 56px 0 50px; }
  .pf-hero-title { font-size: 1.95rem; letter-spacing: -0.8px; }
  .pf-hero-sub { font-size: 0.88rem; }
  .pf-main-sec { padding: 44px 0 56px; }
  .pf-filter-header { margin-bottom: 36px; }
  .pf-grid { grid-template-columns: 1fr; gap: 16px; }
  .pf-stat-div { display: none; }
  .pf-stat-item { flex: 0 0 50%; }
  .pf-modal-inner { padding: 20px 16px 24px; }
  .pf-modal-stats { flex-wrap: wrap; }
  .pf-modal-stat { flex: 0 0 50%; border-right: 1px solid #e2e8f0; }
  .pf-modal-stat:nth-child(even) { border-right: none; }
  .pf-modal-stat:nth-child(n+3) { border-top: 1px solid #e2e8f0; }
  .pf-cta-sec { padding: 60px 0 68px; }
  .pf-cta-title { font-size: 1.6rem; }
  .pf-cta-btns { flex-direction: column; align-items: center; }
  .pf-cta-btn, .pf-cta-btn-outline { width: 100%; max-width: 320px; justify-content: center; }
}
@media (max-width: 575px) {
  .pf-hero { padding: 48px 0 42px; }
  .pf-hero-title { font-size: 1.7rem; }
  .pf-stat-item { flex: 0 0 50%; padding: 18px 12px; }
  .pf-stat-item strong { font-size: 1.5rem; }
  .pf-modal .modal-dialog { margin: 10px; }
  .pf-modal-stat { flex: 0 0 50%; }
  .pf-filter-tabs { border-radius: 14px; }
  .filter-btn { font-size: 0.82rem; padding: 8px 16px; }
}

/* =====================================================
   STATS
   ===================================================== */
.stats-section { position: relative; padding: 100px 0; overflow: hidden; }
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 30%, #dc2626 60%, #ea580c 85%, #f97316 100%);
}
.stats-section::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 50%, rgba(0,0,0,0.12) 0%, transparent 50%);
}
.stats-section .container { position: relative; z-index: 1; }
.stat-card-item {
  text-align: center; padding: 40px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg); backdrop-filter: blur(10px);
  transition: all 0.4s;
}
.stat-card-item:hover { background: rgba(255,255,255,0.18); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.stat-icon { font-size: 2rem; margin-bottom: 16px; }
.stat-num { font-size: clamp(2.5rem,4vw,3.5rem); font-weight: 900; color: #fff; letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.stat-num span { color: #fff; }
.stat-label { color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 600; }

/* Wave separators */
.wave-top, .wave-bottom {
  position: absolute; left: 0; right: 0; height: 80px; z-index: 1;
}
.wave-top    { top: -1px; }
.wave-bottom { bottom: -1px; }
.wave-top    svg { fill: #fffbeb; }
.wave-bottom svg { fill: #ffffff; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-section { padding: 110px 0; background: var(--light-bg); position: relative; overflow: hidden; }
.testimonials-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 10% 50%, rgba(59,130,246,0.05) 0%, transparent 50%),
              radial-gradient(circle at 90% 50%, rgba(245,158,11,0.04) 0%, transparent 50%);
}
.testimonial-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px 32px; height: 100%;
  border: 1px solid rgba(226,232,240,0.8);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-smooth);
  position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: -10px; right: 24px;
  font-size: 7rem; font-weight: 900; line-height: 1;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  opacity: 0.12;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(59,130,246,0.15); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars i { color: var(--accent); font-size: 13px; }
.testimonial-text { color: var(--text-muted); line-height: 1.85; font-size: 0.95rem; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar-wrap {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: var(--gradient); padding: 2px;
}
.testimonial-avatar-inner { width:100%;height:100%;border-radius:50%;overflow:hidden;background:#fff;display:flex;align-items:center;justify-content:center; }
.testimonial-avatar-inner img { width:100%;height:100%;object-fit:cover; }
.testimonial-name { font-weight: 700; color: var(--text); font-size: 0.92rem; }
.testimonial-role { color: var(--text-muted); font-size: 0.8rem; margin-top: 2px; }

/* Swiper overrides */
.swiper-pagination-bullet { background: var(--primary-light); opacity: 0.4; }
.swiper-pagination-bullet-active { opacity: 1; width: 20px; border-radius: 4px; }

/* =====================================================
   TEAM
   ===================================================== */
.team-section { padding: 110px 0; }
.team-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: #fff; border: 1px solid var(--border);
  transition: all 0.45s var(--ease-bounce);
  text-align: center; position: relative;
}
.team-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-10px); border-color: rgba(59,130,246,0.15); }
.team-img-wrap { position: relative; overflow: hidden; height: 280px; }
.team-img { width:100%;height:100%;object-fit:cover;transition:transform 0.5s var(--ease-smooth); }
.team-card:hover .team-img { transform: scale(1.06); }
.team-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,18,50,0.85) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.team-card:hover .team-img-overlay { opacity: 1; }
.team-social {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(20px);
  display: flex; gap: 8px; opacity: 0;
  transition: all 0.4s;
}
.team-card:hover .team-social { opacity: 1; transform: translateX(-50%) translateY(0); }
.team-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: all 0.3s; text-decoration: none;
}
.team-social a:hover { background: var(--accent); color: #0f172a; border-color: transparent; transform: translateY(-3px); }
.team-info { padding: 22px 20px; }
.team-name { font-weight: 800; color: var(--text); font-size: 1rem; margin-bottom: 4px; letter-spacing: -0.3px; }
.team-role { font-size: 0.82rem; font-weight: 600; color: var(--primary-light); letter-spacing: 0.3px; }

/* =====================================================
   BLOG
   ===================================================== */
.blog-section { padding: 110px 0; background: var(--light-bg); }
.blog-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: #fff; border: 1px solid var(--border);
  transition: all 0.4s var(--ease-smooth); height: 100%;
  box-shadow: var(--shadow-sm);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-8px); border-color: rgba(59,130,246,0.12); }
.blog-img-wrap { overflow: hidden; position: relative; height: 220px; }
.blog-img { width:100%;height:100%;object-fit:cover;transition:transform 0.55s var(--ease-smooth); }
.blog-card:hover .blog-img { transform: scale(1.06); }
.blog-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,18,50,0.4) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.blog-card:hover .blog-img-overlay { opacity: 1; }
.blog-body { padding: 24px 26px 28px; }
.blog-cat {
  display: inline-block;
  background: linear-gradient(135deg, rgba(30,58,138,0.08), rgba(59,130,246,0.06));
  color: var(--primary-light); border: 1px solid rgba(59,130,246,0.15);
  padding: 4px 14px; border-radius: 50px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 14px;
}
.blog-title { font-weight: 800; margin-bottom: 10px; color: var(--text); line-height: 1.4; font-size: 1rem; letter-spacing: -0.3px; }
.blog-title a { color: inherit; transition: color 0.3s; }
.blog-title a:hover { color: var(--primary-light); }
.blog-excerpt { color: var(--text-muted); font-size: 0.88rem; line-height: 1.75; margin-bottom: 18px; }
.blog-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); }
.blog-meta { display: flex; gap: 14px; font-size: 12px; color: var(--text-muted); }
.blog-meta i { color: var(--primary-light); }
.blog-read-more {
  font-size: 12px; font-weight: 700; color: var(--primary-light);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.3s;
}
.blog-card:hover .blog-read-more { gap: 8px; }

/* =====================================================
   FAQ
   ===================================================== */
.faq-section { padding: 110px 0; }
.accordion-item { border: 1.5px solid var(--border); border-radius: var(--radius-md) !important; margin-bottom: 12px; overflow: hidden; transition: all 0.3s; }
.accordion-item:hover { border-color: rgba(59,130,246,0.25); box-shadow: var(--shadow-sm); }
.accordion-button { font-weight: 650; color: var(--text); background: #fff; font-size: 0.97rem; padding: 20px 24px; }
.accordion-button:not(.collapsed) { color: var(--primary); background: rgba(30,58,138,0.03); box-shadow: none; }
.accordion-button:focus { box-shadow: none; }
.accordion-button::after { filter: hue-rotate(30deg); }
.accordion-body { padding: 0 24px 22px; color: var(--text-muted); line-height: 1.8; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */

/* ── Page header sub ───────────────────────────────── */
.page-header-sub {
  font-size: 0.92rem; color: rgba(255,255,255,0.65);
  margin-top: 6px; letter-spacing: 0.2px;
}

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE — PREMIUM REDESIGN
   ═══════════════════════════════════════════════════════ */

/* ── Quick contact strip ──────────────────────────────── */
.ct-quick-sec {
  padding: 0;
  margin-top: -36px;
  position: relative;
  z-index: 10;
}
.ct-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ct-quick-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 8px 30px rgba(30,58,138,0.10), 0 2px 8px rgba(0,0,0,0.04);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.22s var(--ease-bounce), box-shadow 0.22s;
  border: 1px solid rgba(226,232,240,0.6);
}
.ct-quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30,58,138,0.14), 0 4px 12px rgba(0,0,0,0.06);
  color: var(--text);
}
.ct-quick-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  background: var(--qcl, #eff6ff);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--qc, #3b82f6);
  transition: transform 0.2s;
}
.ct-quick-card:hover .ct-quick-icon { transform: scale(1.1); }
.ct-quick-body { flex: 1; min-width: 0; }
.ct-quick-lbl { display: block; font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 2px; }
.ct-quick-body strong { display: block; font-size: 0.84rem; font-weight: 700; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; }
.ct-quick-arrow { color: #cbd5e1; font-size: 13px; flex-shrink: 0; transition: color 0.2s, transform 0.2s; }
.ct-quick-card:hover .ct-quick-arrow { color: #3b82f6; transform: translateX(3px); }

/* ── Main layout ─────────────────────────────────────── */
.ct-main-sec { padding: 52px 0 56px; }
.ct-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30,58,138,0.10), 0 4px 16px rgba(0,0,0,0.04);
}

/* ── Dark info panel ─────────────────────────────────── */
.ct-info {
  background: linear-gradient(145deg,#060d26 0%,#0d1b4b 60%,#0f2060 100%);
  position: relative; overflow: hidden; color: #fff;
}
.ct-info-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
}
.ct-info-glow {
  position: absolute; border-radius: 50%;
  filter: blur(70px); pointer-events: none;
}
.ct-glow-a { width: 240px; height: 240px; background: #3b82f6; opacity: 0.15; top: -60px; right: -50px; }
.ct-glow-b { width: 180px; height: 180px; background: #10b981; opacity: 0.10; bottom: 80px; left: -50px; }
.ct-glow-c { width: 120px; height: 120px; background: #f59e0b; opacity: 0.07; bottom: -20px; right: 30px; }
.ct-info-top-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
}
.ct-info-body {
  position: relative; z-index: 2;
  padding: 40px 36px 36px;
  display: flex; flex-direction: column; height: 100%;
}
.ct-info-logo { margin-bottom: 24px; }
.ct-info-head { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; color: #fff; }
.ct-info-sub  { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 28px; line-height: 1.75; }

.ct-info-items { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }
.ct-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: padding-left 0.2s;
}
.ct-info-item:first-child { padding-top: 0; }
.ct-info-item:hover { padding-left: 4px; }
.ct-info-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
  background: rgba(59,130,246,0.18); border: 1px solid rgba(59,130,246,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #60a5fa;
  transition: background 0.2s, border-color 0.2s;
}
.ct-info-item:hover .ct-info-icon { background: rgba(59,130,246,0.3); border-color: rgba(59,130,246,0.5); }
.ct-info-text  { display: flex; flex-direction: column; gap: 3px; }
.ct-info-label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
.ct-info-val   { font-size: 0.84rem; color: rgba(255,255,255,0.82); }
.ct-info-link  { color: rgba(255,255,255,0.82); text-decoration: none; transition: color 0.2s; }
.ct-info-link:hover { color: #93c5fd; }

/* Socials */
.ct-info-socials { display: flex; gap: 8px; margin-bottom: 24px; }
.ct-info-socials a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 13px; text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.ct-info-socials a:hover { background: #3b82f6; border-color: #3b82f6; color: #fff; transform: translateY(-2px); }

/* Trust strip */
.ct-trust-strip {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 12px 0; margin-top: auto;
}
.ct-trust-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.ct-trust-item strong { font-size: 1.05rem; font-weight: 800; color: #fff; }
.ct-trust-item span   { font-size: 10px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }
.ct-trust-div { width: 1px; height: 32px; background: rgba(255,255,255,0.12); }

/* ── Multi-step form panel ────────────────────────────── */
.ct-form-wrap {
  background: #fff;
  padding: 40px 40px 36px;
  border-left: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

/* Stepper */
.ct-stepper {
  display: flex; align-items: flex-start; gap: 0;
  margin-bottom: 30px;
}
.ct-stepper-step {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  flex-shrink: 0;
}
.ct-stepper-dot {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #e2e8f0; background: #f8fafc;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #94a3b8;
  transition: all 0.3s;
}
.ct-stepper-step span {
  font-size: 10px; font-weight: 700; color: #94a3b8;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: color 0.3s;
}
.ct-stepper-step.active .ct-stepper-dot {
  background: #1e3a8a; border-color: #1e3a8a; color: #fff;
  box-shadow: 0 0 0 4px rgba(30,58,138,0.12);
}
.ct-stepper-step.active span { color: #1e3a8a; }
.ct-stepper-step.done .ct-stepper-dot {
  background: #10b981; border-color: #10b981; color: #fff;
}
.ct-stepper-step.done span { color: #10b981; }
.ct-stepper-bar {
  flex: 1; height: 2px; background: #e2e8f0; margin: 15px 8px 0;
  transition: background 0.4s;
}
.ct-stepper-bar.done { background: #10b981; }

/* Step panels */
.ct-panel { display: none; }
.ct-panel.active { display: block; }
.ct-panel-title { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.ct-panel-sub   { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; }

/* Step 2 — two-column detail grid (no Bootstrap gutters) */
.ct-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 4px;
}

/* Service card grid */
.ct-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.ct-svc-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 8px 12px;
  border: 1.5px solid #e2e8f0; border-radius: 10px;
  background: #fafbfc; cursor: pointer;
  transition: all 0.2s;
}
.ct-svc-card:hover {
  border-color: var(--sc, #3b82f6);
  background: color-mix(in srgb, var(--sc, #3b82f6) 6%, white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.ct-svc-card.active {
  border-color: var(--sc, #3b82f6);
  background: color-mix(in srgb, var(--sc, #3b82f6) 10%, white);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--sc, #3b82f6) 20%, transparent);
}
.ct-svc-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: color-mix(in srgb, var(--sc, #3b82f6) 12%, white);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--sc, #3b82f6);
  transition: transform 0.2s;
}
.ct-svc-card:hover .ct-svc-icon,
.ct-svc-card.active .ct-svc-icon { transform: scale(1.12); }
.ct-svc-card span {
  font-size: 10.5px; font-weight: 700; color: var(--text-muted);
  text-align: center; line-height: 1.3;
  transition: color 0.2s;
}
.ct-svc-card:hover span,
.ct-svc-card.active span { color: var(--sc, #3b82f6); }

/* Nav row */
.ct-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px; gap: 12px;
}
.ct-btn-back {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; font-size: 0.84rem; font-weight: 700;
  border: 1.5px solid #e2e8f0; background: transparent; color: var(--text-muted);
  border-radius: 8px; cursor: pointer;
  transition: all 0.18s;
}
.ct-btn-back:hover { border-color: #94a3b8; color: var(--text); }
.ct-btn-next {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 24px; font-size: 0.87rem; font-weight: 700;
  background: var(--gradient); color: #fff;
  border: none; border-radius: 8px; cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(30,58,138,0.25);
}
.ct-btn-next:hover { opacity: 0.9; transform: translateY(-1px); }

/* Inputs */
.ct-field-group { margin-bottom: 0; }
.ct-panel > .ct-field-group { margin-bottom: 14px; }
.ct-label {
  display: block; font-size: 0.79rem; font-weight: 700;
  color: var(--text); margin-bottom: 7px; letter-spacing: 0.1px;
}
.ct-req { color: #ef4444; }
.ct-input-wrap { position: relative; }
.ct-input-icon {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  font-size: 13px; color: #94a3b8; pointer-events: none;
}
.ct-input {
  width: 100%; padding: 10px 14px 10px 38px;
  border: 1.5px solid #e2e8f0; border-radius: 8px; background: #f8fafc;
  font-size: 0.86rem; color: var(--text); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.ct-input:focus {
  border-color: #3b82f6; background: #fff;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.10);
}
.ct-input.ct-input-err { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.08); }
.ct-err { font-size: 11px; color: #ef4444; margin-top: 4px; min-height: 16px; }

/* Budget pills */
.ct-budget-row { display: flex; gap: 6px; flex-wrap: wrap; }
.ct-budget-btn {
  flex: 1 1 calc(50% - 6px);
  padding: 10px 6px;
  border: 1.5px solid #e2e8f0; border-radius: 8px; background: #f8fafc;
  font-size: 11.5px; font-weight: 700; color: var(--text-muted);
  cursor: pointer; text-align: center; transition: all 0.18s;
}
.ct-budget-btn:hover { border-color: #3b82f6; color: #3b82f6; background: #eff6ff; }
.ct-budget-btn.active { background: #1e3a8a; border-color: #1e3a8a; color: #fff; box-shadow: 0 4px 12px rgba(30,58,138,0.2); }

/* Textarea */
.ct-textarea-wrap { position: relative; }
.ct-textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid #e2e8f0; border-radius: 8px;
  background: #f8fafc; font-size: 0.86rem; color: var(--text);
  resize: vertical; min-height: 130px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.ct-textarea:focus { border-color: #3b82f6; background: #fff; box-shadow: 0 0 0 3px rgba(59,130,246,0.10); }
.ct-textarea.ct-input-err { border-color: #ef4444; }
.ct-char-count { position: absolute; bottom: 9px; right: 12px; font-size: 10px; color: #94a3b8; }
.ct-char-warn  { color: #f59e0b !important; }

/* Privacy + submit row */
.ct-privacy-note {
  font-size: 11px; color: #94a3b8; display: flex; align-items: center; gap: 6px;
  margin: 0 0 16px;
}
.ct-privacy-note i { color: #10b981; }
.ct-submit-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient); color: #fff;
  border: none; border-radius: 8px; font-size: 0.9rem; font-weight: 700;
  padding: 12px 30px; cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 18px rgba(30,58,138,0.28);
}
.ct-submit-btn:hover:not(:disabled) { opacity: 0.9; transform: translateY(-2px); }
.ct-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }

/* Alerts */
.ct-alert {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; margin-bottom: 20px;
  border-left: 4px solid; border-radius: 8px;
}
.ct-alert i { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.ct-alert div strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.ct-alert div p { margin: 0; font-size: 0.83rem; }
.ct-alert-success { background: #f0fdf4; border-color: #22c55e; color: #15803d; }
.ct-alert-success i { color: #22c55e; }
.ct-alert-error   { background: #fef2f2; border-color: #ef4444; color: #b91c1c; }
.ct-alert-error i { color: #ef4444; }

/* ── Process section ─────────────────────────────────── */
.ct-process-sec {
  padding: 72px 0 80px;
  background: #f8fafc;
  position: relative; overflow: hidden;
}
.ct-process-heading { font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 800; color: var(--text); }
.ct-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.ct-process-grid::before {
  content: '';
  position: absolute; top: 28px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px; background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b, #ef4444);
  z-index: 0;
}
.ct-process-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 20px;
  position: relative; z-index: 1;
}
.ct-process-num {
  font-size: 10px; font-weight: 900; color: #cbd5e1; letter-spacing: 1px;
  margin-bottom: 10px; font-family: 'Space Grotesk', sans-serif;
}
.ct-process-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: color-mix(in srgb, var(--pc, #3b82f6) 12%, white);
  border: 3px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--pc, #3b82f6);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-bottom: 16px;
  transition: transform 0.25s var(--ease-bounce);
}
.ct-process-card:hover .ct-process-icon { transform: scale(1.12); }
.ct-process-card h6 {
  font-size: 0.88rem; font-weight: 800; color: var(--text);
  margin-bottom: 8px;
}
.ct-process-card p {
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; margin: 0;
}

/* ── Trust band ─────────────────────────────────────── */
.ct-trust-sec { padding: 0 0 56px; }
.ct-trust-band {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid #e2e8f0; border-radius: 14px;
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.ct-trust-block {
  display: flex; align-items: center; gap: 14px;
  padding: 24px 20px; border-right: 1px solid #e2e8f0;
  background: #fff;
  transition: background 0.2s;
}
.ct-trust-block:hover { background: #f8fafc; }
.ct-trust-block:last-child { border-right: none; }
.ct-trust-icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.ct-trust-txt { display: flex; flex-direction: column; gap: 2px; }
.ct-trust-txt strong { font-size: 0.88rem; font-weight: 800; color: var(--text); }
.ct-trust-txt span   { font-size: 0.78rem; color: var(--text-muted); }

/* ── FAQ ─────────────────────────────────────────────── */
.ct-faq-sec { padding: 60px 0 72px; }
.ct-faq-title { font-size: 1.7rem; font-weight: 800; color: var(--text); }
.ct-faq-intro { font-size: 0.87rem; color: var(--text-muted); line-height: 1.75; }
.ct-faq-link  { color: #3b82f6; text-decoration: none; font-weight: 600; }
.ct-faq-link:hover { text-decoration: underline; }
.ct-faq-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient); color: #fff;
  padding: 10px 22px; font-size: 0.85rem; font-weight: 700;
  border-radius: 8px; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(30,58,138,0.22);
}
.ct-faq-cta:hover { color: #fff; opacity: 0.9; transform: translateY(-1px); }

.ct-faq-list { display: flex; flex-direction: column; }
.ct-faq-item { border-bottom: 1px solid #e2e8f0; }
.ct-faq-item:first-child { border-top: 1px solid #e2e8f0; }
.ct-faq-q {
  width: 100%; display: flex; align-items: center; gap: 14px;
  padding: 18px 0; background: none; border: none; cursor: pointer;
  text-align: left; transition: color 0.2s;
}
.ct-faq-q:hover { color: #3b82f6; }
.ct-faq-num {
  font-size: 11px; font-weight: 900; color: #3b82f6;
  font-family: 'Space Grotesk', sans-serif;
  background: #eff6ff; border-radius: 6px;
  padding: 3px 7px; flex-shrink: 0;
  letter-spacing: 0.3px;
}
.ct-faq-q span:not(.ct-faq-num) { flex: 1; font-size: 0.9rem; font-weight: 700; color: var(--text); transition: color 0.2s; }
.ct-faq-q:hover span:not(.ct-faq-num) { color: #3b82f6; }
.ct-faq-icon { font-size: 11px; flex-shrink: 0; transition: transform 0.25s; color: #94a3b8; }
.ct-faq-item.open .ct-faq-icon { transform: rotate(45deg); color: #3b82f6; }
.ct-faq-a {
  display: none; font-size: 0.84rem; color: var(--text-muted);
  line-height: 1.8; padding: 0 0 18px 48px;
}

/* ── Map ─────────────────────────────────────────────── */
.ct-map-sec { padding: 0 0 72px; }
.ct-map-wrap {
  position: relative; border-radius: 16px;
  border: 1px solid #e2e8f0; overflow: hidden;
  box-shadow: 0 12px 40px rgba(30,58,138,0.10), 0 2px 8px rgba(0,0,0,0.04);
}
.ct-map-card {
  position: absolute; top: 20px; left: 20px; z-index: 10;
  background: #fff; border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 14px 18px; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  max-width: calc(100% - 40px);
}
.ct-map-pin-wrap {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
}
.ct-map-card-text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.ct-map-card-text strong { font-size: 0.85rem; font-weight: 800; color: var(--text); }
.ct-map-card-text span   { font-size: 0.78rem; color: var(--text-muted); }
.ct-map-dir {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; color: #3b82f6;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  padding: 7px 14px; border: 1.5px solid #bfdbfe; border-radius: 7px;
  background: #eff6ff; transition: all 0.2s;
}
.ct-map-dir:hover { background: #3b82f6; color: #fff; border-color: #3b82f6; }

/* =====================================================
   WHY CHOOSE US — REDESIGNED
   ===================================================== */
.wcu-section {
  padding: 70px 0 75px;
  background: #f8fafc;
  position: relative; overflow: hidden;
}

/* Eyebrow */
.wcu-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.wcu-eyebrow-line { display: block; width: 40px; height: 1.5px; background: linear-gradient(90deg, transparent, #2563eb); }
.wcu-eyebrow-line-r { background: linear-gradient(90deg, #2563eb, transparent); }
.wcu-eyebrow-text {
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: #1d4ed8; display: flex; align-items: center; gap: 6px;
  background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 100px; padding: 5px 14px;
}

/* Title */
.wcu-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 900;
  line-height: 1.15; color: #0f172a; letter-spacing: -1.4px; margin-bottom: 12px;
}
.wcu-highlight {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.wcu-desc { font-size: 0.95rem; line-height: 1.75; color: #64748b; margin-bottom: 22px; max-width: 460px; }

/* Compact feature list */
.wcu-list { display: flex; flex-direction: column; }
.wcu-list-item {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 0; border-bottom: 1px solid #e2e8f0;
}
.wcu-list-item:last-child { border-bottom: none; }
.wcu-list-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.wcu-list-body { display: flex; flex-direction: column; }
.wcu-list-body strong { font-size: 0.9rem; font-weight: 750; color: #0f172a; margin-bottom: 1px; }
.wcu-list-body span   { font-size: 0.82rem; color: #94a3b8; line-height: 1.4; }

/* Comparison card */
.wcu-compare-card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
  overflow: hidden; margin-bottom: 12px;
}
.wcu-compare-head {
  background: #0f172a; padding: 13px 18px;
}
.wcu-compare-title {
  font-size: 12px; font-weight: 800; letter-spacing: 0.5px;
  color: #fff; text-transform: uppercase;
}
.wcu-compare-labels {
  display: grid; grid-template-columns: 1fr 110px 110px;
  padding: 8px 18px; background: #f8fafc; border-bottom: 1px solid #e2e8f0;
}
.wcu-compare-label {
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; text-align: center; padding: 4px 0;
}
.wcu-label-us   { color: #1d4ed8; background: #eff6ff; border-radius: 4px; }
.wcu-label-them { color: #94a3b8; }
.wcu-compare-row {
  display: grid; grid-template-columns: 1fr 110px 110px;
  align-items: center; padding: 10px 18px;
  border-bottom: 1px solid #f1f5f9; transition: background 0.2s;
}
.wcu-compare-row:last-child { border-bottom: none; }
.wcu-compare-row:hover { background: #f8fafc; }
.wcu-compare-feature {
  font-size: 0.86rem; font-weight: 600; color: #334155;
  display: flex; align-items: center; gap: 8px;
}
.wcu-compare-feature i { color: #94a3b8; font-size: 12px; width: 14px; }
.wcu-compare-val {
  font-size: 0.86rem; font-weight: 700; text-align: center;
}
.wcu-val-us   { color: #1d4ed8; }
.wcu-val-us .fa-check { color: #16a34a; }
.wcu-val-them { color: #cbd5e1; }
.wcu-val-them .fa-times { color: #fca5a5; }

/* Mini stat pills */
.wcu-stat-pills { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.wcu-stat-pill {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
  padding: 12px 8px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px;
  transition: all 0.25s;
}
.wcu-stat-pill:hover { border-color: #bfdbfe; transform: translateY(-2px); }
.wcu-stat-pill i { font-size: 15px; color: #2563eb; }
.wcu-stat-pill strong { font-size: 1rem; font-weight: 800; color: #0f172a; letter-spacing: -0.5px; line-height: 1; }
.wcu-stat-pill span   { font-size: 10px; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; }
.wcu-stat-pill-dark { background: #0f172a; border-color: #0f172a; }
.wcu-stat-pill-dark i      { color: #f59e0b; }
.wcu-stat-pill-dark strong { color: #fff; }
.wcu-stat-pill-dark span   { color: rgba(255,255,255,0.4); }
.wcu-stat-pill-dark:hover  { border-color: #1e3a8a; }

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  position: relative; padding: 100px 0; overflow: hidden;
  background: linear-gradient(135deg, #0a0f2e 0%, #0d1b4b 50%, #1a3a8f 100%);
}
.cta-section::before { content:'';position:absolute;inset:0;background:var(--gradient-mesh);opacity:0.5; }
.cta-section .container { position: relative; z-index: 1; }
.cta-title { font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: #fff; letter-spacing: -1.5px; margin-bottom: 16px; line-height: 1.1; }
.cta-title .gradient-text { background: linear-gradient(135deg,var(--accent-light),var(--accent)); -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.cta-sub { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.8; }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: #070c1a; color: rgba(255,255,255,0.6);
  padding: 80px 0 0; position: relative;
}
footer::before { content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(59,130,246,0.3),rgba(245,158,11,0.3),transparent); }
.footer-brand { font-size: 1.55rem; font-weight: 900; color: #fff; margin-bottom: 16px; letter-spacing: -0.5px; }
.footer-brand span { color: var(--accent); }
.footer-logo-wrap { display: inline-block; margin-bottom: 20px; }
.footer-logo-img {
  height: 52px; width: auto; display: block;
  filter: brightness(0) invert(1);   /* renders logo white on dark footer */
  opacity: 0.92;
  transition: opacity 0.25s;
}
.footer-logo-wrap:hover .footer-logo-img { opacity: 1; }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.9; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55); display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: all 0.3s;
}
.footer-social a:hover { background: var(--accent); color: #0f172a; border-color: transparent; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(245,158,11,0.35); }
.footer-heading { color: #fff; font-weight: 700; font-size: 0.9rem; margin-bottom: 20px; letter-spacing: 0.5px; position: relative; padding-bottom: 12px; }
.footer-heading::after { content:'';position:absolute;bottom:0;left:0;width:24px;height:2px;background:linear-gradient(90deg,var(--accent),transparent); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.45); font-size: 0.88rem; transition: all 0.3s;
  display: flex; align-items: center; gap: 8px;
}
.footer-links a::before { content:'›'; color: var(--accent); opacity: 0.7; transition: opacity 0.3s; }
.footer-links a:hover { color: rgba(255,255,255,0.9); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.87rem; color: rgba(255,255,255,0.5); }
.footer-contact-item i { color: var(--accent); margin-top: 2px; flex-shrink: 0; font-size: 13px; }
.footer-contact-item a { color: inherit; transition: color 0.3s; }
.footer-contact-item a:hover { color: rgba(255,255,255,0.9); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 60px 0 0; }
.footer-bottom {
  padding: 22px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.83rem; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color 0.3s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* =====================================================
   PAGE HEADER (inner pages)
   ===================================================== */
.page-header {
  background: linear-gradient(135deg, #0a0f2e 0%, #0d1b4b 50%, #1a3a8f 100%);
  padding: 170px 0 90px; position: relative; overflow: hidden;
}
.page-header::before { content:'';position:absolute;inset:0;background:var(--gradient-mesh);opacity:0.5; }
.page-header::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 70px;
  background: #fff; clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: #fff; font-weight: 900; font-size: clamp(2rem,4vw,3rem); letter-spacing: -1px; }
.breadcrumb-item { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.breadcrumb-item.active { color: var(--accent); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }
.breadcrumb-item a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.breadcrumb-item a:hover { color: rgba(255,255,255,0.9); }

/* =====================================================
   BACK TO TOP
   ===================================================== */
#backToTop {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; border-radius: 14px;
  display: none; align-items: center; justify-content: center;
  cursor: pointer; z-index: 999;
  box-shadow: 0 8px 25px rgba(30,58,138,0.4);
  transition: all 0.35s var(--ease-bounce);
  border: 1px solid rgba(255,255,255,0.15);
}
#backToTop:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(30,58,138,0.5); }
#backToTop.show { display: flex; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn { font-weight: 600; border-radius: var(--radius-sm); transition: all 0.3s var(--ease-bounce); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-light)); border: none; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(30,58,138,0.4); }
.btn-outline-primary { border: 2px solid var(--primary-light); color: var(--primary-light); font-weight: 650; background: transparent; }
.btn-outline-primary:hover { background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-color: transparent; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(30,58,138,0.3); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.3); color: #fff; background: rgba(255,255,255,0.06); backdrop-filter: blur(10px); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

/* =====================================================
   ABOUT PAGE — EXTRAS
   ===================================================== */
.about-img-wrap { position: relative; }
.about-img-main { border-radius: var(--radius-xl); width: 100%; box-shadow: var(--shadow-xl); }
.about-float-card {
  position: absolute; bottom: -24px; right: -24px;
  background: #fff; border-radius: var(--radius-md); padding: 20px 26px;
  box-shadow: var(--shadow-lg); text-align: center;
  border: 1px solid var(--border);
}
.about-float-card h3 { font-size: 2.2rem; font-weight: 900; color: var(--primary); letter-spacing: -1px; line-height: 1; }
.about-float-card p { color: var(--text-muted); font-size: 0.8rem; margin: 4px 0 0; }
.check-list { list-style: none; padding: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--text); font-size: 0.93rem;
}
.check-list li:last-child { border-bottom: none; }
.check-list .icon { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: rgba(16,185,129,0.12); color: #10b981; display: flex; align-items: center; justify-content: center; font-size: 12px; margin-top: 1px; }

/* Process steps */
.process-step { text-align: center; position: relative; padding: 0 10px; }
.process-step::after { content:''; position:absolute; top:40px; right:-50%; width:100%; height:2px; background:linear-gradient(90deg,rgba(59,130,246,0.3),transparent); pointer-events:none; }
.process-step:last-child::after { display: none; }
.step-num { width: 80px; height: 80px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 900; color: #fff; margin: 0 auto 20px; box-shadow: 0 12px 35px rgba(30,58,138,0.35); }
.process-step h5 { font-weight: 750; color: var(--text); margin-bottom: 8px; font-size: 0.95rem; }
.process-step p  { color: var(--text-muted); font-size: 0.83rem; line-height: 1.7; }

/* =====================================================
   UTILITIES
   ===================================================== */
.text-gradient { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-primary  { color: var(--primary-light) !important; }
.bg-primary    { background: var(--gradient) !important; }
.glass { background: rgba(255,255,255,0.1); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15); }
.shadow-glow-blue { box-shadow: 0 0 40px rgba(59,130,246,0.25); }

/* (legacy responsive rules merged into main responsive block below) */

/* ═══════════════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════════════ */

/* Shared heading */
.sv-head { margin-bottom: 36px; }
.sv-main-title { font-size: 2rem; font-weight: 900; color: var(--text); letter-spacing: -0.8px; line-height: 1.2; }

/* ── Service card grid ─────────────────────────────── */
.sv-grid-sec { padding: 60px 0 52px; }

.svc-card {
  background: #fff; border: 1px solid #e2e8f0;
  display: flex; flex-direction: column;
  height: 100%; overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.svc-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); transform: translateY(-4px); }

/* Dark visual header */
.svc-card-visual {
  position: relative; height: 168px; overflow: hidden;
  background: linear-gradient(145deg,#060d26 0%,#0d1b4b 60%,#0f2060 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-card-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 24px 24px;
}
.svc-card-glow {
  position: absolute; width: 130px; height: 130px;
  border-radius: 50%; filter: blur(55px); opacity: 0.2;
  top: -30px; right: -20px; pointer-events: none;
}
.svc-card-wm {
  position: absolute; bottom: 4px; left: 14px;
  font-size: 4.5rem; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,0.05); letter-spacing: -4px;
  font-family: 'Space Grotesk', sans-serif; pointer-events: none;
}
.svc-card-top-bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; }

/* Rings + icon */
.svc-card-icon-ring {
  position: relative; width: 100px; height: 100px;
  display: flex; align-items: center; justify-content: center;
}
.svc-card-ring {
  position: absolute; border-radius: 50%; border: 1px solid;
}
.svc-r1 { width: 80px;  height: 80px; }
.svc-r2 { width: 100px; height: 100px; }
.svc-card-icon-box {
  width: 52px; height: 52px; border: 1.5px solid;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; position: relative; z-index: 2;
}

/* White body */
.svc-card-body {
  padding: 22px 22px 20px;
  display: flex; flex-direction: column; flex: 1;
}
.svc-card-title {
  font-size: 1rem; font-weight: 800; color: var(--text);
  margin-bottom: 8px; letter-spacing: -0.2px;
  border-left: 3px solid var(--cc, #3b82f6); padding-left: 10px;
}
.svc-card-desc {
  font-size: 0.83rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 14px; flex: 1;
  padding-left: 13px;
}

/* Feature tags */
.svc-card-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px;
}
.svc-card-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 600;
  padding: 4px 9px; border: 1px solid;
  background: #fafbfc;
}
.svc-card-tag i { font-size: 8px; flex-shrink: 0; }

/* CTA row */
.svc-card-cta {
  display: flex; align-items: center; justify-content: space-between;
  text-decoration: none; margin-top: auto;
  border-top: 1px solid #f1f5f9; padding-top: 14px;
  color: var(--text); font-size: 0.83rem; font-weight: 700;
  transition: color 0.2s;
}
.svc-card-cta:hover { color: var(--cc, #3b82f6); }
.svc-card-cta-arrow {
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px;
  transition: transform 0.2s;
}
.svc-card-cta:hover .svc-card-cta-arrow { transform: translateX(3px); }

/* ── Detailed service rows (rich redesign) ─────────── */
.sv-detail-sec { padding: 0 0 60px; background: #f8fafc; }

.svd-row {
  display: grid; grid-template-columns: 5fr 7fr; gap: 0;
  align-items: stretch; background: #fff;
  border: 1px solid #e2e8f0;
}
.svd-row--flip { grid-template-columns: 7fr 5fr; }
.svd-row--flip .svd-visual { order: 2; }
.svd-row--flip .svd-body   { order: 1; border-left: none; border-right: 3px solid var(--dc,#3b82f6); }

/* Visual panel */
.svd-visual {
  position: relative; min-height: 340px; overflow: hidden;
  background: linear-gradient(145deg,#060d26 0%,#0d1b4b 55%,#112060 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.svd-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.svd-glow {
  position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none;
}
.svd-glow-a { width: 200px; height: 200px; opacity: 0.18; top: -40px; right: -20px; }
.svd-glow-b { width: 140px; height: 140px; background: #6366f1; opacity: 0.1; bottom: 10px; left: -20px; }

.svd-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* Rings + icon */
.svd-icon-wrap {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 160px; height: 160px; flex-shrink: 0;
}
.svd-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.06);
}
.svd-ring-1 { width: 130px; height: 130px; }
.svd-ring-2 { width: 160px; height: 160px; }
.svd-ring-3 { width: 200px; height: 200px; border-color: rgba(255,255,255,0.03); }
.svd-icon-box {
  width: 80px; height: 80px; border: 1.5px solid;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; position: relative; z-index: 2;
}

/* Feature chips at bottom */
.svd-chips {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(5,13,38,0.92), transparent);
}
.svd-chip {
  font-size: 10px; font-weight: 600; letter-spacing: 0.3px;
  padding: 4px 10px; border: 1px solid;
  background: rgba(255,255,255,0.04);
}

/* Watermark number */
.svd-wm {
  position: absolute; top: 12px; left: 18px;
  font-size: 5rem; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,0.05); letter-spacing: -4px;
  font-family: 'Space Grotesk', sans-serif; pointer-events: none;
}
.svd-top-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; }

/* Text / body panel */
.svd-body {
  padding: 40px 44px; background: #fff;
  border-left: 3px solid var(--dc,#3b82f6);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.svd-body-num {
  position: absolute; top: -10px; right: 24px;
  font-size: 7rem; font-weight: 900; line-height: 1;
  color: #f8fafc; letter-spacing: -5px;
  font-family: 'Space Grotesk', sans-serif; pointer-events: none;
  user-select: none;
}
.svd-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 10px;
}
.svd-title {
  font-size: 1.5rem; font-weight: 900; color: var(--text);
  letter-spacing: -0.6px; line-height: 1.2; margin-bottom: 10px;
  position: relative; z-index: 1;
}
.svd-rule { height: 3px; width: 48px; margin-bottom: 14px; }
.svd-desc {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.85;
  margin-bottom: 20px; position: relative; z-index: 1;
}

/* 2-col feature grid */
.svd-feat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px;
  margin-bottom: 24px; position: relative; z-index: 1;
}
.svd-feat {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
}
.svd-feat i { font-size: 11px; flex-shrink: 0; }

.svd-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--dc,#3b82f6); color: #fff;
  padding: 11px 26px; font-size: 0.85rem; font-weight: 700;
  text-decoration: none; align-self: flex-start;
  transition: opacity 0.2s, transform 0.2s;
  position: relative; z-index: 1;
}
.svd-btn:hover { opacity: 0.88; color: #fff; transform: translateX(3px); }

.svd-sep { height: 1px; background: #f1f5f9; margin: 2px 0; }

/* Detail rows responsive */
@media (max-width: 991px) {
  .svd-row, .svd-row--flip { grid-template-columns: 1fr; }
  .svd-row--flip .svd-visual { order: 0; }
  .svd-row--flip .svd-body   { order: 0; border-right: none; border-left: 3px solid var(--dc,#3b82f6); border-top: none; }
  .svd-visual { min-height: 260px; }
  .svd-body { border-left: none; border-top: 3px solid var(--dc,#3b82f6); padding: 28px 28px 32px; }
  .svd-body-num { font-size: 5rem; }
}
@media (max-width: 767px) {
  .svd-body { padding: 22px 18px 26px; }
  .svd-title { font-size: 1.25rem; }
  .svd-feat-grid { grid-template-columns: 1fr; gap: 7px; }
  .svd-visual { min-height: 220px; }
  .svd-icon-box { width: 64px; height: 64px; font-size: 1.6rem; }
  .svd-ring-1 { width: 100px; height: 100px; }
  .svd-ring-2 { width: 128px; height: 128px; }
  .svd-ring-3 { width: 160px; height: 160px; }
  .svd-chip { font-size: 9px; padding: 3px 8px; }
}

/* ── Process steps ─────────────────────────────────── */
.sv-process-sec { padding: 56px 0; }
.sv-process-track {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 0;
  position: relative;
}
.sv-step {
  padding: 24px 16px; text-align: center; position: relative;
  border-right: 1px solid #f1f5f9;
}
.sv-step:last-child { border-right: none; }
.sv-step-icon {
  width: 52px; height: 52px; border-radius: 0;
  border: 1.5px solid; display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin: 0 auto 10px;
}
.sv-step-num {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 8px; opacity: 0.8;
}
.sv-step-title { font-size: 0.88rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.sv-step-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.sv-step-connector { display: none; }

/* ── Tech stack ────────────────────────────────────── */
.sv-tech-sec { padding: 52px 0; background: #f8fafc; }
.sv-tech-grid {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: 8px;
}
.sv-tech-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; background: #fff;
  border: 1px solid #e2e8f0;
  font-size: 0.83rem; font-weight: 600; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sv-tech-chip:hover { border-color: #3b82f6; box-shadow: 0 2px 12px rgba(59,130,246,0.1); }
.sv-tech-chip i { font-size: 16px; }

/* ── CTA band ──────────────────────────────────────── */
.sv-cta { padding: 0; background: #0f172a; }
.sv-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; padding: 44px 0;
  border-top: 3px solid #1e3a8a;
}
.sv-cta-title { font-size: 1.6rem; font-weight: 900; color: #fff; letter-spacing: -0.5px; margin-bottom: 6px; }
.sv-cta-sub { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin: 0; }
.sv-cta-actions { display: flex; gap: 10px; flex-shrink: 0; }
.sv-cta-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #f59e0b; color: #0f172a; font-weight: 700; font-size: 0.88rem;
  padding: 12px 26px; text-decoration: none;
  transition: background 0.2s;
}
.sv-cta-btn-primary:hover { background: #fbbf24; color: #0f172a; }
.sv-cta-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7);
  font-weight: 600; font-size: 0.88rem; padding: 12px 22px;
  text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.sv-cta-btn-outline:hover { border-color: #fff; color: #fff; }

/* ── Services responsive ───────────────────────────── */
@media (max-width: 1199px) {
  .sv-process-track { grid-template-columns: repeat(3,1fr); }
  .sv-step { border-bottom: 1px solid #f1f5f9; }
  .sv-step:nth-child(3) { border-right: none; }
}
@media (max-width: 991px) {
  .sv-grid-sec { padding: 48px 0 40px; }
  .sv-detail-sec { padding-bottom: 44px; }
  .sv-process-sec, .sv-tech-sec { padding: 44px 0; }
  /* svd-row responsive handled in its own block */
  .sv-cta-inner { flex-direction: column; text-align: center; padding: 36px 0; }
  .sv-cta-actions { width: 100%; justify-content: center; }
}
@media (max-width: 991px) {
  .svc-card-visual { height: 148px; }
}
@media (max-width: 767px) {
  .sv-grid-sec { padding: 38px 0 32px; }
  .sv-main-title { font-size: 1.65rem; }
  .svc-card-visual { height: 138px; }
  .svc-card-icon-ring { width: 84px; height: 84px; }
  .svc-r1 { width: 66px; height: 66px; }
  .svc-r2 { width: 84px; height: 84px; }
  .svc-card-icon-box { width: 44px; height: 44px; font-size: 1.15rem; }
  .svc-card-body { padding: 18px 18px 16px; }
  .sv-process-track { grid-template-columns: 1fr 1fr; }
  .sv-step:nth-child(3) { border-right: 1px solid #f1f5f9; }
  .sv-step:nth-child(even) { border-right: none; }
  .sv-detail-body { padding: 22px 20px; }
  .sv-detail-title { font-size: 1.2rem; }
  .sv-cta-title { font-size: 1.35rem; }
  .sv-cta-btn-primary, .sv-cta-btn-outline { flex: 1; justify-content: center; }
}
@media (max-width: 575px) {
  .sv-process-track { grid-template-columns: 1fr; }
  .sv-step { border-right: none; }
}

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════ */

/* ── Intro section ────────────────────────────────────── */
.ab-intro { padding: 44px 0 40px; }

/* Visual card */
.ab-visual {
  position: relative; height: 340px;
  background: linear-gradient(135deg,#050d2e 0%,#0d1b4b 60%,#1a3a8f 100%);
  overflow: hidden;
  border-top: 3px solid #3b82f6;
}
.ab-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.ab-glow {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none;
}
.ab-glow-1 { width: 220px; height: 220px; background: rgba(59,130,246,0.18); top: -40px; right: -40px; }
.ab-glow-2 { width: 160px; height: 160px; background: rgba(99,102,241,0.14); bottom: 0; left: 20px; }
.ab-visual-body {
  position: relative; z-index: 2;
  height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 32px;
  text-align: center;
}
.ab-logo-mark { margin-bottom: 14px; }
.ab-tagline { color: rgba(255,255,255,0.5); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.4px; margin-bottom: 28px; }
.ab-metrics { display: flex; align-items: center; gap: 0; }
.ab-metric { text-align: center; padding: 0 22px; }
.ab-metric strong { display: block; font-size: 1.6rem; font-weight: 900; color: #fff; letter-spacing: -1px; line-height: 1; }
.ab-metric span  { display: block; font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.ab-metric-div   { width: 1px; height: 36px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* Experience badge */
.ab-badge {
  position: absolute; bottom: 20px; right: 20px; z-index: 3;
  background: #f59e0b; padding: 12px 16px;
  display: flex; flex-direction: column; align-items: center; line-height: 1;
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}
.ab-badge-num { font-size: 1.5rem; font-weight: 900; color: #0f172a; }
.ab-badge-num sup { font-size: 0.9rem; vertical-align: super; }
.ab-badge-lbl { font-size: 9px; font-weight: 700; color: #0f172a; letter-spacing: 0.5px; text-align: center; margin-top: 3px; text-transform: uppercase; }

/* Corner accents */
.ab-corner { position: absolute; width: 18px; height: 18px; z-index: 3; }
.ab-corner-tl { top: 0; left: 0; border-top: 2px solid #f59e0b; border-left: 2px solid #f59e0b; }
.ab-corner-br { bottom: 0; right: 0; border-bottom: 2px solid rgba(255,255,255,0.15); border-right: 2px solid rgba(255,255,255,0.15); }

/* Text side */
.ab-heading { font-size: 2.1rem; font-weight: 900; color: var(--text); letter-spacing: -1px; line-height: 1.2; }
.ab-rule { width: 44px; height: 3px; background: linear-gradient(90deg,#1e3a8a,#3b82f6,#f59e0b); margin: 14px 0 18px; }
.ab-body { color: var(--text-muted); font-size: 0.93rem; line-height: 1.85; margin-bottom: 14px; }
.ab-checklist { list-style: none; padding: 0; margin: 18px 0 24px; display: flex; flex-direction: column; gap: 10px; }
.ab-checklist li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; color: var(--text); }
.ab-checklist li i { color: #10b981; font-size: 13px; flex-shrink: 0; }
.ab-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ab-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1e3a8a; color: #fff; font-weight: 700; font-size: 0.88rem;
  padding: 12px 28px; text-decoration: none;
  transition: background 0.2s;
}
.ab-btn-primary:hover { background: #1e40af; color: #fff; }
.ab-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid #cbd5e1; color: var(--text); font-weight: 600; font-size: 0.88rem;
  padding: 12px 24px; text-decoration: none; background: transparent;
  transition: border-color 0.2s, color 0.2s;
}
.ab-btn-outline:hover { border-color: #1e3a8a; color: #1e3a8a; }

/* ── Mission / Vision / Values ───────────────────────── */
.ab-mvv { padding: 40px 0; background: #f8fafc; }
.ab-section-head { margin-bottom: 28px; }
.ab-sec-title { font-size: 2rem; font-weight: 900; color: var(--text); letter-spacing: -0.8px; }
.ab-mvv-card {
  background: #fff; padding: 28px 26px 24px;
  border: 1px solid #e2e8f0; border-top: 3px solid #e2e8f0;
  position: relative; height: 100%;
  transition: border-top-color 0.25s, box-shadow 0.25s;
}
.ab-mvv-card:hover { border-top-color: #1e3a8a; box-shadow: 0 8px 32px rgba(30,58,138,0.08); }
.ab-mvv-num { font-size: 2.8rem; font-weight: 900; color: #f1f5f9; line-height: 1; margin-bottom: 10px; letter-spacing: -2px; font-family: 'Space Grotesk', sans-serif; }
.ab-mvv-icon { font-size: 1.4rem; margin-bottom: 10px; }
.ab-mvv-title { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.ab-mvv-text { font-size: 0.87rem; color: var(--text-muted); line-height: 1.8; margin: 0; }
.ab-mvv-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; opacity: 0; transition: opacity 0.25s; }
.ab-mvv-card:hover .ab-mvv-bar { opacity: 1; }

/* ── Stats band ──────────────────────────────────────── */
.ab-stats {
  background: linear-gradient(135deg,#050d2e 0%,#0d1b4b 60%,#1a3a8f 100%);
  padding: 0;
}
.ab-stat-cell {
  padding: 28px 20px; text-align: center;
}
.ab-stat-border { border-right: 1px solid rgba(255,255,255,0.07); }
.ab-stat-icon { font-size: 1.5rem; margin-bottom: 10px; }
.ab-stat-num { font-size: 2.4rem; font-weight: 900; color: #fff; letter-spacing: -1.5px; line-height: 1; margin-bottom: 6px; }
.ab-stat-lbl { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.45); letter-spacing: 0.5px; text-transform: uppercase; }

/* ── Pillars / Why choose us ─────────────────────────── */
.ab-pillars { padding: 40px 0; }
.ab-pillar {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 18px; border: 1px solid #e2e8f0; background: #fff;
  border-left: 3px solid transparent;
  height: 100%;
  transition: border-left-color 0.2s, box-shadow 0.2s;
}
.ab-pillar:hover { border-left-color: #3b82f6; box-shadow: 0 4px 20px rgba(30,58,138,0.07); }
.ab-pillar-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.ab-pillar-body { flex: 1; min-width: 0; }
.ab-pillar-title { font-size: 0.9rem; font-weight: 800; color: var(--text); margin-bottom: 5px; }
.ab-pillar-text  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ── Team ────────────────────────────────────────────── */
.ab-team { padding: 40px 0; background: #f8fafc; }
.ab-team-card {
  background: #fff; border: 1px solid #e2e8f0;
  transition: box-shadow 0.25s, transform 0.25s;
  overflow: hidden;
}
.ab-team-card:hover { box-shadow: 0 12px 40px rgba(30,58,138,0.1); transform: translateY(-4px); }
.ab-team-img-wrap { position: relative; height: 220px; overflow: hidden; }
.ab-team-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.ab-team-card:hover .ab-team-img { transform: scale(1.05); }
.ab-team-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#0a0f2e,#1a3a8f);
  font-size: 3.5rem; color: rgba(255,255,255,0.12);
}
.ab-team-overlay {
  position: absolute; inset: 0; background: rgba(10,15,46,0.55);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 16px; opacity: 0;
  transition: opacity 0.3s;
}
.ab-team-card:hover .ab-team-overlay { opacity: 1; }
.ab-team-socials { display: flex; gap: 6px; }
.ab-team-socials a {
  width: 32px; height: 32px; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; text-decoration: none;
  transition: background 0.2s;
}
.ab-team-socials a:hover { background: #f59e0b; border-color: #f59e0b; color: #0f172a; }
.ab-team-info { padding: 16px 18px; border-top: 2px solid #1e3a8a; }
.ab-team-name { font-weight: 800; font-size: 0.95rem; color: var(--text); margin-bottom: 3px; }
.ab-team-role { font-size: 0.78rem; font-weight: 600; color: #3b82f6; text-transform: uppercase; letter-spacing: 0.4px; }
.ab-team-bio  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin: 8px 0 0; }

/* ── About responsive ────────────────────────────────── */
@media (max-width: 991px) {
  .ab-intro { padding: 36px 0 28px; }
  .ab-visual { height: 300px; }
  .ab-heading { font-size: 1.8rem; }
  .ab-mvv { padding: 32px 0; }
  .ab-pillars { padding: 32px 0; }
  .ab-team { padding: 32px 0; }
  .ab-stat-cell { padding: 22px 16px; }
  .ab-stat-border { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
}
@media (max-width: 767px) {
  .ab-intro { padding: 28px 0 24px; }
  .ab-visual { height: 240px; }
  .ab-heading { font-size: 1.5rem; }
  .ab-metric strong { font-size: 1.3rem; }
  .ab-metric { padding: 0 14px; }
  .ab-mvv { padding: 28px 0; }
  .ab-mvv-card { padding: 20px 16px 16px; }
  .ab-pillars { padding: 28px 0; }
  .ab-team { padding: 28px 0; }
  .ab-team-img-wrap { height: 180px; }
  .ab-stat-cell { padding: 20px 14px; }
  .ab-stat-num { font-size: 1.9rem; }
  .ab-actions { flex-direction: column; }
  .ab-btn-primary, .ab-btn-outline { justify-content: center; text-align: center; }
  .ab-badge { bottom: 12px; right: 12px; padding: 10px 14px; }
  .ab-badge-num { font-size: 1.2rem; }
}

/* =====================================================
   ABOUT PAGE — HERO + JOURNEY + TECH + UPGRADES
   ===================================================== */

/* ── Hero ────────────────────────────────────── */
.ab-hero {
  background: linear-gradient(135deg,#060d26 0%,#0d1b4b 55%,#1e3a8a 100%);
  padding: 168px 0 64px; position: relative; overflow: hidden;
}
.ab-hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.ab-hero::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.16) 0%, transparent 65%);
  top: -200px; right: -150px; pointer-events: none;
}
.ab-hero::after {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 65%);
  bottom: -120px; left: -100px; pointer-events: none;
}
.ab-hero-content { position: relative; z-index: 2; }
.ab-hero-row {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 64px; align-items: center;
}
.ab-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px; padding: 7px 20px;
  color: rgba(255,255,255,0.85); font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.ab-hero-title {
  font-size: clamp(2rem,4.5vw,3.1rem); font-weight: 900;
  color: #fff; line-height: 1.15; letter-spacing: -1.5px; margin-bottom: 18px;
}
.ab-hero-title span {
  background: linear-gradient(135deg,#60a5fa,#93c5fd,#bfdbfe);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ab-hero-sub {
  color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.8;
  max-width: 520px; margin-bottom: 32px;
}
.ab-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.ab-hero-btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg,#1d4ed8,#2563eb,#3b82f6);
  color: #fff; font-weight: 700; font-size: 0.92rem;
  padding: 13px 30px; border-radius: 100px; text-decoration: none;
  box-shadow: 0 8px 28px rgba(37,99,235,0.42); transition: all 0.3s;
}
.ab-hero-btn-primary:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 14px 36px rgba(37,99,235,0.55); }
.ab-hero-btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.88);
  font-weight: 700; font-size: 0.92rem;
  padding: 13px 28px; border-radius: 100px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.22); transition: all 0.3s;
}
.ab-hero-btn-ghost:hover { background: rgba(255,255,255,0.16); color: #fff; border-color: rgba(255,255,255,0.44); }
.ab-hero-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.ab-hero-breadcrumb .breadcrumb-item a:hover { color: #93c5fd; }
.ab-hero-breadcrumb .breadcrumb-item.active,
.ab-hero-breadcrumb .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.35); }

/* Right panel card */
.ab-hero-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 32px 28px; backdrop-filter: blur(10px);
  position: relative; overflow: hidden;
}
.ab-hero-card::before {
  content: ''; position: absolute;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(59,130,246,0.16); filter: blur(55px);
  top: -70px; right: -60px; pointer-events: none;
}
.ab-hero-card-logo { margin-bottom: 18px; }
.ab-hero-card-logo img {
  height: 42px; width: auto;
  filter: brightness(0) invert(1); opacity: 0.85;
}
.ab-hero-card-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.ab-hero-card-metrics {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; margin-bottom: 24px;
}
.ab-hero-card-metric {
  background: rgba(255,255,255,0.04); text-align: center; padding: 16px 8px;
}
.ab-hero-card-metric strong {
  display: block; font-size: 1.45rem; font-weight: 900; color: #fff;
  letter-spacing: -0.6px; line-height: 1; margin-bottom: 4px;
}
.ab-hero-card-metric span {
  font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.38);
  text-transform: uppercase; letter-spacing: 0.8px;
}
.ab-hero-card-feats { display: flex; flex-direction: column; gap: 10px; }
.ab-hero-card-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: rgba(255,255,255,0.7);
}
.ab-hero-card-feat-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}

/* ── Journey timeline ───────────────────────── */
.ab-journey { padding: 48px 0 52px; background: #f8fafc; }
.ab-journey-head { margin-bottom: 36px; }
.ab-tl { position: relative; max-width: 860px; margin: 0 auto; }
.ab-tl::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,#3b82f6 0%,#8b5cf6 50%,#10b981 100%);
  transform: translateX(-50%);
}
.ab-tl-item {
  display: flex; align-items: flex-start;
  margin-bottom: 32px; position: relative;
}
.ab-tl-item:last-child { margin-bottom: 0; }
.ab-tl-item:nth-child(odd)  { flex-direction: row; }
.ab-tl-item:nth-child(even) { flex-direction: row-reverse; }
.ab-tl-content {
  width: calc(50% - 38px); background: #fff;
  border: 1px solid #e2e8f0; border-radius: 16px; padding: 22px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: box-shadow 0.28s, transform 0.28s;
  position: relative;
}
.ab-tl-content:hover { box-shadow: 0 10px 36px rgba(30,58,138,0.1); transform: translateY(-4px); }
.ab-tl-item:nth-child(odd)  .ab-tl-content::after {
  content: ''; position: absolute; top: 20px; right: -10px;
  width: 18px; height: 18px; background: #fff;
  border-top: 1px solid #e2e8f0; border-right: 1px solid #e2e8f0;
  transform: rotate(45deg);
}
.ab-tl-item:nth-child(even) .ab-tl-content::after {
  content: ''; position: absolute; top: 20px; left: -10px;
  width: 18px; height: 18px; background: #fff;
  border-bottom: 1px solid #e2e8f0; border-left: 1px solid #e2e8f0;
  transform: rotate(45deg);
}
.ab-tl-mid {
  width: 76px; flex-shrink: 0; display: flex; flex-direction: column;
  align-items: center; padding-top: 14px; position: relative; z-index: 2;
}
.ab-tl-dot {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff;
  box-shadow: 0 0 0 6px #f8fafc, 0 6px 18px rgba(0,0,0,0.18);
}
.ab-tl-year {
  font-size: 10.5px; font-weight: 900; color: #94a3b8;
  letter-spacing: 0.4px; margin-top: 7px; text-align: center;
}
.ab-tl-tag {
  font-size: 9.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.2px; padding: 3px 10px; border-radius: 100px;
  margin-bottom: 9px; display: inline-block;
}
.ab-tl-h { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.ab-tl-p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.78; margin: 0; }

/* ── Tech Stack ─────────────────────────────── */
.ab-tech { padding: 44px 0 48px; background: #fff; }
.ab-tech-chips {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  max-width: 840px; margin: 0 auto;
}
.ab-tech-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 700;
  border: 1.5px solid; transition: all 0.25s; cursor: default; white-space: nowrap;
}
.ab-tech-chip:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }

/* ── Improved MVV cards ─────────────────────── */
.ab-mvv-card { border-radius: 16px; }
.ab-mvv-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px; flex-shrink: 0;
}

/* ── Improved Pillars ───────────────────────── */
.ab-pillar { border-radius: 12px; }
.ab-pillar-icon { border-radius: 10px; }

/* ── Taller team cards ──────────────────────── */
.ab-team-img-wrap { height: 260px; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1199px) {
  .ab-hero { padding: 148px 0 56px; }
  .ab-hero-row { gap: 40px; }
}
@media (max-width: 991px) {
  .ab-hero { padding: 128px 0 48px; }
  .ab-hero-row { grid-template-columns: 1fr; gap: 0; }
  .ab-hero-card { display: none; }
  .ab-hero-sub { max-width: 100%; }
  .ab-journey { padding: 36px 0 40px; }
  .ab-tl::before { left: 26px; transform: none; }
  .ab-tl-item, .ab-tl-item:nth-child(even) { flex-direction: row; }
  .ab-tl-content { width: calc(100% - 76px); }
  .ab-tl-item:nth-child(odd)  .ab-tl-content::after,
  .ab-tl-item:nth-child(even) .ab-tl-content::after {
    right: auto; left: -10px;
    border: none;
    border-bottom: 1px solid #e2e8f0; border-left: 1px solid #e2e8f0;
  }
  .ab-tl-mid { width: 56px; }
  .ab-tech { padding: 36px 0 40px; }
  .ab-team-img-wrap { height: 220px; }
}
@media (max-width: 767px) {
  .ab-hero { padding: 108px 0 40px; }
  .ab-hero-title { font-size: 1.85rem; letter-spacing: -0.8px; }
  .ab-hero-sub { font-size: 0.88rem; }
  .ab-hero-btns { flex-direction: column; }
  .ab-hero-btn-primary, .ab-hero-btn-ghost { justify-content: center; }
  .ab-journey { padding: 28px 0 32px; }
  .ab-tl-content { padding: 16px 14px; }
  .ab-tl-dot { width: 38px; height: 38px; font-size: 13px; }
  .ab-tl-mid { width: 50px; }
  .ab-tl-item { margin-bottom: 24px; }
  .ab-tech { padding: 28px 0 32px; }
  .ab-tech-chip { font-size: 12px; padding: 7px 13px; }
  .ab-team-img-wrap { height: 190px; }
}
@media (max-width: 575px) {
  .ab-hero { padding: 100px 0 36px; }
  .ab-hero-title { font-size: 1.65rem; }
  .ab-tl-dot { width: 34px; height: 34px; font-size: 12px; }
  .ab-tl-mid { width: 44px; }
}

/* =====================================================
   AOS INIT FALLBACK
   ===================================================== */
[data-aos] { opacity: 0; transition-property: transform, opacity; }

/* ═══════════════════════════════════════════════════════
   MOBILE SIDEBAR
═══════════════════════════════════════════════════════ */
.mob-sidebar {
  position: fixed; top: 0; left: -320px; width: 300px; height: 100vh;
  background: #fff; z-index: 9999;
  transition: left 0.32s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto; overflow-x: hidden;
  display: flex; flex-direction: column;
  box-shadow: 4px 0 40px rgba(0,0,0,0.18);
}
.mob-sidebar.open { left: 0; }
.mob-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.52);
  z-index: 9998; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mob-backdrop.open { opacity: 1; pointer-events: all; }
body.mob-sidebar-open { overflow: hidden; }

/* Sidebar head */
.mob-sidebar-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid #f1f5f9;
  position: sticky; top: 0; background: #fff; z-index: 2;
}
.mob-sidebar-logo { height: 46px; width: auto; display: block; }
.mob-sidebar-close {
  width: 36px; height: 36px; border-radius: 8px;
  background: #f1f5f9; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #475569; font-size: 16px;
  transition: background 0.2s;
}
.mob-sidebar-close:hover { background: #e2e8f0; color: #1e293b; }

/* Sidebar nav */
.mob-sidebar-nav { padding: 12px 12px; flex: 1; }
.mob-nav-link {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 14px; border-radius: 10px;
  color: #334155; font-size: 14px; font-weight: 600;
  text-decoration: none; margin-bottom: 2px;
  transition: background 0.18s, color 0.18s;
  border: none; background: none; width: 100%; text-align: left; cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.mob-nav-link i:first-child { font-size: 15px; color: #94a3b8; width: 18px; text-align: center; flex-shrink: 0; }
.mob-nav-link:hover, .mob-nav-link.mob-active {
  background: #eff6ff; color: #1e3a8a;
}
.mob-nav-link.mob-active i:first-child,
.mob-nav-link:hover i:first-child { color: #3b82f6; }
.mob-nav-acc-toggle { justify-content: space-between; }
.mob-nav-acc-toggle > span { display: flex; align-items: center; gap: 12px; }
.mob-acc-arrow { font-size: 11px; color: #94a3b8; transition: transform 0.25s; flex-shrink: 0; }
.mob-acc.mob-acc-open .mob-acc-arrow { transform: rotate(180deg); }
.mob-acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 16px;
}
.mob-acc.mob-acc-open .mob-acc-body { max-height: 500px; }
.mob-acc-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 8px;
  color: #475569; font-size: 13px; font-weight: 500;
  text-decoration: none; margin-bottom: 1px;
  transition: background 0.15s, color 0.15s;
  border-left: 2px solid #e2e8f0;
}
.mob-acc-link i { font-size: 12px; color: #94a3b8; width: 16px; }
.mob-acc-link:hover { background: #f8fafc; color: #1e3a8a; border-left-color: #3b82f6; }

/* Sidebar footer */
.mob-sidebar-footer {
  padding: 16px 18px 24px; border-top: 1px solid #f1f5f9;
  background: #f8fafc;
}
.mob-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px; border-radius: 10px;
  background: #1e3a8a; color: #fff; font-size: 14px; font-weight: 700;
  text-decoration: none; margin-bottom: 12px;
  transition: background 0.2s, transform 0.2s;
  font-family: 'Inter', sans-serif;
}
.mob-cta-btn:hover { background: #1e40af; color: #fff; transform: translateY(-1px); }
.mob-sidebar-phone {
  display: flex; align-items: center; gap: 8px;
  color: #334155; font-size: 13px; font-weight: 600;
  text-decoration: none; padding: 8px 0; margin-bottom: 12px;
}
.mob-sidebar-phone i { color: #3b82f6; font-size: 14px; }
.mob-sidebar-socials { display: flex; gap: 8px; }
.mob-sidebar-socials a {
  width: 36px; height: 36px; border-radius: 8px;
  background: #fff; border: 1px solid #e2e8f0;
  display: flex; align-items: center; justify-content: center;
  color: #475569; font-size: 14px; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.mob-sidebar-socials a:hover { background: #1e3a8a; color: #fff; border-color: #1e3a8a; }

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE SYSTEM — ALL PAGES / ALL DEVICES
   Breakpoints: 1199 | 991 | 767 | 575 | 400
═══════════════════════════════════════════════════════════════════════ */

/* ── HIDE BOOTSTRAP COLLAPSE, USE CUSTOM SIDEBAR INSTEAD ─────────── */
@media (max-width: 991px) {
  #mainNav { display: none !important; }
}

/* ── ≤1199px  (Large → Medium desktop) ──────────────────────────────*/
@media (max-width: 1199px) {
  .hs-title { font-size: 2.6rem; }
  .about-float-card { right: 0; bottom: -16px; }
  .contact-info-card { padding: 36px; }
  .contact-form-card { padding: 40px; }
  .ct-grid { grid-template-columns: 300px 1fr; }
  .ct-quick-grid { gap: 12px; }
  .ct-svc-grid { grid-template-columns: repeat(4,1fr); }
  .ct-process-grid::before { left: calc(12.5% + 10px); right: calc(12.5% + 10px); }
}

/* ── ≤991px  (Tablet landscape + small desktop) ──────────────────── */
@media (max-width: 991px) {
  /* Topbar */
  .topbar { height: 38px; }
  .topbar-inner { height: 38px; }
  .topbar-left .topbar-item:nth-child(n+3) { display: none !important; }
  .topbar-divider { margin: 0 8px; }

  /* Navbar */
  #mainNavbar { top: 38px; }
  #mainNavbar.topbar-hidden { top: 0; }
  .navbar-logo { height: 46px; }

  /* Page header — topbar 38px + navbar ~66px ≈ 104px */
  .page-header { padding: 130px 0 70px; }

  /* Hero slider */
  .hs-slide { padding-top: 130px; padding-bottom: 60px; height: auto; min-height: 540px; }
  .hs-title { font-size: 2rem; letter-spacing: -1px; }
  .hs-subtitle { font-size: 0.95rem; }
  .hs-tv, .hs-cwin, .hs-dwin, .hs-phone { display: none !important; }
  .hs-tchips { display: none; }

  /* Sections */
  .services-section, .blog-section, .faq-section, .team-section,
  .stats-section, .contact-section { padding: 70px 0; }
  .section-title { font-size: 2rem; }
  .section-subtitle { margin-bottom: 40px; }

  /* About */
  .about-float-card { right: 0; bottom: -16px; }
  .about-img-wrap { margin-bottom: 40px; }

  /* Process steps */
  .process-step::after { display: none; }
  .step-num { width: 64px; height: 64px; font-size: 1.1rem; }

  /* Portfolio filter */
  .pf-filter-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
  .pf-filter-wrap::-webkit-scrollbar { height: 3px; }
  .pf-filter-wrap::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 3px; }
  .pf-filter-wrap::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
  .filter-tabs { flex-wrap: nowrap; min-width: max-content; }

  /* Why choose us */
  .wcu-section { padding: 70px 0; }
  .wcu-compare-card { margin-top: 32px; }
  .wcu-stat-pills { grid-template-columns: repeat(2,1fr); gap: 10px; }

  /* Services */
  .srv-header { margin-bottom: 36px; }
  .srv-title { font-size: 1.9rem; }

  /* Footer */
  .footer-brand-col { margin-bottom: 28px; }

  /* Contact — tablet */
  .contact-info-card { padding: 30px; }
  .contact-form-card { padding: 32px; }
  .ct-quick-sec  { margin-top: -24px; }
  .ct-quick-grid { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .ct-quick-card { padding: 14px 14px; gap: 10px; }
  .ct-quick-icon { width: 42px; height: 42px; font-size: 17px; }
  .ct-grid { grid-template-columns: 1fr; border-radius: 14px; }
  .ct-form-wrap { border-left: none; border-top: 1px solid #e2e8f0; }
  .ct-svc-grid { grid-template-columns: repeat(4,1fr); gap: 8px; }
  .ct-stepper { gap: 0; }
  .ct-trust-band { grid-template-columns: repeat(2,1fr); }
  .ct-trust-block:nth-child(2) { border-right: none; }
  .ct-trust-block:nth-child(3) { border-top: 1px solid #e2e8f0; }
  .ct-trust-block:nth-child(4) { border-top: 1px solid #e2e8f0; border-right: none; }
  .ct-process-grid { grid-template-columns: repeat(2,1fr); gap: 36px 24px; }
  .ct-process-grid::before { display: none; }
  .ct-faq-a { padding-left: 0; }
}

/* ── ≤767px  (Mobile landscape / small tablet portrait) ──────────── */
@media (max-width: 767px) {
  /* --- Topbar: hidden on mobile — info lives in sidebar --- */
  .topbar { display: none !important; }

  /* --- Navbar --- */
  #mainNavbar { top: 0 !important; padding: 8px 0; }
  #mainNavbar .container { padding-left: 14px; padding-right: 14px; }
  .navbar-brand { flex-shrink: 0; }
  .navbar-logo { height: 40px; width: auto; }

  /* --- Container padding --- */
  .container { padding-left: 16px; padding-right: 16px; }

  /* --- Page header: topbar gone, only navbar ~58px above content --- */
  .page-header { padding: 90px 0 52px; }
  .page-header h1 { font-size: 1.8rem; letter-spacing: -0.5px; }
  .breadcrumb { font-size: 0.82rem; }

  /* --- Section spacing & typography --- */
  .services-section, .blog-section, .faq-section, .team-section,
  .stats-section, .contact-section, .wcu-section, .cta-section { padding: 52px 0; }
  .section-title { font-size: 1.65rem; letter-spacing: -0.5px; }
  .section-subtitle { font-size: 0.9rem; margin-bottom: 32px; }
  .section-badge { font-size: 10px; }

  /* --- Hero slider --- */
  .hs-slide { min-height: 460px; padding-top: 76px; padding-bottom: 48px; }
  .hs-title { font-size: 1.65rem; letter-spacing: -0.5px; }
  .hs-badge { font-size: 10px; padding: 5px 12px; }
  .hs-subtitle { font-size: 0.88rem; line-height: 1.65; margin-bottom: 20px; }
  .hs-btns { gap: 8px; flex-wrap: wrap; }
  .hs-btn-primary, .hs-btn-outline { padding: 10px 20px; font-size: 13px; }
  .hs-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 16px; margin-top: 16px; }
  .hs-mini-stat strong { font-size: 0.88rem; }
  .hs-prev { left: 6px; } .hs-next { right: 6px; }
  .hs-controls { bottom: 10px; left: 50%; transform: translateX(-50%); width: auto; }
  .hs-counter { display: none; }
  .hs-nav { width: 36px; height: 36px; font-size: 13px; }
  .hs-brk { display: none; }

  /* --- Tech marquee --- */
  .tech-strip { padding: 0; }
  .tech-strip-arrow, .tech-strip-fade { display: none; }
  .tech-item { font-size: 11px; padding: 0 14px; }

  /* --- About page --- */
  .about-img-wrap { margin-bottom: 60px; }
  .about-float-card {
    position: absolute; right: 8px; bottom: -20px;
    padding: 14px 18px;
  }
  .about-float-card h3 { font-size: 1.6rem; }
  .check-list li { font-size: 0.88rem; padding: 11px 0; }

  /* --- Stats section --- */
  .stat-card-item { padding: 28px 20px; }
  .stat-num { font-size: 2.2rem; }
  .stats-section { padding: 52px 0; }

  /* --- Team section --- */
  .team-section { padding: 52px 0; }
  .team-img-wrap { height: 220px; }

  /* --- Services page --- */
  .services-section { padding: 52px 0; }
  .srv-card { padding: 22px 18px; }
  .srv-cta-btn { width: 100%; justify-content: center; text-align: center; }
  /* Service detail rows — undo flex-row-reverse on mobile */
  .services-section .flex-row-reverse { flex-direction: column !important; }
  .services-section .row.align-items-center > div { text-align: center; }
  .services-section .row.align-items-center > div .service-icon { margin: 0 auto 16px; }

  /* --- Process steps --- */
  .step-num { width: 56px; height: 56px; font-size: 1rem; margin-bottom: 14px; }
  .process-step { padding: 0 4px; margin-bottom: 28px; }
  .process-step h5 { font-size: 0.9rem; }

  /* --- FAQ / Accordion --- */
  .accordion-button { font-size: 0.9rem; padding: 16px 18px; }
  .accordion-body { padding: 0 18px 18px; font-size: 0.88rem; }

  /* --- Portfolio --- */
  .pf-modal-inner { padding: 18px 14px 20px; }
  .pf-modal-header { padding: 20px 16px; }
  .pf-modal-stats-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .pf-modal-compare { grid-template-columns: 1fr; }
  .pf-modal-cta-wrap { flex-direction: column; gap: 8px; }
  .pf-modal-cta-primary, .pf-modal-cta-secondary { width: 100%; justify-content: center; }
  .filter-btn { padding: 7px 14px; font-size: 0.82rem; }

  /* --- Why choose us --- */
  .wcu-title { font-size: 1.7rem; }
  .wcu-stat-pills { grid-template-columns: 1fr 1fr; gap: 8px; }
  .wcu-compare-row { font-size: 12px; }
  .wcu-val-us, .wcu-val-them { font-size: 12px; min-width: 60px; }

  /* --- Blog section cards --- */
  .blog-section { padding: 52px 0; }
  .blog-body { padding: 18px 18px 22px; }
  .blog-img-wrap { height: 190px; }

  /* --- Blog single --- */
  .blog-single-content .p-4 { padding: 20px !important; }
  .blog-single-content .p-md-5 { padding: 20px !important; }

  /* --- CTA section --- */
  .cta-section { padding: 52px 0; }
  .cta-title { font-size: 1.55rem; }
  .btn-hero-primary, .btn-hero-secondary { padding: 12px 24px; font-size: 0.88rem; }

  /* --- Contact section --- */
  .contact-section { padding: 52px 0; }
  .contact-info-card { padding: 24px 20px; margin-bottom: 24px; }
  .contact-info-item { gap: 14px; margin-bottom: 22px; }
  .contact-info-icon { width: 42px; height: 42px; font-size: 15px; }
  .contact-form-card { padding: 24px 18px; }
  .btn-submit { width: 100%; justify-content: center; }
  .form-control, .form-select { padding: 11px 14px; font-size: 0.9rem; }

  /* New contact page — phone portrait */
  .ct-main-sec { padding: 32px 0 28px; }
  .ct-quick-sec { margin-top: -14px; }
  .ct-quick-grid { grid-template-columns: 1fr; gap: 8px; }
  .ct-quick-card { padding: 14px 16px; gap: 12px; border-radius: 12px; }
  .ct-quick-icon { width: 42px; height: 42px; border-radius: 10px; font-size: 17px; flex-shrink: 0; }
  .ct-quick-body strong { font-size: 0.82rem; white-space: normal; }
  .ct-quick-arrow { display: none; }

  .ct-grid { border-radius: 12px; }
  .ct-info-body { padding: 26px 20px 22px; }
  .ct-info-head { font-size: 1.2rem; }
  .ct-info-sub  { font-size: 0.82rem; margin-bottom: 20px; }
  .ct-info-items { margin-bottom: 20px; }
  .ct-info-item { padding: 12px 0; gap: 12px; }
  .ct-info-icon { width: 36px; height: 36px; border-radius: 8px; font-size: 12px; }
  .ct-info-label { font-size: 9px; }
  .ct-info-val   { font-size: 0.8rem; }
  .ct-info-socials { gap: 6px; margin-bottom: 18px; }
  .ct-info-socials a { width: 32px; height: 32px; border-radius: 7px; font-size: 12px; }
  .ct-trust-strip { border-radius: 8px; }
  .ct-trust-item strong { font-size: 0.95rem; }

  .ct-form-wrap { padding: 24px 20px 22px; }
  .ct-stepper { margin-bottom: 22px; }
  .ct-stepper-dot { width: 28px; height: 28px; font-size: 11px; }
  .ct-stepper-step span { font-size: 9px; }
  .ct-stepper-bar { margin: 13px 4px 0; }
  .ct-panel-title { font-size: 1rem; }
  .ct-panel-sub   { font-size: 0.8rem; margin-bottom: 16px; }

  .ct-svc-grid { grid-template-columns: repeat(2,1fr); gap: 8px; margin-bottom: 18px; }
  .ct-svc-card { padding: 14px 8px 12px; gap: 7px; border-radius: 8px; }
  .ct-svc-icon { width: 34px; height: 34px; border-radius: 8px; font-size: 14px; }
  .ct-svc-card span { font-size: 10.5px; }

  .ct-detail-grid { grid-template-columns: 1fr; gap: 10px; }
  .ct-input { padding: 11px 12px 11px 36px; font-size: 0.88rem; border-radius: 8px; }
  .ct-textarea { padding: 11px 12px; font-size: 0.88rem; border-radius: 8px; min-height: 110px; }
  .ct-label { font-size: 0.79rem; }
  .ct-budget-row { gap: 6px; }
  .ct-budget-btn { font-size: 11px; border-radius: 7px; padding: 10px 4px; }

  .ct-nav { margin-top: 16px; gap: 8px; }
  .ct-btn-back { padding: 10px 16px; font-size: 0.82rem; border-radius: 7px; }
  .ct-btn-next { padding: 10px 20px; font-size: 0.85rem; border-radius: 7px; }
  .ct-submit-btn { width: 100%; justify-content: center; border-radius: 8px; padding: 13px 20px; }
  .ct-privacy-note { font-size: 10.5px; }

  .ct-process-sec { padding: 48px 0 56px; }
  .ct-process-heading { font-size: 1.4rem; }
  .ct-process-grid { grid-template-columns: repeat(2,1fr); gap: 32px 16px; }
  .ct-process-icon { width: 48px; height: 48px; font-size: 17px; }
  .ct-process-card h6 { font-size: 0.82rem; }
  .ct-process-card p  { font-size: 0.76rem; }

  .ct-trust-sec { padding: 0 0 44px; }
  .ct-trust-block { padding: 18px 14px; gap: 10px; }
  .ct-trust-icon { width: 40px; height: 40px; font-size: 16px; border-radius: 9px; }
  .ct-trust-txt strong { font-size: 0.82rem; }
  .ct-trust-txt span   { font-size: 0.73rem; }

  .ct-faq-sec { padding: 44px 0; }
  .ct-faq-title { font-size: 1.45rem; }
  .ct-faq-q { padding: 14px 0; }
  .ct-faq-q span:not(.ct-faq-num) { font-size: 0.86rem; }
  .ct-faq-num { font-size: 10px; padding: 2px 6px; }

  .ct-map-sec { padding: 0 0 44px; }
  .ct-map-wrap { border-radius: 12px; }
  .ct-map-card { padding: 12px 14px; gap: 10px; border-radius: 10px; flex-wrap: wrap; }
  .ct-map-pin-wrap { width: 36px; height: 36px; border-radius: 8px; font-size: 14px; }
  .ct-map-card-text strong { font-size: 0.82rem; }
  .ct-map-card-text span   { font-size: 0.74rem; }
  .ct-map-dir { width: 100%; justify-content: center; font-size: 11px; }

  /* --- Footer --- */
  footer { padding-top: 52px !important; }
  footer .col-lg-4, footer .col-lg-2, footer .col-md-6 { margin-bottom: 28px; }
  .footer-divider { margin: 24px 0 0; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 18px 0; }
  .footer-logo-img { height: 40px; }
  .footer-links li { margin-bottom: 8px; }

  /* --- AOS: reduce travel distances on mobile --- */
  [data-aos="fade-up"]    { transform: translateY(16px) !important; }
  [data-aos="fade-left"]  { transform: translateX(-16px) !important; }
  [data-aos="fade-right"] { transform: translateX(16px) !important; }
}

/* ── ≤575px  (Small mobile — iPhone SE, Galaxy A series) ─────────── */
@media (max-width: 575px) {
  .page-header { padding: 82px 0 44px; }
  .page-header h1 { font-size: 1.6rem; }

  .hs-slide { min-height: 430px; padding-top: 72px; }
  .hs-title { font-size: 1.5rem; }
  .hs-stats-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hs-btns { flex-direction: column; }
  .hs-btn-primary, .hs-btn-outline { width: 100%; justify-content: center; }

  .section-title { font-size: 1.5rem; }
  .stat-num { font-size: 2rem; }

  .contact-form-card { padding: 20px 14px; }
  .contact-info-card { padding: 20px 16px; }

  /* Contact — small phones */
  .ct-quick-card { padding: 12px 14px; gap: 10px; }
  .ct-quick-icon { width: 38px; height: 38px; font-size: 15px; }
  .ct-quick-lbl  { font-size: 10px; }
  .ct-quick-body strong { font-size: 0.8rem; }

  .ct-info-body { padding: 20px 16px 18px; }
  .ct-info-item { padding: 10px 0; }
  .ct-info-items { margin-bottom: 16px; }
  .ct-trust-strip { display: none; }

  .ct-form-wrap { padding: 20px 16px 18px; }
  .ct-stepper { gap: 0; margin-bottom: 18px; }
  .ct-stepper-dot { width: 24px; height: 24px; font-size: 10px; }
  .ct-stepper-step span { display: none; }
  .ct-stepper-bar { margin: 11px 4px 0; }

  .ct-svc-grid { grid-template-columns: repeat(2,1fr); gap: 6px; }
  .ct-svc-card { padding: 12px 6px 10px; gap: 6px; border-radius: 8px; }
  .ct-svc-icon { width: 28px; height: 28px; border-radius: 7px; font-size: 12px; }
  .ct-svc-card span { font-size: 9.5px; }

  .ct-detail-grid { grid-template-columns: 1fr; gap: 10px; }
  .ct-budget-btn { padding: 9px 4px; font-size: 10.5px; }

  .ct-nav { flex-direction: row; }
  .ct-btn-back, .ct-btn-next { flex: 1; justify-content: center; }

  .ct-trust-band { grid-template-columns: 1fr 1fr; }
  .ct-trust-block { padding: 16px 12px; }

  .ct-process-grid { grid-template-columns: 1fr; gap: 28px; }
  .ct-process-card { padding: 0 8px; }

  .ct-map-card { border-radius: 10px; }
  .ct-map-dir { font-size: 11px; }

  .cta-title { font-size: 1.4rem; }
  .btn-hero-primary, .btn-hero-secondary { font-size: 0.85rem; padding: 11px 20px; }

  /* Blog single sidebar full-width */
  .col-lg-4.blog-sidebar { margin-top: 28px; }
  .blog-img-wrap { height: 170px; }

  .footer-social a { width: 34px; height: 34px; font-size: 13px; }
  .back-to-top-btn { width: 40px; height: 40px; font-size: 14px; right: 16px; bottom: 16px; }
  #backToTop { right: 16px; bottom: 16px; width: 40px; height: 40px; font-size: 14px; }

  /* Accordion tighter */
  .accordion-button { padding: 14px 16px; font-size: 0.87rem; }

  /* Team cards */
  .team-img-wrap { height: 200px; }
  .team-name { font-size: 0.93rem; }
}

/* ── ≤400px  (Very small phones — Galaxy Fold, older devices) ─────── */
@media (max-width: 400px) {
  .navbar-logo { height: 36px; }
  #mainNavbar .container { padding-left: 10px; padding-right: 10px; }

  .page-header { padding: 76px 0 38px; }
  .page-header h1 { font-size: 1.4rem; }

  .hs-slide { min-height: 400px; padding-top: 68px; }
  .hs-title { font-size: 1.3rem; }
  .hs-subtitle { font-size: 0.84rem; }

  .section-title { font-size: 1.35rem; }
  .section-badge { font-size: 9px; }

  .mob-sidebar { width: 88vw; }
  .contact-form-card { padding: 16px 12px; }
  .contact-info-card { padding: 16px 14px; }

  /* Contact — very small phones */
  .ct-quick-grid { gap: 6px; }
  .ct-quick-card { padding: 10px 12px; }
  .ct-quick-icon { width: 34px; height: 34px; font-size: 14px; }
  .ct-info-body { padding: 16px 14px 16px; }
  .ct-form-wrap { padding: 16px 14px 16px; }
  .ct-panel-title { font-size: 0.95rem; }
  .ct-svc-grid { gap: 5px; }
  .ct-svc-card { padding: 10px 4px 8px; }
  .ct-svc-card span { font-size: 9px; }
  .ct-btn-back, .ct-btn-next { font-size: 0.78rem; padding: 9px 12px; }
  .ct-submit-btn { font-size: 0.85rem; padding: 12px 16px; }
  .ct-process-sec { padding: 40px 0 48px; }
  .ct-faq-title { font-size: 1.3rem; }
  .ct-faq-q span:not(.ct-faq-num) { font-size: 0.82rem; }
}


/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE — MOBILE OVERRIDES  (placed last = highest priority)
   Breakpoints: 991  |  767  |  575  |  400
═══════════════════════════════════════════════════════════════════ */

/* ── ≤991px — tablet ───────────────────────────────────── */
@media (max-width: 991px) {
  .ct-main-sec { padding: 36px 0 44px; }
  .ct-grid { grid-template-columns: 1fr; border-radius: 16px;
              box-shadow: 0 12px 40px rgba(30,58,138,.09); }
  .ct-info-body { padding: 36px 32px 28px; }
  .ct-form-wrap { padding: 32px 32px 28px; border-left: none;
                  border-top: 1px solid #e2e8f0; }
  .ct-svc-grid { grid-template-columns: repeat(4,1fr); }
  .ct-detail-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ct-process-grid { grid-template-columns: repeat(2,1fr); gap: 36px 20px; }
  .ct-process-grid::before { display: none; }
  .ct-trust-band { grid-template-columns: repeat(2,1fr); }
  .ct-trust-block:nth-child(2) { border-right: none; }
  .ct-trust-block:nth-child(3) { border-top: 1px solid #e2e8f0; }
  .ct-trust-block:nth-child(4) { border-top: 1px solid #e2e8f0; border-right: none; }
  .ct-quick-grid { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .ct-faq-a { padding-left: 0; }
}

/* ── ≤767px — phone portrait ───────────────────────────── */
@media (max-width: 767px) {

  /* Quick strip */
  .ct-quick-sec { margin-top: 0; padding: 20px 0 4px; }
  .ct-quick-grid { grid-template-columns: 1fr; gap: 10px; }
  .ct-quick-card { padding: 14px 18px; gap: 14px; border-radius: 12px; align-items: center; }
  .ct-quick-icon { width: 46px; height: 46px; border-radius: 11px; font-size: 19px; flex-shrink: 0; }
  .ct-quick-lbl { font-size: 10px; }
  .ct-quick-body strong { font-size: 0.84rem; white-space: normal; overflow-wrap: anywhere; }
  .ct-quick-arrow { display: none; }

  /* Main section + grid */
  .ct-main-sec { padding: 28px 0 36px; }
  .ct-grid { grid-template-columns: 1fr; border-radius: 14px; margin: 0;
              box-shadow: 0 8px 28px rgba(30,58,138,.09); }

  /* Dark info panel */
  .ct-info-body { padding: 28px 22px 24px; }
  .ct-info-logo { margin-bottom: 18px; }
  .ct-info-logo img { height: 38px; }
  .ct-info-head { font-size: 1.2rem; margin-bottom: 6px; }
  .ct-info-sub { font-size: 0.81rem; margin-bottom: 18px; line-height: 1.65; }
  .ct-info-items { margin-bottom: 18px; }
  .ct-info-item { padding: 11px 0; gap: 12px; }
  .ct-info-item:hover { padding-left: 0; }
  .ct-info-icon { width: 36px; height: 36px; border-radius: 9px; font-size: 13px; }
  .ct-info-label { font-size: 9.5px; }
  .ct-info-val { font-size: 0.8rem; }
  .ct-info-socials { gap: 7px; margin-bottom: 16px; }
  .ct-info-socials a { width: 32px; height: 32px; border-radius: 8px; font-size: 12px; }
  .ct-trust-strip { display: none; }

  /* Form panel */
  .ct-form-wrap { padding: 26px 20px 24px; border-left: none; border-top: 1px solid #e2e8f0; }

  /* Stepper */
  .ct-stepper { margin-bottom: 22px; align-items: flex-start; }
  .ct-stepper-dot { width: 30px; height: 30px; font-size: 12px; }
  .ct-stepper-step span { font-size: 9.5px; letter-spacing: 0; }
  .ct-stepper-bar { margin: 14px 6px 0; }

  /* Step panels */
  .ct-panel-title { font-size: 1.02rem; margin-bottom: 3px; }
  .ct-panel-sub { font-size: 0.8rem; margin-bottom: 16px; }

  /* Step 1 — service cards 2-col */
  .ct-svc-grid { grid-template-columns: repeat(2,1fr); gap: 8px; margin-bottom: 18px; }
  .ct-svc-card { padding: 14px 8px 12px; gap: 7px; border-radius: 10px; }
  .ct-svc-icon { width: 34px; height: 34px; border-radius: 9px; font-size: 14px; }
  .ct-svc-card span { font-size: 10.5px; line-height: 1.3; }

  /* Step 2 — single column */
  .ct-detail-grid { grid-template-columns: 1fr; gap: 14px; }
  .ct-label { font-size: 0.8rem; margin-bottom: 6px; }
  .ct-input { padding: 12px 13px 12px 38px; font-size: 0.88rem; border-radius: 8px; }
  .ct-input-icon { font-size: 13px; left: 13px; }
  .ct-err { font-size: 10.5px; }

  /* Budget — 2 per row */
  .ct-budget-row { gap: 8px; }
  .ct-budget-btn { flex: 1 1 calc(50% - 8px); padding: 11px 6px;
                   font-size: 11px; border-radius: 8px;
                   line-height: 1.3; white-space: normal; text-align: center; }

  /* Step 3 */
  .ct-textarea { padding: 12px 13px; font-size: 0.88rem;
                 border-radius: 8px; min-height: 110px; }
  .ct-char-count { font-size: 9.5px; }
  .ct-privacy-note { font-size: 10.5px; margin-bottom: 14px; }

  /* Nav row */
  .ct-nav { display: flex; flex-direction: row; gap: 8px; margin-top: 16px; }
  .ct-btn-back { flex: 1; justify-content: center; padding: 11px 12px;
                 font-size: 0.83rem; border-radius: 8px; }
  .ct-btn-next { flex: 2; justify-content: center; padding: 11px 16px;
                 font-size: 0.86rem; border-radius: 8px; }
  .ct-submit-btn { width: 100%; justify-content: center;
                   padding: 13px 20px; font-size: 0.9rem; border-radius: 8px; }

  /* Alert */
  .ct-alert { padding: 14px 15px; gap: 10px; border-radius: 8px; }
  .ct-alert div strong { font-size: 0.87rem; }
  .ct-alert div p { font-size: 0.8rem; }

  /* Process */
  .ct-process-sec { padding: 48px 0 56px; }
  .ct-process-heading { font-size: 1.4rem; }
  .ct-process-grid { grid-template-columns: repeat(2,1fr); gap: 36px 20px; }
  .ct-process-grid::before { display: none; }
  .ct-process-icon { width: 48px; height: 48px; font-size: 18px; margin-bottom: 12px; }
  .ct-process-card h6 { font-size: 0.82rem; margin-bottom: 6px; }
  .ct-process-card p { font-size: 0.76rem; }

  /* Trust band */
  .ct-trust-sec { padding: 0 0 44px; }
  .ct-trust-band { grid-template-columns: 1fr 1fr; border-radius: 12px; }
  .ct-trust-block { padding: 18px 14px; gap: 10px; }
  .ct-trust-block:nth-child(2) { border-right: none; }
  .ct-trust-block:nth-child(3) { border-top: 1px solid #e2e8f0; }
  .ct-trust-block:nth-child(4) { border-top: 1px solid #e2e8f0; border-right: none; }
  .ct-trust-icon { width: 40px; height: 40px; font-size: 16px; border-radius: 10px; }
  .ct-trust-txt strong { font-size: 0.84rem; }
  .ct-trust-txt span { font-size: 0.74rem; }

  /* FAQ */
  .ct-faq-sec { padding: 48px 0 56px; }
  .ct-faq-title { font-size: 1.45rem; }
  .ct-faq-intro { font-size: 0.83rem; }
  .ct-faq-cta { padding: 10px 20px; font-size: 0.83rem; }
  .ct-faq-q { padding: 14px 0; gap: 10px; }
  .ct-faq-q span:not(.ct-faq-num) { font-size: 0.85rem; }
  .ct-faq-num { font-size: 10px; padding: 2px 7px; }
  .ct-faq-a { font-size: 0.81rem; padding-left: 0; padding-bottom: 14px; }

  /* Map */
  .ct-map-sec { padding: 0 0 48px; }
  .ct-map-wrap { border-radius: 12px; }
  .ct-map-card { padding: 14px 16px; gap: 12px; flex-wrap: wrap; border-radius: 10px; }
  .ct-map-pin-wrap { width: 38px; height: 38px; border-radius: 9px; font-size: 14px; }
  .ct-map-card-text strong { font-size: 0.83rem; }
  .ct-map-card-text span { font-size: 0.74rem; }
  .ct-map-dir { width: 100%; justify-content: center; font-size: 11.5px; margin-top: 4px; }
}

/* ── ≤575px — small phones ──────────────────────────────── */
@media (max-width: 575px) {

  .ct-quick-sec { padding: 16px 0 0; }
  .ct-quick-card { padding: 12px 15px; gap: 11px; }
  .ct-quick-icon { width: 40px; height: 40px; font-size: 16px; }
  .ct-quick-lbl { font-size: 9.5px; }
  .ct-quick-body strong { font-size: 0.8rem; }

  .ct-main-sec { padding: 22px 0 30px; }
  .ct-grid { border-radius: 12px; }

  .ct-info-body { padding: 22px 18px 20px; }
  .ct-info-logo img { height: 34px; }
  .ct-info-head { font-size: 1.1rem; }
  .ct-info-sub { font-size: 0.78rem; margin-bottom: 14px; }
  .ct-info-item { padding: 10px 0; }
  .ct-info-icon { width: 32px; height: 32px; font-size: 12px; }
  .ct-info-val { font-size: 0.77rem; }
  .ct-info-socials a { width: 30px; height: 30px; font-size: 11px; }

  .ct-form-wrap { padding: 22px 18px 20px; }

  /* Stepper — dots only */
  .ct-stepper { margin-bottom: 18px; }
  .ct-stepper-dot { width: 26px; height: 26px; font-size: 11px; }
  .ct-stepper-step span { display: none; }
  .ct-stepper-bar { margin: 12px 4px 0; }

  .ct-svc-grid { gap: 7px; margin-bottom: 14px; }
  .ct-svc-card { padding: 12px 6px 10px; gap: 6px; }
  .ct-svc-icon { width: 30px; height: 30px; font-size: 12px; }
  .ct-svc-card span { font-size: 9.5px; }

  .ct-detail-grid { gap: 12px; }
  .ct-input { padding: 11px 12px 11px 35px; font-size: 0.85rem; }
  .ct-input-icon { font-size: 12px; left: 12px; }

  .ct-budget-row { gap: 6px; }
  .ct-budget-btn { flex: 1 1 calc(50% - 6px); padding: 10px 4px; font-size: 10px; }

  .ct-btn-back { padding: 10px 10px; font-size: 0.8rem; }
  .ct-btn-next { padding: 10px 14px; font-size: 0.83rem; }
  .ct-submit-btn { padding: 12px 16px; font-size: 0.87rem; }

  .ct-process-sec { padding: 40px 0 48px; }
  .ct-process-grid { grid-template-columns: 1fr; gap: 30px; }
  .ct-process-card { padding: 0 10px; }

  .ct-trust-block { padding: 15px 11px; gap: 9px; }
  .ct-trust-icon { width: 36px; height: 36px; font-size: 14px; }
  .ct-trust-txt strong { font-size: 0.8rem; }
  .ct-trust-txt span { font-size: 0.7rem; }

  .ct-faq-sec { padding: 40px 0 48px; }
  .ct-faq-title { font-size: 1.3rem; }
  .ct-faq-q span:not(.ct-faq-num) { font-size: 0.82rem; }

  .ct-map-card { padding: 12px 14px; gap: 10px; }
  .ct-map-pin-wrap { width: 34px; height: 34px; }
}

/* ── ≤400px — very small ────────────────────────────────── */
@media (max-width: 400px) {

  .ct-quick-card { padding: 11px 12px; gap: 10px; }
  .ct-quick-icon { width: 36px; height: 36px; font-size: 15px; }
  .ct-quick-body strong { font-size: 0.76rem; }

  .ct-grid { border-radius: 10px; }
  .ct-info-body { padding: 18px 14px 16px; }
  .ct-form-wrap { padding: 18px 14px 18px; }

  .ct-panel-title { font-size: 0.95rem; }
  .ct-panel-sub { font-size: 0.76rem; margin-bottom: 12px; }

  .ct-stepper-dot { width: 24px; height: 24px; font-size: 10px; }
  .ct-stepper-bar { margin: 11px 3px 0; }

  .ct-svc-grid { gap: 5px; }
  .ct-svc-card { padding: 10px 4px 8px; border-radius: 8px; }
  .ct-svc-card span { font-size: 9px; }

  .ct-detail-grid { gap: 10px; }
  .ct-budget-btn { font-size: 9.5px; padding: 9px 2px; }

  .ct-btn-back { padding: 9px 8px; font-size: 0.76rem; }
  .ct-btn-next { padding: 9px 10px; font-size: 0.79rem; }
  .ct-submit-btn { padding: 11px 12px; font-size: 0.84rem; }

  .ct-process-card { padding: 0; }
  .ct-process-card h6 { font-size: 0.78rem; }
  .ct-process-card p { font-size: 0.73rem; }

  .ct-trust-block { padding: 13px 9px; }
  .ct-trust-txt strong { font-size: 0.77rem; }
  .ct-trust-txt span { font-size: 0.67rem; }

  .ct-faq-title { font-size: 1.2rem; }
  .ct-faq-q span:not(.ct-faq-num) { font-size: 0.8rem; }
}
