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

html {
  overscroll-behavior: none;
  overscroll-behavior-y: contain;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #0a0a0a;
  overscroll-behavior: none;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

/* =============================================
   PRIMARY NAVBAR — floating glass pill
   ============================================= */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  max-width: 1100px;
  z-index: 100;
  background: rgba(10, 10, 30, 0.45);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 60px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 24px;
  gap: 16px;
}

/* Navbar shrunk state — solid white glass */
.navbar.shrink {
  top: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(30px) saturate(1.6);
  -webkit-backdrop-filter: blur(30px) saturate(1.6);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.navbar.shrink .navbar-center {
  opacity: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
  padding: 0;
  margin: 0;
}

.navbar.shrink .navbar-logo-text {
  color: #0a0a0a;
}

.navbar.shrink .navbar-logo-icon {
  background: #4a6cf7;
}

.navbar.shrink .navbar-logo-icon svg path {
  fill: #fff;
  stroke: #fff;
}

.navbar.shrink .navbar-cta {
  background: #4a6cf7;
  color: #fff;
  border-color: #4a6cf7;
}

.navbar.shrink .navbar-cta:hover {
  background: #3b5de7;
  border-color: #3b5de7;
  box-shadow: 0 4px 16px rgba(74, 108, 247, 0.35);
}

.navbar.shrink .navbar-cta-dot {
  background: #22c55e;
}

/* Navbar hidden state (deep scroll) */
.navbar.hidden {
  transform: translateX(-50%) translateY(-140%);
  opacity: 0;
  pointer-events: none;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(74, 108, 247, 0.5);
  border-radius: 10px;
  transition: background 0.4s ease;
}

.navbar-logo-text {
  font-family: 'Funnel Display', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.3px;
  transition: color 0.4s ease;
}

/* Center nav links container */
.navbar-center {
  flex: 1;
  display: flex;
  justify-content: center;
  transition: all 0.4s ease;
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding: 4px;
}

.navbar-links a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 18px;
  border-radius: 30px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.navbar-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.navbar-links a.navbar-link-active {
  color: #fff;
  background: #4a6cf7;
  font-weight: 600;
}

/* CTA button */
.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #4a6cf7;
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 22px 10px 16px;
  border-radius: 40px;
  border: 1px solid rgba(74, 108, 247, 0.6);
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar-cta:hover {
  background: #3b5de7;
  border-color: #3b5de7;
  box-shadow: 0 4px 20px rgba(74, 108, 247, 0.4);
  transform: translateY(-1px);
}

.navbar-cta-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: navPulse 2s infinite;
}

@keyframes navPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.navbar-cta svg {
  width: 14px;
  height: 14px;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-cta:hover svg {
  transform: translateX(3px);
  opacity: 1;
}

/* Mobile hamburger toggle button — hidden on desktop */
.navbar-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  flex-direction: column;
  gap: 5px;
  padding: 9px 8px;
  transition: background 0.3s ease;
}

.navbar-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}

.navbar-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger → X animation when menu is open */
.navbar--menu-open .navbar-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar--menu-open .navbar-toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar--menu-open .navbar-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown menu — hidden by default */
.navbar-mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(10, 10, 30, 0.95);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 8px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.navbar--menu-open .navbar-mobile-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.navbar-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.navbar-mobile-links a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  padding: 14px 20px;
  border-radius: 14px;
  transition: all 0.2s ease;
}

.navbar-mobile-links a:hover,
.navbar-mobile-links a.navbar-link-active {
  color: #fff;
  background: rgba(74, 108, 247, 0.2);
}

.navbar-mobile-links a.navbar-link-active {
  background: #4a6cf7;
  font-weight: 600;
}

/* =============================================
   STICKY TOPBAR (scroll-up from deep)
   ============================================= */
.topbar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  display: flex;
  justify-content: center;
  padding: 1rem 2rem;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.topbar-wrap.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 700px;
  padding: 24px;
  background: #fff;
  border-radius: 20px;
  font-size: 18px;
  line-height: 28px;
  color: #666;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s, transform 0.4s;
}

.topbar:hover {
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.1);
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.topbar-left .logo {
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  text-decoration: none;
  line-height: 28px;
}

.topbar-greeting {
  font-size: 14px;
  line-height: 14px;
  color: #666;
}

.topbar-right {
  display: flex;
  align-items: center;
}

.topbar-cta {
  font-family: 'Funnel Display', sans-serif;
  font-size: 14px;
  line-height: 14px;
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.3s;
}

.topbar-cta:hover {
  color: #4a6cf7;
}

.topbar-divider {
  width: 1px;
  height: 24px;
  background: #e3e3e3;
  margin: 0 20px;
}

/* 5-dot menu */
.topbar-menu {
  position: relative;
  width: 21px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.topbar-menu:hover {
  transform: scale(1.15);
}

.topbar-menu .dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #0a0a0a;
  border-radius: 50%;
}

.topbar-menu .dot-top { top: 0; left: 50%; transform: translateX(-50%); }
.topbar-menu .dot-left { top: 50%; left: 0; transform: translateY(-50%); }
.topbar-menu .dot-center { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.topbar-menu .dot-right { top: 50%; right: 0; transform: translateY(-50%); }
.topbar-menu .dot-bottom { bottom: 0; left: 50%; transform: translateX(-50%); }

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  background: #e8edf5;
  border-radius: 0 0 20px 20px;
  margin: 0;
  overflow: hidden;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 58%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  right: -5%;
  width: 55%;
  height: 100%;
  background: linear-gradient(to left, #e8edf5 15%, transparent 100%);
  z-index: 1;
}

/* Vertical services strip — infinite scroll */
.hero-strip {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 48px;
  background: #0d1b4a;
  z-index: 4;
  overflow: hidden;
}

.hero-strip-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  animation: stripScroll 40s linear infinite;
  will-change: transform;
}

@keyframes stripScroll {
  0% { top: 0; }
  100% { top: -50%; }
}

.hero-strip-track span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.strip-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #4a6cf7;
  stroke-width: 2;
}

.hero-strip-dot {
  color: #4a6cf7;
  font-size: 16px;
  flex-shrink: 0;
}

/* Available badge */
.hero-available {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0d1b4a;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-available-dot {
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: heroPulse 2s ease infinite;
}

@keyframes heroPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 90vh;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  padding: 100px 80px 100px 120px;
  gap: 60px;
}

/* Hero left - typography */
.hero-left {
  flex: 1;
  text-align: left;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #0a0a0a;
  max-width: 360px;
  margin-bottom: 36px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.hero-title-big {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(60px, 8vw, 130px);
  line-height: 0.9;
  color: #0a0a0a;
  letter-spacing: -5px;
  font-weight: 700;
}

.hero-title-sub {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(60px, 8vw, 130px);
  line-height: 1.15;
  color: #0a0a0a;
  letter-spacing: -4px;
  font-weight: 700;
  padding-left: clamp(40px, 6vw, 100px);
}

.hero-title-switcher {
  display: inline-grid;
  overflow: hidden;
  height: 1.15em;
  vertical-align: bottom;
}

.hero-title-switcher > .hero-title-word {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.hero-title-word--active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.hero-title-word--exit {
  opacity: 0 !important;
  transform: translateY(-110%) !important;
}

.hero-guaranteed {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(30px, 4vw, 56px);
  font-style: italic;
  font-weight: 600;
  color: #4a6cf7;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 8px;
  letter-spacing: -1px;
}

.hero-guaranteed svg {
  flex-shrink: 0;
}

/* Hero floating quote + card (right side, inspired by Pixora) */
.hero-float-right {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-60%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.hero-float-quote {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  text-align: right;
  line-height: 1.4;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  animation: heroFadeIn 0.7s ease 0.8s both;
}

.hero-float-card {
  width: 200px;
  height: 130px;
  border-radius: 14px;
  overflow: hidden;
  transform: rotate(4deg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
  animation: heroBadgeScale 0.5s cubic-bezier(0.22, 1, 0.36, 1) 1s both;
  border: 2px solid rgba(255,255,255,0.2);
}

.hero-float-card:hover {
  transform: rotate(0deg) scale(1.05);
}

.hero-float-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero bottom service categories bar */
.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  padding: 28px 80px 28px 120px;
  background: linear-gradient(to top, #0d1b4a 0%, rgba(13,27,74,0.85) 60%, transparent 100%);
}

.hero-bottom-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-bottom-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.15);
  padding-right: 24px;
}

.hero-bottom-num {
  font-family: 'Funnel Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: #7b93fa;
  letter-spacing: 1px;
}

.hero-bottom-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

/* Hero right - CTA card + profile card */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  width: 340px;
  align-self: flex-end;
  z-index: 3;
}

/* CTA card */
.hero-cta-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.hero-cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #0a0a0a;
  margin-bottom: 18px;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0d1b4a;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  border: 1px solid #0d1b4a;
  transition: background 0.3s;
  cursor: pointer;
}

.hero-cta-btn:hover {
  background: #162558;
}

.hero-cta-email {
  display: block;
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(10,10,10,0.55);
}

.hero-cta-email strong {
  color: #0a0a0a;
}

/* Profile card */
.hero-card {
  display: flex;
  background: #fff;
  border-radius: 20px;
  padding: 10px;
  width: 100%;
  height: 150px;
  gap: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.hero-card-avatar {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
}

.hero-card-img {
  width: 130px;
  height: 130px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.hero-card-info {
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  flex: 1;
}

.hero-card-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 6px;
}

.hero-card-name {
  font-family: 'Funnel Display', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  color: #0a0a0a;
  letter-spacing: -0.5px;
}

.hero-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  text-decoration: none;
  font-family: 'Funnel Display', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: #0a0a0a;
  transition: opacity 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hero-card-btn:hover {
  opacity: 0.7;
}

.hero-card-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4a6cf7;
  flex-shrink: 0;
}

.hero-card-btn-text {
  letter-spacing: 0.5px;
}

/* =============================================
   ABOUT COMPANY SECTION
   ============================================= */
.about-section {
  background: #f5f5f5;
  padding: 100px 40px 60px;
  max-width: 100% !important;
  overflow: hidden;
}

.about-inner {
  max-width: 1320px;
  margin: 0 auto;
}

/* Top: label + heading */
.about-top {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.about-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  color: #666;
  white-space: nowrap;
  padding-top: 12px;
}

.about-heading {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.2;
  color: #0a0a0a;
  letter-spacing: -1px;
  max-width: 800px;
}

/* Cards row */
.about-cards {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 60px;
}

.about-card {
  position: relative;
  border-radius: 16px;
  padding: 40px 32px;
  flex: 1;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: #ccc;
}

.about-card-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.about-card-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.about-card-icon {
  margin-top: auto;
  padding-top: 24px;
}

/* Tilted card (left) */
.about-card--tilted {
  background: #fff;
  color: #0a0a0a;
  transform: rotate(-6deg);
  transform-origin: bottom left;
}

.about-card--tilted:hover {
  transform: rotate(-6deg) translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.about-card--tilted .about-card-text {
  color: #666;
}

.about-card--tilted .about-card-icon {
  color: #0a0a0a;
}

/* Dark card (center) */
.about-card--dark {
  background: #0d1b4a;
  color: #fff;
  border-color: #0d1b4a;
}

.about-card--dark .about-card-text {
  color: rgba(255, 255, 255, 0.6);
}

.about-card--dark .about-card-icon {
  color: #fff;
}

/* Light card (right) */
.about-card--light {
  background: #fff;
  color: #0a0a0a;
}

.about-card--light .about-card-text {
  color: #666;
}

.about-card--light .about-card-icon {
  color: #0a0a0a;
}

/* =============================================
   LOGO MARQUEE
   ============================================= */
.marquee-section {
  background: #f5f5f5;
  padding: 40px 0;
  max-width: 100% !important;
  overflow: hidden;
}

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

.marquee-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.marquee-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.3);
  opacity: 0.7;
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.marquee-logo:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =============================================
   EXPERTISE / SERVICES SECTION
   ============================================= */
.expertise-section {
  background: linear-gradient(160deg, #1a0a3e 0%, #0d1b4a 30%, #142866 60%, #1a3a7a 100%);
  padding: 100px 40px;
  max-width: 100% !important;
  overflow: hidden;
}

.expertise-inner {
  max-width: 1320px;
  margin: 0 auto;
}

/* Header: label + line */
.expertise-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.expertise-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.expertise-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(74, 108, 247, 0.6), transparent);
}

/* Heading */
.expertise-heading {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  max-width: 780px;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

/* Cards — horizontal scroll for 5 cards */
.expertise-cards {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.expertise-cards::-webkit-scrollbar {
  display: none;
}

.expertise-card {
  scroll-snap-align: start;
  min-width: 280px;
  width: 280px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.expertise-card-num {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #bbb;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.expertise-card-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 21px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.expertise-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #666;
  margin-bottom: 24px;
}

.expertise-card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  background: rgba(74, 108, 247, 0.06);
  border-radius: 14px;
}

.expertise-card:hover .expertise-card-icon {
  background: rgba(74, 108, 247, 0.1);
}

.expertise-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.expertise-card-tags span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555;
  background: #f5f5f5;
  border: 1px solid #eaeaea;
  border-radius: 20px;
  padding: 5px 14px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.expertise-card-tags span:hover {
  background: rgba(74, 108, 247, 0.08);
  color: #4a6cf7;
}

/* Expand toggle — hidden on desktop */
.expertise-card-toggle {
  display: none;
}

/* More Services button */
.expertise-more {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  justify-content: center;
  padding: 16px 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  margin: 0 auto;
  width: fit-content;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.expertise-more:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.expertise-more-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, transform 0.3s ease;
}

.expertise-more:hover .expertise-more-icon {
  background: #4a6cf7;
  transform: translateY(3px);
}

.expertise-more:hover .expertise-more-icon svg {
  stroke: #fff;
}

.expertise-more-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.expertise-more:hover .expertise-more-text {
  color: #fff;
}

/* =============================================
   TESTIMONIAL MARQUEE
   ============================================= */
.testimonial-marquee {
  background: linear-gradient(160deg, #0d1b4a 0%, #142866 50%, #1a3a7a 100%);
  padding: 28px 0;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: testimonial-scroll 25s linear infinite;
}

.testimonial-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-item span {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

@keyframes testimonial-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #4a6cf7;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(74, 108, 247, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #3a5ce5;
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(74, 108, 247, 0.5);
}

/* =============================================
   SHOWCASE GALLERY MARQUEE
   ============================================= */
/* =============================================
   SHOWCASE GALLERY — infinite marquee
   ============================================= */
.showcase-gallery {
  background: #0a0a0a;
  padding: 60px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-gallery .showcase-row {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.showcase-gallery .showcase-track {
  display: flex;
  /* NO gap — use margin-right on cards so every card (including last)
     contributes the same spacing. This makes translateX(-50%) seamless. */
  will-change: transform;
}

.showcase-gallery .showcase-row--left .showcase-track {
  animation: showcaseScrollLeft 30s linear infinite;
}

.showcase-gallery .showcase-row--right .showcase-track {
  animation: showcaseScrollRight 30s linear infinite;
}

@keyframes showcaseScrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes showcaseScrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ---- Card base ---- */
.showcase-gallery .showcase-card {
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  margin-right: 20px;
  position: relative;
}

.showcase-gallery .showcase-card--wide {
  width: 520px;
}

.showcase-gallery .showcase-card--tall {
  width: 300px;
}

/* ---- Video cards (YouTube Shorts 9:16) ---- */
.showcase-gallery .showcase-card--video {
  width: 260px;
  background: #0a0a0a;
}

/* object-fit doesn't work on iframes, so we scale the iframe
   slightly larger than the container and let overflow:hidden crop it */
.showcase-gallery .showcase-card--video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

/* ---- Image cards ---- */
.showcase-gallery .showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.showcase-gallery .showcase-card:hover img {
  transform: scale(1.05);
}

/* ---- Text cards ---- */
.showcase-gallery .showcase-card--text {
  width: 400px;
  background: #f5f5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.showcase-gallery .showcase-card--text-dark {
  background: linear-gradient(160deg, #1a0a3e 0%, #0d1b4a 50%, #142866 100%);
}

.showcase-gallery .showcase-card--text-dark .showcase-text-content span {
  color: #fff;
}

.showcase-gallery .showcase-text-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.showcase-gallery .showcase-text-content span {
  font-family: 'Funnel Display', serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #0a0a0a;
}

/* Pause animation on hover */
.showcase-gallery:hover .showcase-track {
  animation-play-state: paused;
}

/* =============================================
   LIGHT SERVICES ACCORDION
   ============================================= */
.svc-section {
  background: #f5f5f5;
  padding: 100px 40px;
  max-width: 100% !important;
}

.svc-inner {
  max-width: 940px;
  margin: 0 auto;
}

.svc-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #4a6cf7;
  padding-left: 16px;
  border-left: 3px solid #4a6cf7;
  margin-bottom: 20px;
}

.svc-intro {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.5;
  color: #0a0a0a;
  max-width: 520px;
  margin-bottom: 56px;
}

.svc-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}

.svc-item {
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.svc-item:first-child {
  border-top: 1px solid #e0e0e0;
}

.svc-item.svc-item--active {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin: 8px 0;
}

.svc-item.svc-item--active + .svc-item {
  border-top: none;
}

/* Row */
.svc-row {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 20px;
}

.svc-row:hover {
  background: rgba(0, 0, 0, 0.01);
}

.svc-item.svc-item--active .svc-row:hover {
  background: none;
}

.svc-num {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #c0c0c0;
  min-width: 24px;
  transition: color 0.3s;
}

.svc-item.svc-item--active .svc-num {
  color: #4a6cf7;
}

.svc-name {
  font-family: 'Funnel Display', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #0a0a0a;
  text-align: left;
  flex: 1;
  transition: font-weight 0.3s;
}

.svc-item.svc-item--active .svc-name {
  font-weight: 600;
}

.svc-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eef0f4;
  color: #888;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.svc-toggle svg {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svc-toggle--open svg {
  transform: rotate(180deg);
}

.svc-item.svc-item--active .svc-toggle {
  background: #0a0a0a;
  color: #fff;
}

/* Detail panel */
.svc-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svc-detail-body {
  display: flex;
  gap: 40px;
  padding: 0 28px 20px;
}

.svc-detail-left {
  flex: 1;
  min-width: 0;
}

.svc-detail-right {
  width: 340px;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.svc-detail-right .svc-detail-img:first-child {
  grid-column: 1 / -1;
  height: 160px;
}

.svc-detail-right .svc-detail-img:nth-child(2) {
  height: 120px;
}

.svc-detail-right .svc-detail-img:nth-child(3) {
  height: 120px;
}

.svc-detail-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 24px;
  color: #555;
  margin-bottom: 20px;
}

.svc-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}

.svc-detail-list li {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: #333;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.svc-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a6cf7' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.svc-detail-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #4a6cf7;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.svc-detail-cta:hover {
  background: #3a5ce5;
  box-shadow: 0 4px 14px rgba(74, 108, 247, 0.3);
}

.svc-detail-cta svg {
  transition: transform 0.25s ease;
}

.svc-detail-cta:hover svg {
  transform: translateX(3px);
}

.svc-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-detail-img:hover {
  transform: scale(1.03);
}

.svc-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.svc-detail-tags span {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #4a6cf7;
  background: rgba(74, 108, 247, 0.07);
  border: 1px solid rgba(74, 108, 247, 0.12);
  border-radius: 20px;
  padding: 3px 9px;
}

/* Tools marquee */
.svc-tools {
  padding: 16px 28px 24px;
  border-top: 1px solid #f0f0f0;
}

.svc-tools-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 14px;
}

.svc-tools-slider {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.svc-tools-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: svc-tools-scroll 20s linear infinite;
}

.svc-tools-track:hover {
  animation-play-state: paused;
}

.svc-tools-track img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(80%);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s, transform 0.3s;
}

.svc-tools-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.15);
}

@keyframes svc-tools-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Let's Talk button */
.svc-talk-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  background: #0a0a0a;
  color: #fff;
  padding: 18px 36px;
  border-radius: 14px;
  width: 100%;
  transition: all 0.35s ease;
}

.svc-talk-btn:hover {
  background: #4a6cf7;
  box-shadow: 0 6px 20px rgba(74, 108, 247, 0.3);
}

.svc-talk-btn svg {
  transition: transform 0.3s ease;
}

.svc-talk-btn:hover svg {
  transform: translateX(4px);
}

.svc-talk-text {
  font-family: 'Funnel Display', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: inherit;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section {
  background: #fff;
  padding: 100px 40px;
  max-width: 100% !important;
  overflow: hidden;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.why-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}

.why-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  white-space: nowrap;
}

.why-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #4a6cf7, rgba(74, 108, 247, 0.2), transparent);
}

.why-heading {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.3;
  color: #0a0a0a;
  max-width: 600px;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #ccc;
}

.why-card-icon {
  margin-bottom: 20px;
}

.why-card-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.why-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #666;
}

/* =============================================
   BLOG / INSIGHTS
   ============================================= */
.blog-section {
  background: #fff;
  padding: 100px 40px 80px;
  overflow: hidden;
}

.blog-inner {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}

.blog-label {
  display: inline-block;
  font-family: 'Funnel Display', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #0a0a0a;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.blog-heading {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: #0a0a0a;
  letter-spacing: -1.5px;
  margin-bottom: 60px;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

/* Blog card */
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* Image wrapper */
.blog-card-img-wrap {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card-img-wrap:hover .blog-card-img {
  transform: scale(1.05);
}

/* Plus button on hover */
.blog-card-plus {
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: #0d1b4a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.blog-card-img-wrap:hover .blog-card-plus {
  opacity: 1;
  transform: translateY(0);
}

/* Card body (dark holder) */
.blog-card-body {
  background: #0d1b4a;
  border-radius: 20px;
  padding: 24px 28px;
  margin-top: -4px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-card-cat {
  font-family: 'Funnel Display', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-date {
  font-family: 'Funnel Display', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.blog-card-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 14px;
  color: #fff;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

.blog-card-title a:hover {
  opacity: 0.7;
}

/* =============================================
   VISIONARY BRANDING CTA
   ============================================= */
.vb-section {
  background: linear-gradient(160deg, #1a0a3e 0%, #0d1b4a 30%, #142866 60%, #1a3a7a 100%);
  border-radius: 40px;
  margin: 0 20px;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.vb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Two-column row */
.vb-row {
  display: flex;
  gap: 60px;
  align-items: stretch;
  margin-bottom: 80px;
}

/* Left column: text content */
.vb-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}

.vb-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.vb-heading {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(36px, 4vw, 57px);
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -1.14px;
  margin-bottom: 20px;
}

.vb-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: rgb(184, 188, 196);
  margin-bottom: 36px;
  max-width: 460px;
}

/* Checklist */
.vb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vb-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Funnel Display', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.vb-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  min-width: 25px;
  background: rgba(74, 108, 247, 0.35);
  border-radius: 50%;
}

.vb-check svg {
  width: 13px;
  height: 13px;
  color: #fff;
}

/* Right column: image card */
.vb-right {
  flex: 1;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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

.vb-img-text {
  position: relative;
  z-index: 2;
  font-family: 'Funnel Display', sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
  padding: 50px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
}

.vb-highlight {
  background: #4a6cf7;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Clients row */
.vb-clients {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}

.vb-clients-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.vb-clients-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.vb-client-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.4;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.vb-client-logo:hover {
  opacity: 0.8;
  filter: brightness(0) invert(1);
}

/* =============================================
   GET IN TOUCH / CONTACT SECTION
   ============================================= */
.contact-section {
  background: #fff;
  padding: 100px 40px;
  max-width: 100% !important;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  white-space: nowrap;
}

.contact-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #e0e0e0, transparent);
}

.contact-heading {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.3;
  color: #0a0a0a;
  max-width: 700px;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

.contact-content {
  display: flex;
  gap: 60px;
}

/* Left: card + address */
.contact-left {
  flex-shrink: 0;
  width: 340px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: #f5f5f5;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 40px;
}

.contact-card-img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
}

.contact-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-card-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  color: #999;
}

.contact-card-name {
  font-family: 'Funnel Display', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0a0a0a;
}

.contact-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  width: 100%;
  margin-top: 4px;
}

.contact-card-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0a0a0a;
  border: 1px solid #0a0a0a;
}

.contact-card-btn span:last-child {
  font-family: 'Funnel Display', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0a0a0a;
}

.contact-address {
  padding-left: 4px;
}

.contact-address-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 14px;
}

.contact-address p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 22px;
  color: #666;
}

.contact-address p strong {
  color: #0a0a0a;
  font-weight: 600;
}

/* Right: form */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-input,
.contact-select,
.contact-textarea {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px 18px;
  color: #0a0a0a;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #999;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: rgba(74, 108, 247, 0.5);
  box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.15);
}

.contact-select-wrap {
  position: relative;
}

.contact-select {
  appearance: none;
  cursor: pointer;
}

.contact-select option {
  background: #fff;
  color: #0a0a0a;
}

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

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  align-self: flex-start;
}

.contact-submit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  transition: background 0.3s, border-color 0.3s;
}

.contact-submit:hover .contact-submit-icon {
  background: #0a0a0a;
  border-color: #0a0a0a;
}

.contact-submit:hover .contact-submit-icon svg path {
  fill: #fff;
}

.contact-submit span:last-child {
  font-family: 'Funnel Display', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0a0a0a;
  transition: color 0.3s;
}

.contact-submit:hover span:last-child {
  color: #4a6cf7;
}

/* =============================================
   SITE FOOTER (CTA BANNER + FOOTER CARDS)
   ============================================= */
.site-footer {
  background: linear-gradient(160deg, #1a0a3e 0%, #0d1b4a 30%, #142866 60%, #1a3a7a 100%);
  padding: 0;
  overflow: hidden;
}

/* ---- CTA Banner ---- */
.foot-cta {
  position: relative;
  padding: 120px 60px 0;
  overflow: hidden;
  min-height: 550px;
}

.foot-cta-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}


/* CTA top question */
.foot-cta-top {
  margin-bottom: 80px;
}

.foot-cta-question {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.foot-cta-question strong {
  color: #fff;
  font-weight: 400;
}

/* CTA center headings */
.foot-cta-center {
  text-align: right;
  max-width: 900px;
  margin-left: auto;
}

.foot-cta-line1 {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0;
}

.foot-cta-line2 {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(60px, 9vw, 130px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -5px;
  line-height: 1;
  margin-bottom: 24px;
}

.foot-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.3s;
}

.foot-cta-link:hover {
  opacity: 0.7;
}

.foot-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  text-decoration: none;
  transition: border-color 0.3s;
}

.foot-cta-link:hover .foot-cta-arrow {
  border-color: #fff;
}

/* CTA bottom bar */
.foot-cta-bar {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.foot-cta-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.foot-cta-dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

/* ---- Footer Cards ---- */
.foot-cards {
  display: flex;
  gap: 16px;
  max-width: 1320px;
  margin: 60px auto 0;
  padding: 0 60px 80px;
}

.foot-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}

.foot-card-main {
  flex: 2;
}

.foot-card-side {
  flex: 1.2;
}

/* Logo */
.foot-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}

.foot-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #fff;
  color: #0a0a0a;
  font-family: 'Funnel Display', sans-serif;
  font-weight: 700;
  font-size: 18px;
  border-radius: 10px;
}

.foot-logo-text {
  font-family: 'Funnel Display', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.5px;
}

.foot-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  max-width: 340px;
}

.foot-tagline strong {
  color: #fff;
  font-weight: 600;
}

/* Footer card bottom */
.foot-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.foot-copy {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* Navigation pills */
.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.foot-nav-pill {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 8px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  transition: all 0.3s;
}

.foot-nav-pill:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

/* Social title + icons */
.foot-social-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.foot-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.foot-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s;
}

.foot-social-icon:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

/* Newsletter */
.foot-newsletter {
  width: 100%;
}

.foot-newsletter-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 14px;
}

.foot-newsletter-label svg {
  opacity: 0.6;
}

.foot-newsletter-form {
  position: relative;
  display: flex;
  align-items: center;
}

.foot-newsletter-input {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  padding: 14px 56px 14px 22px;
  outline: none;
  transition: border-color 0.3s;
}

.foot-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.foot-newsletter-input:focus {
  border-color: rgba(255, 255, 255, 0.45);
}

.foot-newsletter-btn {
  position: absolute;
  right: 6px;
  width: 40px;
  height: 40px;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.foot-newsletter-btn:hover {
  background: #e0e0e0;
}

.foot-privacy {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 12px;
}

.foot-privacy a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =============================================
   HOW WE WORK
   ============================================= */
/* =============================================
   HOW WE WORK — Reference-inspired card layout
   ============================================= */
.hww-section {
  background: #f5f5f5;
  padding: 100px 40px;
}

.hww-inner {
  max-width: 1320px;
  margin: 0 auto;
}

/* Header: two-column row (label left, content right) */
.hww-header-row {
  display: flex;
  gap: 60px;
  margin-bottom: 64px;
}

.hww-header-left {
  flex-shrink: 0;
  width: 220px;
  padding-top: 10px;
}

.hww-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hww-label-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0a0a0a;
  flex-shrink: 0;
}

.hww-label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #0a0a0a;
  letter-spacing: 0;
}

.hww-header-right {
  flex: 1;
}

.hww-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.1;
  letter-spacing: -3px;
  margin-bottom: 28px;
}

.hww-heading-dim {
  color: #999;
}

.hww-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #666;
  max-width: 520px;
  margin-bottom: 20px;
}

.hww-discover {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0a0a0a;
  text-decoration: none;
  border-bottom: 1px solid #0a0a0a;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.hww-discover:hover {
  color: #4a6cf7;
  border-color: #4a6cf7;
}

/* Cards grid */
.hww-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hww-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hww-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

/* Card top: title left, step number right */
.hww-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}

.hww-card-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.5px;
  line-height: 1.25;
  flex: 1;
}

.hww-card-step {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #bbb;
  flex-shrink: 0;
  margin-left: 12px;
}

/* Card mid: description */
.hww-card-mid {
  flex: 1;
}

.hww-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #888;
}

/* Card bottom: tags */
.hww-card-bottom {
  margin-top: auto;
  padding-top: 20px;
}

.hww-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hww-tag {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  background: #f5f5f5;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.2px;
  transition: background 0.3s ease, color 0.3s ease;
}

.hww-card:hover .hww-tag {
  background: #0a0a0a;
  color: #fff;
}

/* =============================================
   USER FEEDBACKS / TESTIMONIALS
   ============================================= */
.feedback-section {
  background: #f5f5f5;
  padding: 100px 40px 80px;
}

.feedback-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.feedback-top {
  margin-bottom: 0;
}

.feedback-label {
  display: block;
  font-family: 'Funnel Display', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #0a0a0a;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.feedback-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #4a6cf7, rgba(74, 108, 247, 0.2), transparent);
}

/* Hero row: heading + arrows */
.feedback-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 60px;
  gap: 40px;
}

.feedback-heading {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500;
  color: #0a0a0a;
  line-height: 1.2;
  letter-spacing: -1.5px;
  max-width: 650px;
}

.feedback-arrows {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.feedback-arrow {
  font-family: 'Funnel Display', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #0a0a0a;
  opacity: 0.4;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  letter-spacing: 0.5px;
  transition: opacity 0.3s;
}

.feedback-arrow:hover {
  opacity: 1;
}

/* Testimonial card */
.feedback-card {
  display: flex;
  background: #fff;
  border-radius: 20px;
  padding: 10px;
  gap: 0;
  min-height: 420px;
}

/* Left: Thumbnail image */
.feedback-thumb {
  flex-shrink: 0;
  width: 340px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.feedback-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
}

/* Center: Text content */
.feedback-text {
  flex: 1;
  padding: 40px 40px 30px;
  border-right: 1.5px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  position: relative;
}

.feedback-slide {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.feedback-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.feedback-star {
  color: #f59e0b;
  font-size: 16px;
  line-height: 1;
}

.feedback-quote {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  color: #0a0a0a;
  line-height: 1.35;
  letter-spacing: -0.5px;
  flex: 1;
}

.feedback-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1.5px solid #e5e5e5;
  padding-top: 20px;
  margin-top: 40px;
}

.feedback-author-name {
  font-family: 'Funnel Display', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #0a0a0a;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.feedback-author-role {
  font-family: 'Funnel Display', sans-serif;
  font-size: 14px;
  color: #666;
}

.feedback-author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #f5f5f5;
}

/* Right: Stats panel */
.feedback-stats {
  flex-shrink: 0;
  width: 200px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.feedback-stats-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.feedback-stats-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #0a0a0a;
  color: #fff;
  font-family: 'Funnel Display', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px;
}

.feedback-stats-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #0a0a0a;
  text-transform: uppercase;
}

.feedback-stat {
  text-align: center;
}

.feedback-stat-label {
  display: block;
  font-family: 'Funnel Display', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.feedback-stat-value {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 500;
  color: #0a0a0a;
  letter-spacing: -2px;
  line-height: 1;
}


/* =============================================
   SWIPE DOTS & MOBILE HELPERS
   ============================================= */
.swipe-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  padding: 20px 0 4px;
}

.swipe-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swipe-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #0a0a0a;
}

/* Dark section dots variant */
.expertise-section .swipe-dot {
  background: rgba(255, 255, 255, 0.2);
}

.expertise-section .swipe-dot.active {
  background: #fff;
}

/* Swipe hint indicator */
.swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.35);
  margin-top: 4px;
}

.swipe-hint svg {
  animation: swipeHintPulse 2s ease-in-out infinite;
}

@keyframes swipeHintPulse {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(6px); opacity: 1; }
}

/* Dark variant */
.expertise-section .swipe-hint {
  color: rgba(255, 255, 255, 0.3);
}

/* =============================================
   SCROLL REVEAL SYSTEM
   ============================================= */
[data-animate] {
  opacity: 0;
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-left"] {
  transform: translateX(-40px);
}

[data-animate="fade-right"] {
  transform: translateX(40px);
}

[data-animate="scale-up"] {
  transform: scale(0.92);
}

[data-animate="text-reveal"] {
  filter: blur(8px);
  transform: translateY(20px);
}

[data-animate="label-slide"] {
  transform: translateX(-30px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
  filter: blur(0);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =============================================
   HERO ENTRANCE ANIMATIONS
   ============================================= */
@keyframes heroClipReveal {
  from {
    clip-path: inset(100% 0 0 0);
    transform: translateY(30px);
  }
  to {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroBadgeScale {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes heroCardSlide {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes checkmarkDraw {
  from { stroke-dashoffset: 20; }
  to   { stroke-dashoffset: 0; }
}

.hero-title-big {
  animation: heroClipReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero-title-sub {
  animation: heroClipReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.hero-guaranteed {
  animation: heroClipReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.hero-subtitle {
  animation: heroFadeIn 0.7s ease 0.5s both;
}

.hero-available {
  animation: heroBadgeScale 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

.hero-cta-card {
  animation: heroCardSlide 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

.hero-card {
  animation: heroCardSlide 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

.hero-guaranteed svg path {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: checkmarkDraw 0.6s ease 0.9s forwards;
}

/* =============================================
   GRADIENT ANIMATED TEXT
   ============================================= */
.gradient-text-animated {
  background: linear-gradient(
    90deg,
    #4a6cf7 0%,
    #7b93fa 25%,
    #a8bcff 50%,
    #7b93fa 75%,
    #4a6cf7 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroClipReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both,
             gradientShift 4s linear 1s infinite;
}

@keyframes gradientShift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* =============================================
   LINE DRAW ANIMATION
   ============================================= */
.line-draw {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.line-draw.is-visible {
  transform: scaleX(1);
}

/* =============================================
   3D CARD TILT
   ============================================= */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

/* =============================================
   MICRO-INTERACTIONS
   ============================================= */
.hero-cta-btn:active,
.navbar-cta:active,
.foot-cta-link:active,
.contact-submit:active,
.contact-card-btn:active {
  transform: scale(0.97);
  transition: transform 0.1s ease;
}

.foot-social-icon:hover {
  transform: scale(1.15);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s, border-color 0.3s;
}

/* =============================================
   PARALLAX HELPER
   ============================================= */
.vb-img[data-parallax] {
  transition: transform 0.1s linear;
  will-change: transform;
}

@media (max-width: 900px) {
  .swipe-dots {
    display: flex;
  }
  .swipe-dots[data-swipe="expertise-cards"],
  .swipe-dots[data-swipe="blog-grid"] {
    display: none;
  }
  .swipe-hint {
    display: flex;
  }
}

/* =============================================
   INNER PAGES — SHARED
   ============================================= */

/* Page Hero */
.page-hero {
  background: linear-gradient(160deg, #1a0a3e 0%, #0d1b4a 30%, #142866 60%, #1a3a7a 100%);
  padding: 160px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74,108,247,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.page-hero-breadcrumb a:hover {
  color: #fff;
}

.page-hero-breadcrumb .breadcrumb-sep {
  color: rgba(255,255,255,0.3);
}

.page-hero-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -3px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Stats Bar */
.stats-bar {
  background: #f5f5f5;
  padding: 40px 24px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stats-bar-item {
  text-align: center;
}

.stats-bar-num {
  font-family: 'Funnel Display', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -1px;
}

.stats-bar-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #888;
  margin-top: 4px;
}

/* Inner page content sections */
.inner-section {
  padding: 100px 40px;
}

.inner-section-wrap {
  max-width: 1320px;
  margin: 0 auto;
}

.inner-section-dark {
  background: linear-gradient(160deg, #1a0a3e 0%, #0d1b4a 30%, #142866 60%, #1a3a7a 100%);
}

.inner-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #4a6cf7;
  margin-bottom: 16px;
}

.inner-heading {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.inner-heading--light {
  color: #fff;
}

.inner-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  max-width: 700px;
}

.inner-desc--light {
  color: rgba(255,255,255,0.6);
}

/* ---- ABOUT PAGE ---- */
.about-intro-section {
  padding: 100px 40px;
}

.about-intro-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-intro-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #444;
  line-height: 1.8;
}

.about-intro-text p + p {
  margin-top: 20px;
}

.about-social-links {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.about-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.2s;
}

.about-social-link:hover {
  border-color: #4a6cf7;
  color: #4a6cf7;
  background: rgba(74,108,247,0.06);
}

.about-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-counter-item {
  text-align: center;
  padding: 40px 20px;
  background: #f8f8f8;
  border-radius: 16px;
}

.about-counter-num {
  font-family: 'Funnel Display', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -2px;
}

.about-counter-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #888;
  margin-top: 8px;
}

/* Team Section */
/* ---- ROADMAP ---- */
.roadmap-section {
  padding: 100px 40px;
  background: #f8f8f8;
}

.roadmap-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.roadmap-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 40px;
}

.roadmap-line {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #4a6cf7 0%, #4a6cf7 60%, #e5e5e5 60%, #e5e5e5 100%);
  border-radius: 2px;
}

.roadmap-item {
  position: relative;
  text-align: center;
  flex: 1;
  padding: 0 12px;
}

.roadmap-dot {
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.roadmap-dot::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}

.roadmap-dot--done {
  background: #4a6cf7;
}

.roadmap-dot--progress {
  background: #4a6cf7;
  box-shadow: 0 0 0 4px rgba(74, 108, 247, 0.2);
  animation: roadmapPulse 2s ease infinite;
}

.roadmap-dot--upcoming {
  background: #d4d4d4;
}

@keyframes roadmapPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74, 108, 247, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(74, 108, 247, 0.1); }
}

.roadmap-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.roadmap-badge--done {
  background: #4a6cf7;
  color: #fff;
}

.roadmap-badge--progress {
  background: #4a6cf7;
  color: #fff;
}

.roadmap-badge--upcoming {
  background: transparent;
  color: #666;
  border: 1px solid #d4d4d4;
}

.roadmap-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 6px;
}

.roadmap-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* ---- PROJECT SHOWCASE CAROUSEL ---- */
.showcase-section {
  padding: 100px 40px;
  background: #fff;
  overflow: hidden;
}

.showcase-section .showcase-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.showcase-section .showcase-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.showcase-section .showcase-nav {
  display: flex;
  gap: 8px;
}

.showcase-section .showcase-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  cursor: pointer;
  transition: all 0.25s;
}

.showcase-section .showcase-arrow:hover:not(:disabled) {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}

.showcase-section .showcase-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.showcase-section .showcase-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.showcase-section .showcase-track::-webkit-scrollbar {
  display: none;
}

.showcase-section .showcase-card {
  flex-shrink: 0;
  width: 280px;
  scroll-snap-align: start;
  cursor: pointer;
}

.showcase-section .showcase-card-img {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 14px;
  transition: transform 0.3s;
}

.showcase-section .showcase-card:hover .showcase-card-img {
  transform: translateY(-4px);
}

.showcase-section .showcase-card-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.showcase-section .showcase-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.showcase-section .showcase-card-category {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.showcase-section .showcase-card-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.showcase-section .showcase-card-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.showcase-section .showcase-card-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0a0a0a;
}

.showcase-section .showcase-card-badge {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.showcase-section .showcase-card-badge--new {
  background: #4a6cf7;
  color: #fff;
}

/* ---- SERVICES PAGE ---- */
.svc-highlight-section {
  padding: 100px 40px;
}

.svc-highlight-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.svc-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 50px;
}

.svc-highlight-card {
  background: #f8f8f8;
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.svc-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.svc-highlight-num {
  font-family: 'Funnel Display', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(74,108,247,0.08);
  line-height: 1;
  margin-bottom: 20px;
}

.svc-highlight-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.svc-highlight-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.svc-highlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-highlight-tag {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #888;
  background: rgba(0,0,0,0.04);
  padding: 6px 14px;
  border-radius: 20px;
}

/* Capabilities */
.capabilities-section {
  padding: 100px 40px;
  background: #f8f8f8;
}

.capabilities-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.capability-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.capability-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(74,108,247,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #4a6cf7;
}

.capability-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 8px;
}

.capability-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

/* ---- LEGAL / POLICY PAGES ---- */
.legal-section {
  padding: 80px 40px 100px;
}

.legal-inner {
  max-width: 860px;
  margin: 0 auto;
}

.legal-updated {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #888;
  margin-bottom: 40px;
}

.legal-intro {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e8e8e8;
}

.legal-block {
  margin-bottom: 40px;
}

.legal-block h2 {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.legal-block h3 {
  font-family: 'Funnel Display', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 10px;
}

.legal-block p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-block ul,
.legal-block ol {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 14px 24px;
}

.legal-block li {
  margin-bottom: 8px;
}

.legal-block strong {
  color: #0a0a0a;
}

.legal-block a {
  color: #4a6cf7;
  text-decoration: none;
}

.legal-block a:hover {
  text-decoration: underline;
}

.legal-notice {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  border-left: 4px solid #4a6cf7;
}

.legal-contact-box {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 32px;
  margin-top: 48px;
}

.legal-contact-box h3 {
  font-family: 'Funnel Display', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 16px;
}

.legal-contact-box p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 4px;
}

/* ---- PRICING SECTION ---- */
.pricing-section {
  padding: 100px 40px;
}

.pricing-inner {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}

.pricing-toggle {
  display: inline-flex;
  background: #f0f0f0;
  border-radius: 40px;
  padding: 4px;
  margin-bottom: 60px;
}

.pricing-toggle-btn {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 28px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: #666;
  transition: all 0.3s;
}

.pricing-toggle-btn.active {
  background: #0a0a0a;
  color: #fff;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}

.pricing-card {
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  transition: transform 0.3s;
}

a.pricing-card {
  text-decoration: none;
  color: inherit;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card--light {
  background: #f5f5f5;
}

.pricing-card--dark {
  background: linear-gradient(160deg, #1a0a3e 0%, #0d1b4a 30%, #142866 60%, #1a3a7a 100%);
  color: #fff;
}

.pricing-card--dark::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74,108,247,0.5) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 30px;
  width: fit-content;
  margin-bottom: 32px;
}

.pricing-card--light .pricing-card-badge {
  background: #fff;
  color: #0a0a0a;
  border: 1px solid #e0e0e0;
}

.pricing-card--dark .pricing-card-badge {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}

.pricing-card-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.pricing-card-title-italic {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -1px;
  line-height: 1.1;
}

.pricing-card--light .pricing-card-title-italic {
  color: #0a0a0a;
}

.pricing-card--dark .pricing-card-title-italic {
  color: rgba(255,255,255,0.7);
}

.pricing-card-title-bold {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.pricing-card--light .pricing-card-title-bold {
  color: #0a0a0a;
}

.pricing-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.pricing-card--light .pricing-card-desc {
  color: #888;
}

.pricing-card--dark .pricing-card-desc {
  color: rgba(255,255,255,0.6);
}

.pricing-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0a0a0a;
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  margin-bottom: 40px;
  width: fit-content;
}

.pricing-card--dark .pricing-price-pill {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

.pricing-price-from {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.7;
}

.pricing-price-amount {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
}

.pricing-price-unit {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.7;
}

.pricing-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-card-global {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
}

.pricing-card--light .pricing-card-global {
  color: #666;
}

.pricing-card--dark .pricing-card-global {
  color: rgba(255,255,255,0.6);
}

.pricing-card-global svg {
  width: 24px;
  height: 24px;
  opacity: 0.5;
}

.pricing-card-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.pricing-card--light .pricing-card-arrow {
  background: #e8e8e8;
  color: #0a0a0a;
}

.pricing-card--dark .pricing-card-arrow {
  background: rgba(255,255,255,0.9);
  color: #0a0a0a;
}

.pricing-card:hover .pricing-card-arrow {
  transform: rotate(-45deg) scale(1.1);
}

/* Service Catalog */
.svc-catalog {
  padding: 100px 40px;
  background: #fafafa;
}

.svc-catalog-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.svc-category {
  margin-bottom: 100px;
}

.svc-category:last-child {
  margin-bottom: 0;
}

.svc-category-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: none;
  position: relative;
}

.svc-category-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #4a6cf7 0%, rgba(74,108,247,0.1) 40%, transparent 100%);
}

.svc-category-letter {
  font-family: 'Funnel Display', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4a6cf7 0%, #3b5de7 100%);
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(74,108,247,0.25);
}

.svc-category-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -1.5px;
}

.svc-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-catalog-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.svc-catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: rgba(74,108,247,0.12);
}

.svc-catalog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #4a6cf7, #6c8cff);
  border-radius: 0 0 4px 0;
  transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-catalog-card:hover::before {
  height: 100%;
}

.svc-catalog-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #4a6cf7;
  background: rgba(74,108,247,0.06);
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.svc-catalog-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 21px;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.svc-catalog-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* Category nav pills */
.svc-nav {
  padding: 0 40px 60px;
}

.svc-nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.svc-nav-pill {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  background: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.svc-nav-pill:hover {
  background: #f0f4ff;
  color: #4a6cf7;
  border-color: rgba(74,108,247,0.2);
}

.svc-nav-pill.active {
  background: #4a6cf7;
  color: #fff;
  border-color: #4a6cf7;
  box-shadow: 0 4px 16px rgba(74,108,247,0.3);
}

/* Stats row on services page */
.svc-stats {
  padding: 60px 40px;
  background: #f8f8f8;
}

.svc-stats-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.svc-stats-inner > div {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.svc-stats-inner > div:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.svc-stat-num {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}

.svc-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #888;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---- BLOG PAGE ---- */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.blog-filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  background: #f5f5f5;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s;
}

.blog-filter-btn:hover {
  color: #0a0a0a;
  background: #eee;
}

.blog-filter-btn.active {
  color: #fff;
  background: #4a6cf7;
}

.blog-grid--page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}

.blog-page-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  background: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.blog-page-btn:hover {
  border-color: #4a6cf7;
  color: #4a6cf7;
}

.blog-page-btn.active {
  background: #4a6cf7;
  border-color: #4a6cf7;
  color: #fff;
}

/* ---- CONTACT PAGE ---- */
.contact-full-section {
  padding: 100px 40px;
}

.contact-full-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
}

.contact-full-sidebar {
  flex: 0 0 380px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(74,108,247,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a6cf7;
  flex-shrink: 0;
}

.contact-info-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #888;
  margin-bottom: 4px;
}

.contact-info-value {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #0a0a0a;
  font-weight: 500;
}

.contact-full-form {
  flex: 1;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.contact-form-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #0a0a0a;
  margin-bottom: 8px;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #0a0a0a;
  background: #f8f8f8;
  border: 1.5px solid #e5e5e5;
  border-radius: 12px;
  padding: 14px 18px;
  transition: border-color 0.2s;
  outline: none;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
  border-color: #4a6cf7;
}

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

.contact-form-submit {
  width: 100%;
  padding: 16px;
  background: #4a6cf7;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}

.contact-form-submit:hover {
  background: #3a5ce5;
  transform: translateY(-2px);
}

.contact-form-submit svg {
  flex-shrink: 0;
}

.contact-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Contact info link style */
.contact-info-label,
.contact-info-value {
  display: block;
}

.contact-info-link {
  text-decoration: none;
  color: #0a0a0a;
  transition: color 0.2s;
}

.contact-info-link:hover {
  color: #4a6cf7;
}

/* Contact page hero — extra padding for floating cards */
.contact-page-hero {
  padding-bottom: 120px;
}

/* ---- CONTACT QUICK CARDS ---- */
.contact-cards-section {
  padding: 0 40px;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

.contact-cards-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contact-quick-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.contact-quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(74, 108, 247, 0.15);
}

.contact-quick-card--wa:hover {
  border-color: rgba(37, 211, 102, 0.3);
}

.contact-quick-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(74, 108, 247, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a6cf7;
  flex-shrink: 0;
}

.contact-quick-card--wa .contact-quick-icon {
  background: rgba(37, 211, 102, 0.08);
  color: #25D366;
}

.contact-quick-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
}

.contact-quick-value {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.4;
}

.contact-quick-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4a6cf7;
  margin-top: auto;
  transition: gap 0.3s;
}

.contact-quick-card:hover .contact-quick-action {
  gap: 10px;
}

.contact-quick-action--muted {
  color: #888;
  font-weight: 500;
}

/* ---- CONTACT MAP SECTION ---- */
.contact-map-section {
  padding: 100px 40px 0;
}

.contact-map-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.contact-map-header {
  margin-bottom: 40px;
}

.contact-map-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 450px;
}

/* ---- CONTACT FAQ SECTION ---- */
.contact-faq-section {
  padding: 100px 40px;
}

.contact-faq-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.contact-faq-header {
  margin-bottom: 50px;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-faq-item {
  background: #f8f8f8;
  border-radius: 20px;
  padding: 36px 32px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.contact-faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  background: #fff;
}

.contact-faq-q {
  font-family: 'Funnel Display', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.contact-faq-a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* ---- CONTACT PAGE RESPONSIVE ---- */
@media (max-width: 1024px) {
  .contact-cards-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-cards-section {
    padding: 0 20px;
    margin-top: -40px;
  }

  .contact-cards-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-quick-card {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
  }

  .contact-quick-icon {
    width: 48px;
    height: 48px;
  }

  .contact-quick-label {
    font-size: 11px;
    margin-bottom: 2px;
  }

  .contact-quick-value {
    font-size: 15px;
  }

  .contact-quick-action {
    display: none;
  }

  .contact-map-section {
    padding: 60px 20px 0;
  }

  .contact-map-wrap iframe {
    height: 300px;
  }

  .contact-faq-section {
    padding: 60px 20px;
  }

  .contact-faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-faq-item {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .contact-cards-section {
    padding: 0 16px;
    margin-top: -30px;
  }

  .contact-quick-card {
    padding: 16px 20px;
    border-radius: 16px;
  }

  .contact-map-section {
    padding: 50px 16px 0;
  }

  .contact-map-wrap {
    border-radius: 16px;
  }

  .contact-map-wrap iframe {
    height: 250px;
  }

  .contact-faq-section {
    padding: 50px 16px;
  }

  .contact-faq-item {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .contact-faq-q {
    font-size: 17px;
  }
}

/* ---- HIRE PAGE ---- */
.hire-value-section {
  padding: 100px 40px;
}

.hire-value-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.hire-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.hire-value-card {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 40px 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hire-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.hire-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(74,108,247,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a6cf7;
  margin-bottom: 20px;
}

.hire-value-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 10px;
}

.hire-value-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #888;
  line-height: 1.7;
}

.hire-form-section {
  padding: 100px 40px;
  background: #f8f8f8;
}

.hire-form-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.hire-process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.hire-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.hire-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(74,108,247,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Funnel Display', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #4a6cf7;
  flex-shrink: 0;
}

.hire-step-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 6px;
}

.hire-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

/* Awards Marquee */
.awards-marquee-wrap {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
}

.awards-marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: awardsScroll 20s linear infinite;
}

.awards-marquee-item {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0 20px;
  flex-shrink: 0;
}

@keyframes awardsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hww-section {
    padding: 60px 24px;
  }

  .hww-header-row {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }

  .hww-header-left {
    width: auto;
  }

  .hww-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hww-card {
    min-height: auto;
    padding: 24px;
  }

  .blog-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .blog-card {
    width: 100%;
  }

  .blog-section {
    padding: 60px 24px;
  }

  .about-top {
    flex-direction: column;
    gap: 20px;
  }

  /* === SWIPEABLE CARD CAROUSELS === */
  .about-cards {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 16px;
    margin: 0 -24px;
    padding: 0 24px 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .about-cards::-webkit-scrollbar { display: none; }

  .about-card {
    scroll-snap-align: center;
    min-width: 82vw;
    flex-shrink: 0;
  }

  .about-section {
    padding: 60px 24px 40px;
  }

  .about-card--tilted {
    transform: rotate(0deg);
  }

  .about-card--tilted:hover {
    transform: translateY(-4px);
  }

  .expertise-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .expertise-card {
    width: 100%;
    position: relative;
  }

  .expertise-card-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f0f0;
    border: none;
    cursor: pointer;
    color: #666;
    transition: transform 0.3s ease, background 0.2s;
  }

  .expertise-card-toggle svg {
    transition: transform 0.3s ease;
  }

  .expertise-card.expertise-card--expanded .expertise-card-toggle svg {
    transform: rotate(180deg);
  }

  .expertise-card.expertise-card--expanded .expertise-card-toggle {
    background: #4a6cf7;
    color: #fff;
  }

  .expertise-card-desc,
  .expertise-card-icon {
    display: none;
  }

  .expertise-card.expertise-card--expanded .expertise-card-desc,
  .expertise-card.expertise-card--expanded .expertise-card-icon {
    display: block;
  }

  .expertise-card.expertise-card--expanded {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
  }

  .expertise-section {
    padding: 60px 24px;
  }

  .why-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 16px;
    margin: 0 -24px;
    padding: 0 24px 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .why-grid::-webkit-scrollbar { display: none; }

  .why-card {
    scroll-snap-align: center;
    min-width: 78vw;
    flex-shrink: 0;
  }

  .why-section {
    padding: 60px 24px;
  }

  .contact-content {
    flex-direction: column;
  }

  .contact-left {
    width: 100%;
  }

  .contact-section {
    padding: 60px 24px;
  }

  .feedback-section {
    padding: 60px 24px;
  }

  .feedback-card {
    flex-direction: column;
  }

  .feedback-thumb {
    width: 100%;
    height: 280px;
    border-radius: 14px;
  }

  .feedback-thumb-img {
    position: relative;
    height: 280px;
  }

  .feedback-text {
    border-right: none;
    border-bottom: 1.5px solid #e5e5e5;
    padding: 30px 24px;
  }

  .feedback-stats {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    padding: 24px;
  }

  .feedback-stats-logo {
    margin-bottom: 0;
  }

  .feedback-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .foot-cta {
    padding: 80px 24px 0;
  }

  .foot-cards {
    padding: 0 24px 60px;
  }


  .svc-section {
    padding: 60px 20px;
  }

  .svc-num {
    display: none;
  }

  .svc-row {
    gap: 10px;
    padding: 16px 16px;
  }

  .svc-item.svc-item--active .svc-row {
    padding: 16px 20px;
  }

  .svc-name {
    font-size: 16px;
  }

  .svc-toggle {
    width: 30px;
    height: 30px;
  }

  .svc-detail-body {
    flex-direction: column;
    gap: 20px;
    padding: 4px 20px 20px;
  }

  .svc-detail-right {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .svc-detail-right .svc-detail-img:first-child {
    height: 140px;
  }

  .svc-detail-right .svc-detail-img:nth-child(2),
  .svc-detail-right .svc-detail-img:nth-child(3) {
    height: 100px;
  }

  .svc-detail-desc {
    max-width: 100%;
  }

  .svc-detail-list {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .svc-detail-img {
    width: 100%;
    height: 200px;
    border-radius: 12px;
  }

  .svc-detail-cta {
    width: 100%;
    justify-content: center;
  }

  .svc-talk-btn {
    padding: 16px 24px;
    border-radius: 12px;
  }

  .svc-tools {
    padding: 12px 20px 20px;
  }

  .svc-tools-track {
    gap: 28px;
  }

  .svc-tools-track img {
    width: 26px;
    height: 26px;
  }

  .vb-inner {
    padding: 0 30px;
  }

  .vb-row {
    gap: 40px;
  }

  .vb-right {
    min-height: 420px;
  }

  .vb-img-text {
    font-size: 24px;
    padding: 40px;
  }

  /* Inner pages — 1024px */
  .page-hero {
    padding: 140px 24px 60px;
  }

  .about-intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .roadmap-timeline {
    gap: 8px;
  }

  .roadmap-desc {
    font-size: 12px;
  }

  .showcase-section .showcase-card {
    width: 260px;
  }

  .showcase-section .showcase-card-img img {
    height: 320px;
  }

  .svc-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-catalog {
    padding: 80px 24px;
  }

  .capabilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-full-inner {
    flex-direction: column;
  }

  .contact-full-sidebar {
    flex: unset;
  }

  .hire-form-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hire-value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inner-section {
    padding: 70px 24px;
  }
}

@media (max-width: 1200px) {
  .hero-float-right {
    right: 40px;
  }
  .hero-float-quote {
    font-size: 17px;
  }
  .hero-float-card {
    width: 160px;
    height: 105px;
  }
}

@media (max-width: 900px) {
  #hero {
    min-height: auto;
  }

  .hero-bg {
    width: 100%;
    height: 50%;
    top: 0;
  }

  .hero-bg-overlay {
    width: 100%;
    right: 0;
    height: 60%;
    bottom: 0;
    top: auto;
    background: linear-gradient(to top, #e8edf5 20%, transparent 100%);
  }

  .hero-strip {
    display: none;
  }

  .hero-available {
    top: 20px;
    font-size: 12px;
    padding: 10px 20px;
  }

  .hero-float-right {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 0 24px;
    margin-top: -40px;
    margin-bottom: 20px;
    z-index: 5;
  }

  .hero-subtitle {
    max-width: 100%;
  }
  .hero-float-quote {
    font-size: 16px;
    text-align: left;
  }
  .hero-float-card {
    width: 140px;
    height: 90px;
  }
  .hero-bottom-bar {
    position: relative;
    padding: 20px 24px;
    flex-wrap: wrap;
    gap: 16px;
    background: #0d1b4a;
  }
  .hero-bottom-item {
    flex: 0 0 calc(50% - 8px);
  }
  .hero-bottom-item:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 80px 24px 50px;
    min-height: auto;
  }

  .hero-left {
    text-align: left;
    padding-top: 120px;
  }

  .hero-title-big {
    font-size: clamp(48px, 12vw, 80px);
    letter-spacing: -3px;
  }

  .hero-title-sub {
    font-size: clamp(48px, 12vw, 80px);
    padding-left: 40px;
  }

  .hero-guaranteed {
    font-size: clamp(24px, 6vw, 40px);
  }

  .hero-right {
    width: 100%;
    align-self: auto;
  }

  .hero-cta-card {
    width: 100%;
  }

  .hero-card {
    width: 100%;
    height: auto;
  }

  .hero-card-avatar {
    width: 100px;
    height: 100px;
  }

  .hero-card-img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .showcase-gallery { padding: 16px 0; gap: 10px; }
  .showcase-gallery .showcase-card { height: 200px; border-radius: 12px; margin-right: 12px; }
  .showcase-gallery .showcase-card--wide { width: 300px; }
  .showcase-gallery .showcase-card--tall { width: 180px; }
  .showcase-gallery .showcase-card--video { width: 140px; }
  .showcase-gallery .showcase-card--text { width: 220px; padding: 16px; }
  .showcase-gallery .showcase-text-content span { font-size: 14px; }
  .showcase-gallery .showcase-row--left .showcase-track { animation-duration: 15s; }
  .showcase-gallery .showcase-row--right .showcase-track { animation-duration: 15s; }

  .blog-heading {
    margin-bottom: 40px;
  }

  .navbar {
    width: calc(100% - 30px);
    top: 12px;
  }

  .navbar-inner {
    padding: 8px 8px 8px 20px;
    gap: 12px;
  }

  .navbar-center {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-mobile-menu {
    display: block;
  }

  .navbar-cta {
    font-size: 13px;
    padding: 9px 16px 9px 14px;
  }

  .navbar--menu-open {
    border-radius: 20px;
  }

  .navbar.shrink .navbar-toggle-line {
    background: #0a0a0a;
  }

  .navbar.shrink .navbar-toggle {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.08);
  }

  .navbar.shrink .navbar-mobile-menu {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }

  .navbar.shrink .navbar-mobile-links a {
    color: rgba(10, 10, 30, 0.6);
  }

  .navbar.shrink .navbar-mobile-links a:hover {
    color: #0a0a0a;
    background: rgba(74, 108, 247, 0.08);
  }

  .navbar.shrink .navbar-mobile-links a.navbar-link-active {
    color: #fff;
    background: #4a6cf7;
  }

  .navbar.shrink .navbar--menu-open .navbar-toggle-line {
    background: #0a0a0a;
  }

  .topbar {
    max-width: 100%;
    padding: 16px 20px;
    border-radius: 16px;
  }

  .topbar-greeting {
    display: none;
  }

  .vb-section {
    margin: 0 10px;
    padding: 60px 0 50px;
    border-radius: 24px;
  }

  .vb-inner {
    padding: 0 20px;
  }

  .vb-row {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }

  .vb-heading {
    font-size: 32px;
  }

  .vb-right {
    min-height: 350px;
  }

  .vb-img-text {
    font-size: 20px;
    padding: 30px;
  }

  .vb-clients-logos {
    justify-content: center;
    gap: 20px;
  }

  .vb-client-logo {
    height: 22px;
  }

  .foot-cta {
    padding: 60px 20px 0;
    min-height: 400px;
  }

  .foot-cta-center {
    text-align: left;
  }

  .foot-cta-bar {
    flex-direction: column;
    gap: 10px;
  }

  .foot-cards {
    flex-direction: column;
    padding: 0 20px 50px;
    gap: 12px;
  }

  .foot-card {
    min-height: auto;
    padding: 30px;
    border-radius: 24px;
  }

  .foot-card-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
  }

  .foot-nav {
    justify-content: flex-start;
  }

  .foot-social-title {
    font-size: 22px;
  }

  /* Inner pages — 768px */
  .page-hero {
    padding: 120px 20px 50px;
  }

  .svc-page-hero {
    padding-bottom: 80px;
  }

  .svc-hero-tags {
    gap: 6px;
    margin-top: 24px;
  }

  .svc-hero-tag {
    font-size: 11px;
    padding: 5px 12px;
  }

  .page-hero-title {
    letter-spacing: -2px;
  }

  .roadmap-timeline {
    flex-direction: column;
    gap: 0;
    padding-top: 0;
  }

  .roadmap-line {
    top: 0;
    bottom: 0;
    left: 18px;
    right: auto;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #4a6cf7 0%, #4a6cf7 60%, #e5e5e5 60%, #e5e5e5 100%);
  }

  .roadmap-item {
    text-align: left;
    padding: 0 0 32px 50px;
  }

  .roadmap-dot {
    left: 18px;
    top: 4px;
    transform: translateX(-50%);
  }

  .showcase-section .showcase-nav {
    display: none;
  }

  .showcase-section .showcase-header {
    flex-direction: column;
    gap: 16px;
  }

  .showcase-section .showcase-card {
    width: 240px;
  }

  .showcase-section .showcase-card-img img {
    height: 300px;
  }

  .showcase-section,
  .roadmap-section,
  .about-intro-section,
  .svc-highlight-section,
  .capabilities-section,
  .contact-full-section,
  .hire-value-section,
  .hire-form-section {
    padding: 60px 20px;
  }

  .about-counters {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .svc-highlight-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    padding: 60px 20px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: 360px;
    padding: 36px 28px;
  }

  .legal-section {
    padding: 60px 20px 80px;
  }

  .careers-intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .careers-perks-grid {
    grid-template-columns: 1fr;
  }

  .careers-perks,
  .careers-openings,
  .careers-intro,
  .careers-cta-section {
    padding: 60px 20px;
  }

  .careers-job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .svc-catalog {
    padding: 60px 20px;
  }

  .svc-catalog-grid {
    grid-template-columns: 1fr;
  }

  .svc-category-letter {
    font-size: 22px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .svc-category {
    margin-bottom: 72px;
  }

  .svc-nav {
    padding: 0 20px 40px;
  }

  .capabilities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-grid--page {
    grid-template-columns: 1fr;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .hire-value-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    gap: 30px;
  }

  .inner-section {
    padding: 60px 20px;
  }
}


/* =============================================
   CAREERS PAGE
   ============================================= */

/* Careers Intro */
.careers-intro {
  padding: 100px 40px;
}

.careers-intro-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.careers-intro-text h2 {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.careers-intro-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

.careers-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.careers-stat-card {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.careers-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.careers-stat-num {
  display: block;
  font-family: 'Funnel Display', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #4a6cf7;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}

.careers-stat-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* Perks & Benefits */
.careers-perks {
  padding: 100px 40px;
  background: #f8f8f8;
}

.careers-perks-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.careers-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.careers-perk-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.careers-perk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.careers-perk-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(74, 108, 247, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #4a6cf7;
}

.careers-perk-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.careers-perk-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* Open Positions */
.careers-openings {
  padding: 100px 40px;
}

.careers-openings-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.careers-jobs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 50px;
}

.careers-job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: #f8f8f8;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.careers-job-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  background: #fff;
}

.careers-job-info h3 {
  font-family: 'Funnel Display', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.careers-job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.careers-job-meta span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #888;
  font-weight: 500;
  position: relative;
}

.careers-job-meta span:not(:last-child)::after {
  content: "\00b7";
  position: absolute;
  right: -10px;
  color: #ccc;
  font-weight: 700;
}

.careers-job-apply {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #4a6cf7;
  white-space: nowrap;
  transition: gap 0.3s;
}

.careers-job-card:hover .careers-job-apply {
  gap: 12px;
}

/* CTA Section */
.careers-cta-section {
  padding: 100px 40px;
  background: #f8f8f8;
}

.careers-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.careers-cta-inner h2 {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.careers-cta-inner p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 32px;
}

.careers-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #4a6cf7;
  color: #fff;
  border: none;
  border-radius: 60px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, gap 0.3s;
}

.careers-cta-btn:hover {
  background: #3b5de7;
  box-shadow: 0 8px 30px rgba(74, 108, 247, 0.35);
  gap: 14px;
}

/* Careers responsive — tablet */
@media (max-width: 1024px) {
  .careers-intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .careers-perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Careers responsive — mobile */
@media (max-width: 600px) {
  .careers-intro,
  .careers-perks,
  .careers-openings,
  .careers-cta-section {
    padding: 60px 20px;
  }

  .careers-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .careers-stat-card {
    padding: 24px 16px;
  }

  .careers-stat-num {
    font-size: 28px;
  }

  .careers-perks-grid {
    grid-template-columns: 1fr;
  }

  .careers-job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
  }

  .careers-job-apply {
    align-self: flex-start;
  }
}

/* =============================================
   HERO INLINE CARD (replaces "Delivered")
   ============================================= */
.hero-inline-card {
  width: 180px;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  transform: rotate(3deg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  margin-top: 10px;
  margin-left: auto;
  transition: transform 0.4s ease;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.hero-inline-card:hover {
  transform: rotate(0deg) scale(1.05);
}

.hero-inline-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Available badge inside bottom bar */
.hero-bottom-available {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 30px;
  flex-shrink: 0;
  margin-right: 24px;
}

/* Mobile text switcher fix */
@media (max-width: 900px) {
  .hero-title-switcher {
    display: inline-grid;
    height: 1.15em;
    max-width: 100%;
  }
  .hero-title-switcher > .hero-title-word {
    white-space: normal;
    font-size: inherit;
  }
  .hero-inline-card {
    width: 140px;
    height: 90px;
  }
  .hero-bottom-available {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-title-switcher {
    height: 1.2em;
  }
}

@media (max-width: 480px) {
  .hero-title-switcher {
    height: 2.4em;
  }
}

/* =============================================
   POPUP OVERLAY & WIDGET SYSTEM
   ============================================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 20px;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-widget {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.popup-overlay.active .popup-widget {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  background: #fff;
  font-size: 20px;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.popup-close:hover {
  background: #f5f5f5;
  color: #0a0a0a;
}

.popup-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.popup-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
}

.popup-input {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border: 1.5px solid #e5e5e5;
  border-radius: 12px;
  background: #fafafa;
  color: #0a0a0a;
  outline: none;
  transition: border-color 0.2s;
}

.popup-input:focus {
  border-color: #4a6cf7;
}

.popup-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  background: #0d1b4a;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
}

.popup-submit-btn:hover {
  background: #162558;
  box-shadow: 0 4px 20px rgba(13, 27, 74, 0.3);
}

.popup-submit-btn:disabled {
  background: #b0b8c9;
  cursor: not-allowed;
  box-shadow: none;
}

.popup-submit-btn svg {
  flex-shrink: 0;
}

/* Scheduler specific */
.scheduler-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.scheduler-calendar {
  border: 1.5px solid #e5e5e5;
  border-radius: 14px;
  padding: 16px;
}

.scheduler-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.scheduler-month-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
}

.scheduler-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.2s;
}

.scheduler-nav-btn:hover {
  background: #f5f5f5;
  color: #0a0a0a;
}

.scheduler-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 4px;
}

.scheduler-weekdays span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #aaa;
  padding: 6px 0;
}

.scheduler-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.scheduler-day {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  border: none;
  background: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #333;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scheduler-day:hover {
  background: #f0f2ff;
}

.scheduler-day.today {
  font-weight: 700;
  color: #4a6cf7;
}

.scheduler-day.selected {
  background: #4a6cf7;
  color: #fff;
  font-weight: 600;
}

.scheduler-day.disabled {
  color: #ddd;
  pointer-events: none;
}

.scheduler-day.other-month {
  color: #ccc;
}

.scheduler-times {
  border: 1.5px solid #e5e5e5;
  border-radius: 14px;
  padding: 16px;
  overflow-y: auto;
  max-height: 320px;
}

.scheduler-times-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #888;
  margin-bottom: 10px;
}

.scheduler-time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.scheduler-time-btn {
  padding: 10px 8px;
  border-radius: 10px;
  border: 1.5px solid #e5e5e5;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.15s;
}

.scheduler-time-btn:hover {
  border-color: #4a6cf7;
  color: #4a6cf7;
}

.scheduler-time-btn.selected {
  background: #4a6cf7;
  border-color: #4a6cf7;
  color: #fff;
  font-weight: 600;
}

.scheduler-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Hire widget specific */
.hire-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hire-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hire-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.hire-select {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border: 1.5px solid #e5e5e5;
  border-radius: 12px;
  background: #fafafa;
  color: #0a0a0a;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color 0.2s;
}

.hire-select:focus {
  border-color: #4a6cf7;
}

.hire-textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border: 1.5px solid #e5e5e5;
  border-radius: 12px;
  background: #fafafa;
  color: #0a0a0a;
  outline: none;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.2s;
}

.hire-textarea:focus {
  border-color: #4a6cf7;
}

.hire-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .popup-widget {
    padding: 24px;
    border-radius: 16px;
  }
  .scheduler-body {
    grid-template-columns: 1fr;
  }
  .hire-form-row {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   ENHANCED SERVICES CATALOG (services.html)
   ============================================= */

/* Sticky category nav */
/* Enhanced sticky nav */
.svc-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 250, 0.9);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 40px;
  transition: box-shadow 0.3s, background 0.3s;
}

.svc-nav.svc-nav--scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.95);
}

/* Learn More link inside catalog cards */
.svc-catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4a6cf7;
  text-decoration: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.04);
  width: 100%;
  transition: gap 0.3s, color 0.3s;
}

.svc-catalog-link:hover {
  gap: 10px;
  color: #3b5de7;
}

.svc-catalog-link svg {
  transition: transform 0.3s;
}

.svc-catalog-link:hover svg {
  transform: translateX(3px);
}

/* Mid-page CTA banners */
.svc-mid-cta {
  background: linear-gradient(160deg, #0d1b4a 0%, #142866 50%, #1a3a7a 100%);
  border-radius: 24px;
  padding: 64px 56px;
  margin: 20px 0 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.svc-mid-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 108, 247, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.svc-mid-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74, 108, 247, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.svc-mid-cta-text h3 {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.svc-mid-cta-text p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.svc-mid-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #fff;
  color: #0d1b4a;
  border: none;
  border-radius: 60px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  z-index: 1;
}

.svc-mid-cta-btn:hover {
  background: #4a6cf7;
  color: #fff;
  box-shadow: 0 8px 30px rgba(74, 108, 247, 0.4);
  gap: 14px;
}

/* Enhanced stats — floating cards */
.svc-stats {
  background: transparent;
  padding: 0 40px;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

.svc-stats-inner {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.06);
  padding: 0;
  overflow: hidden;
}

.svc-stats-inner > div {
  background: transparent;
  border-radius: 0;
  padding: 40px 24px;
  border: none;
  border-right: 1px solid rgba(0, 0, 0, 0.04);
}

.svc-stats-inner > div:last-child {
  border-right: none;
}

.svc-stats-inner > div:hover {
  transform: none;
  box-shadow: none;
  background: rgba(74, 108, 247, 0.02);
}

@media (max-width: 768px) {
  .svc-mid-cta {
    flex-direction: column;
    text-align: center;
    padding: 48px 28px;
    border-radius: 20px;
  }
  .svc-nav {
    padding: 12px 20px;
  }
  .svc-stats {
    padding: 0 20px;
    margin-top: -30px;
  }
  .svc-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-stats-inner > div {
    padding: 28px 16px;
  }
  .svc-stats-inner > div:nth-child(2) {
    border-right: none;
  }
  .svc-stats-inner > div:nth-child(1),
  .svc-stats-inner > div:nth-child(2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }
}

/* Services page hero — extra padding for floating stats */
.svc-page-hero {
  padding-bottom: 120px;
}

.svc-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}

.svc-hero-tag {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.3px;
}

/* Process / capabilities on services page — alternate bg */
.svc-catalog + .capabilities-section {
  background: #fff;
}

/* =============================================
   SERVICE DETAIL PAGE TEMPLATE
   ============================================= */

/* Overview: Two-column layout */
.svc-page-overview {
  padding: 100px 40px;
}

.svc-page-overview-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.svc-page-overview-text h2 {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.svc-page-overview-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.svc-page-overview-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.svc-page-overview-list li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
}

.svc-page-overview-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a6cf7' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.svc-page-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #4a6cf7;
  color: #fff;
  border: none;
  border-radius: 60px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s, gap 0.3s;
}

.svc-page-cta-btn:hover {
  background: #3b5de7;
  box-shadow: 0 8px 30px rgba(74, 108, 247, 0.35);
  gap: 14px;
}

.svc-page-overview-img {
  width: 100%;
  border-radius: 20px;
  background: #f5f5f5;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Placeholder for pages without images */
.svc-page-img-placeholder {
  width: 100%;
  border-radius: 20px;
  background: linear-gradient(160deg, #f0f2ff 0%, #e8edf5 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-page-img-placeholder svg {
  width: 80px;
  height: 80px;
  color: #4a6cf7;
  opacity: 0.3;
}

/* Features / What's Included */
.svc-page-features {
  padding: 100px 40px;
  background: #f8f8f8;
}

.svc-page-features-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.svc-page-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.svc-page-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.svc-page-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.svc-page-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(74, 108, 247, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.svc-page-feature-icon svg {
  width: 24px;
  height: 24px;
  color: #4a6cf7;
}

.svc-page-feature-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.svc-page-feature-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* Process — 3-step horizontal */
.svc-page-process {
  padding: 100px 40px;
}

.svc-page-process-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.svc-page-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.svc-page-process-step {
  background: #f8f8f8;
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
}

.svc-page-step-num {
  font-family: 'Funnel Display', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(74, 108, 247, 0.08);
  line-height: 1;
  margin-bottom: 16px;
}

.svc-page-step-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.svc-page-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* Why Choose Gosotek */
.svc-page-why {
  padding: 100px 40px;
  background: #f8f8f8;
}

.svc-page-why-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.svc-page-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.svc-page-why-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.svc-page-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.svc-page-why-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(74, 108, 247, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.svc-page-why-icon svg {
  width: 22px;
  height: 22px;
  color: #4a6cf7;
}

.svc-page-why-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 8px;
}

.svc-page-why-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Related Services */
.svc-page-related {
  padding: 100px 40px;
}

.svc-page-related-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.svc-page-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.svc-page-related-card {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  display: block;
}

.svc-page-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  background: #fff;
}

.svc-page-related-num {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #4a6cf7;
  background: rgba(74, 108, 247, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.svc-page-related-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.svc-page-related-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.svc-page-related-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4a6cf7;
}

.svc-page-related-card:hover .svc-page-related-link {
  gap: 10px;
}

/* Full-width CTA banner */
.svc-page-cta-banner {
  background: linear-gradient(160deg, #0d1b4a 0%, #142866 50%, #1a3a7a 100%);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.svc-page-cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 108, 247, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.svc-page-cta-banner-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.svc-page-cta-banner h2 {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.svc-page-cta-banner p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}

.svc-page-cta-banner .svc-page-cta-btn {
  background: #4a6cf7;
}

.svc-page-cta-banner .svc-page-cta-btn:hover {
  background: #3b5de7;
}

/* Service detail page responsive */
@media (max-width: 1024px) {
  .svc-page-overview-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .svc-page-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-page-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .svc-page-overview {
    padding: 60px 20px;
  }
  .svc-page-features {
    padding: 60px 20px;
  }
  .svc-page-process {
    padding: 60px 20px;
  }
  .svc-page-why {
    padding: 60px 20px;
  }
  .svc-page-related {
    padding: 60px 20px;
  }
  .svc-page-cta-banner {
    padding: 60px 20px;
  }
  .svc-page-features-grid {
    grid-template-columns: 1fr;
  }
  .svc-page-process-grid {
    grid-template-columns: 1fr;
  }
  .svc-page-why-grid {
    grid-template-columns: 1fr;
  }
  .svc-page-related-grid {
    grid-template-columns: 1fr;
  }
  .svc-page-overview-list {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   MOBILE — SMALL PHONES (≤480px)
   ============================================= */
@media (max-width: 480px) {
  .hero-left {
    padding-top: 100px;
  }

  .hero-title-big {
    font-size: clamp(40px, 13vw, 60px);
    letter-spacing: -2px;
  }

  .hero-title-sub {
    font-size: clamp(40px, 13vw, 60px);
    letter-spacing: -2px;
    padding-left: 20px;
  }

  .hero-subtitle {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .hero-guaranteed {
    font-size: clamp(20px, 6vw, 30px);
    flex-wrap: wrap;
  }

  .hero-content {
    padding: 60px 16px 40px;
  }

  .hero-bottom-bar {
    padding: 16px;
    gap: 12px;
  }

  .hero-bottom-item {
    flex: 0 0 calc(50% - 6px);
  }

  .hero-bottom-label {
    font-size: 12px;
  }

  .hero-bottom-num {
    font-size: 12px;
  }

  .hero-cta-card {
    padding: 20px;
  }

  .hero-cta-text {
    font-size: 14px;
  }

  .hero-cta-btn {
    font-size: 13px;
    padding: 12px 20px;
  }

  .hero-card-btn-text {
    font-size: 10px;
  }

  .hero-float-right {
    padding: 0 16px;
    margin-top: -20px;
  }

  .hero-float-quote {
    font-size: 14px;
  }

  .hero-float-card {
    width: 110px;
    height: 70px;
  }

  .hero-inline-card {
    width: 110px;
    height: 70px;
  }

  .about-section {
    padding: 50px 16px 30px;
  }

  .about-heading {
    font-size: 24px;
    letter-spacing: -1px;
  }

  .about-card {
    min-width: 85vw;
  }

  .expertise-section {
    padding: 50px 16px;
  }

  .svc-section {
    padding: 50px 16px;
  }

  .svc-row {
    padding: 14px 12px;
  }

  .svc-name {
    font-size: 14px;
  }

  .svc-detail-body {
    padding: 4px 12px 16px;
  }

  .feedback-section {
    padding: 50px 16px;
  }

  .feedback-text {
    padding: 24px 16px;
  }

  .feedback-quote {
    font-size: 16px;
  }

  .why-section {
    padding: 50px 16px;
  }

  .why-card {
    min-width: 85vw;
  }

  .showcase-gallery { padding: 12px 0; gap: 8px; }
  .showcase-gallery .showcase-card { height: 160px; border-radius: 10px; margin-right: 8px; }
  .showcase-gallery .showcase-card--wide { width: 220px; }
  .showcase-gallery .showcase-card--tall { width: 120px; }
  .showcase-gallery .showcase-card--video { width: 110px; }
  .showcase-gallery .showcase-card--text { width: 170px; padding: 12px; }
  .showcase-gallery .showcase-text-content span { font-size: 12px; }
  .showcase-gallery .showcase-row--left .showcase-track { animation-duration: 12s; }
  .showcase-gallery .showcase-row--right .showcase-track { animation-duration: 12s; }

  .blog-section {
    padding: 50px 16px;
  }

  .pricing-section {
    padding: 50px 16px;
  }

  .pricing-card {
    min-height: auto;
    padding: 28px 20px;
  }

  .vb-section {
    margin: 0 8px;
    padding: 50px 0 40px;
    border-radius: 20px;
  }

  .vb-inner {
    padding: 0 16px;
  }

  .vb-heading {
    font-size: 26px;
    letter-spacing: -1px;
  }

  .vb-desc {
    font-size: 14px;
  }

  .vb-right {
    min-height: 280px;
  }

  .vb-img-text {
    font-size: 16px;
    padding: 20px;
  }

  .vb-client-logo {
    height: 18px;
  }

  .contact-section {
    padding: 50px 16px;
  }

  .foot-cta {
    padding: 50px 16px 0;
    min-height: 360px;
  }

  .foot-cta-heading {
    font-size: 32px;
  }

  .foot-cards {
    padding: 0 16px 40px;
  }

  .foot-card {
    padding: 24px;
  }

  .navbar {
    width: calc(100% - 20px);
    top: 8px;
  }

  .navbar-inner {
    padding: 6px 6px 6px 16px;
    gap: 8px;
  }

  .navbar-cta {
    font-size: 12px;
    padding: 8px 14px 8px 12px;
  }

  .navbar-toggle {
    width: 34px;
    height: 34px;
    padding: 8px 7px;
    gap: 4px;
  }

  .navbar-toggle-line {
    width: 16px;
  }

  .navbar-mobile-links a {
    font-size: 14px;
    padding: 12px 16px;
  }

  .popup-widget {
    padding: 20px;
    border-radius: 14px;
    max-height: 95vh;
  }

  .popup-title {
    font-size: 20px;
  }

  .hww-section {
    padding: 50px 16px;
  }

  .hww-card {
    padding: 20px;
  }

  .page-hero {
    padding: 100px 16px 40px;
  }

  .page-hero-title {
    letter-spacing: -1.5px;
  }

  /* Service detail pages */
  .svc-page-overview {
    padding: 50px 16px;
  }

  .svc-page-features {
    padding: 50px 16px;
  }

  .svc-page-process {
    padding: 50px 16px;
  }

  .svc-page-why {
    padding: 50px 16px;
  }

  .svc-page-related {
    padding: 50px 16px;
  }

  .svc-page-cta-banner {
    padding: 50px 16px;
  }

  .svc-page-process-step {
    padding: 28px 20px;
  }

  .svc-page-feature-card {
    padding: 28px 20px;
  }
}

/* =============================================
   GLOBAL MOBILE OPTIMIZATIONS
   ============================================= */

/* Prevent horizontal scroll on all devices */
html, body {
  overflow-x: hidden;
}

/* Smooth touch scrolling */
@supports (-webkit-overflow-scrolling: touch) {
  body {
    -webkit-overflow-scrolling: touch;
  }
}

/* Remove tap highlight on mobile */
a, button, input, select, textarea {
  -webkit-tap-highlight-color: transparent;
}

/* Minimum touch targets (44px) for interactive elements on mobile */
@media (max-width: 768px) {
  .navbar-cta,
  .topbar-cta,
  .topbar-menu,
  .svc-toggle,
  .expertise-card-toggle,
  .scheduler-nav-btn,
  .popup-close {
    min-width: 44px;
    min-height: 44px;
  }

  /* Prevent text size adjustment on orientation change */
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  /* Ensure images never overflow container */
  img {
    max-width: 100%;
    height: auto;
  }
}

/* =============================================
   REDUCED MOTION ACCESSIBILITY
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .line-draw {
    transform: scaleX(1) !important;
  }
}
