:root {
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --ink: #09162f;
  --navy: #0c1d55;
  --muted: #5d6880;
  --accent: #2f63d8;
  --accent-soft: rgba(47, 99, 216, .14);
  --light: #f1f5f9;
  --border: rgba(12, 29, 85, .08);
  --shadow: 0 10px 30px rgba(12, 29, 85, .04);
  --shadow-strong: 0 20px 40px rgba(12, 29, 85, .08);
  --radius: 20px;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* Display/heading voice: Cormorant Garamond (already loaded in header.php) gives
     a humanist-serif headline against the Inter body. Georgia is the swap fallback. */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box
}

/* ===== Accessibility: visible keyboard focus =====
   Keyboard/AT users get a clear focus ring on every interactive element.
   :focus-visible only shows for keyboard navigation, so mouse users see nothing. */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Form fields already restyle :focus (border + glow). Add a focus-visible ring on
   top so the keyboard affordance is never weaker than that of buttons/links. */
.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.contact-form select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== Accessibility: honour reduced-motion =====
   Neutralises the scroll-reveal steppers, hover lifts, and keyframe animations for
   users who request reduced motion, without removing the JS that adds .in-view. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html,
body {
  margin: 0;
  height: 100%
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #ffffff;
  overflow-x: hidden;
}

a {
  color: inherit
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

.container {
  width: 100%;
  /* Cap content width so line lengths and side gutters stop sprawling on wide
     monitors (ch05: proportion should hold, not float with the canvas). The
     clamped gutter keeps the current ~4.6vw feel up to the cap, then centres. */
  max-width: 1480px;
  padding: 0 clamp(20px, 4.6vw, 72px);
  margin: 0 auto;
  box-sizing: border-box;
}

.section {
  /* Stable vertical rhythm: matches the old 6vw around 1100-1280px, but no longer
     balloons past it (ch05). */
  padding: clamp(40px, 6vw, 96px) 0
}

.section-tight {
  padding: clamp(18px, 2.5vw, 40px) 0 0
}

.section-alt {
  background: #f8fafc;
}

.section-process {
  background: linear-gradient(180deg, #ffffff 0%, #f4f6fa 100%);
  padding: clamp(40px, 6vw, 96px) 0;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0
}

h1,
h2,
h3 {
  color: var(--navy)
}

h1 {
  font-family: var(--font-display);
  /* Cormorant has a low x-height; bump size + weight so the serif headline holds
     the same presence Inter did, and relax the tight tracking (serifs need air). */
  font-size: clamp(52px, 5.6vw, 84px);
  font-weight: 700;
  line-height: .98;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.04;
  margin-bottom: 14px;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.12;
  margin-bottom: 10px;
}

p {
  line-height: 1.7;
  color: var(--muted)
}

.trust-strip {
  padding: 4vw 0 2vw 0;
  background: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2vw;
}

.trust-item {
  padding: 2vw;
  background: #ffffff;
  border: 1px solid rgba(12, 29, 85, 0.08);
  border-radius: 1.5vw;
  box-shadow: 0 0.5vw 1.5vw rgba(12, 29, 85, 0.03);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

/* Trust badges are static (non-clickable) info, so they get no hover lift —
   motion is reserved for genuinely interactive surfaces (ai-tells: don't hover
   everything; ch07: ornamentation only where it signals meaning). */

.trust-item span {
  display: inline-block;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 800;
  letter-spacing: .05vw;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5vw;
}

.trust-item strong {
  display: block;
  font-size: clamp(16px, 1.25vw, 22px);
  line-height: 1.2;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 0.5vw;
}

.trust-item p {
  margin: 0;
  font-size: clamp(14px, 0.9vw, 17px);
  line-height: 1.5;
  color: var(--muted);
}

.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(12, 29, 85, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(12, 29, 85, 0.03);
}

.header-shell {
  height: clamp(72px, 8.05vw, 135px);
  width: 100vw;
  margin: 0;
  padding: 0 3.35vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5vw;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-mark {
  height: clamp(42px, 3.4vw, 58px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand-logo {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}

.nav-capsule {
  display: flex;
  align-items: center;
  gap: 1.55vw;
  background: #ffffff;
  border: 1px solid rgba(12, 29, 85, 0.1);
  padding: 0.2vw 1.8vw;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(12, 29, 85, 0.04);
}

.nav-link {
  color: var(--navy);
  text-decoration: none;
  font-size: clamp(14px, 0.85vw, 17px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  padding: 0.6vw 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link.active {
  color: var(--navy);
  font-weight: 700;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0.1vw;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5vw;
  height: 0.15vw;
  background-color: var(--navy);
  border-radius: 0.1vw;
}

.nav-link.has-caret::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-top: -3px;
  transition: transform 0.2s ease;
}

.header-actions {
  display: flex;
  gap: 0.8vw;
  flex: 0 0 auto;
}

/* ===== Desktop scroll capsule =====
   On scroll (.is-scrolled added by footer.php JS), the full-width header bar
   dissolves and its contents condense into a single centered floating capsule
   with a premium frosted-transparent background — no rectangular bar. */
@media (min-width: 992px) {
  .site-header.is-scrolled {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    padding-top: 14px;
  }
  /* The bar becomes a flex track that simply CENTERS the capsule. */
  .site-header.is-scrolled .header-shell {
    width: 100%;
    max-width: 100%;
    margin: 0;
    justify-content: center;   /* center the capsule horizontally */
    background: transparent;
    box-shadow: none;
    border: 0;
    padding: 0 16px;
    height: auto;
  }
  /* The capsule itself: a single rounded pill that hugs its content (logo +
     nav + every CTA), auto-centered, with even internal spacing. We wrap the
     existing children groups; to keep markup untouched we make .header-shell's
     three groups sit inside one pill via a flex row with a shared background.
     Implementation: give the capsule background to an inline-flex wrapper that
     contains brand + nav + actions. Since the markup has them as siblings of
     header-shell, we style header-shell's :before-free approach: instead, the
     capsule is the contents row — use the shell's inner flow. */
  .site-header.is-scrolled .header-shell > .brand,
  .site-header.is-scrolled .header-shell > .main-nav,
  .site-header.is-scrolled .header-shell > .header-actions {
    position: relative;
    z-index: 1;
  }
  /* Draw the capsule as a centered pill behind the three groups using the
     shell's ::before, sized to the content via the shell being inline-flex. */
  .site-header.is-scrolled .header-shell {
    display: inline-flex;
    align-items: center;
    gap: clamp(18px, 1.7vw, 32px);
    width: auto;
    max-width: calc(100% - 28px);
    margin: 0 auto;
    height: clamp(70px, 5.6vw, 86px);
    padding: 0 18px 0 26px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(12, 29, 85, 0.08);
    box-shadow: 0 16px 40px rgba(12, 29, 85, 0.12);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    backdrop-filter: saturate(160%) blur(16px);
    transition: background-color .35s ease, box-shadow .35s ease,
                border-radius .35s ease, padding .35s ease, height .35s ease;
  }
  /* Center the whole header row so the inline-flex capsule centers on screen */
  .site-header.is-scrolled {
    text-align: center;
  }
  /* Each group shrinks to content so the capsule wraps tightly */
  .site-header.is-scrolled .brand,
  .site-header.is-scrolled .main-nav,
  .site-header.is-scrolled .header-actions {
    flex: 0 0 auto;
  }
  .site-header.is-scrolled .main-nav {
    flex: 0 1 auto;
  }
  /* Logo sized to the bigger capsule */
  .site-header.is-scrolled .brand-mark {
    height: clamp(40px, 3vw, 52px);
  }
  /* Inner nav pill goes transparent (no capsule-in-capsule) */
  .site-header.is-scrolled .nav-capsule {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    padding: 0;
    gap: clamp(12px, 1.1vw, 20px);
  }
  /* Compact, evenly-aligned CTAs inside the capsule */
  .site-header.is-scrolled .header-actions {
    gap: 10px;
    align-items: center;
  }
  .site-header.is-scrolled .ghost-btn,
  .site-header.is-scrolled .solid-btn {
    height: clamp(46px, 3.6vw, 56px);
    padding: 0 clamp(16px, 1.3vw, 24px);
  }
  .site-header.is-scrolled .theme-toggle {
    width: clamp(44px, 3.3vw, 52px);
    height: clamp(44px, 3.3vw, 52px);
  }
  /* Smooth the bar->capsule transition on the shell + bar */
  .site-header {
    transition: background-color .35s ease, box-shadow .35s ease, padding .35s ease;
  }
  .header-shell {
    transition: width .35s cubic-bezier(.16,1,.3,1), height .35s ease,
                background-color .35s ease, box-shadow .35s ease, border-radius .35s ease,
                padding .35s ease, margin .35s ease;
  }
}

.ghost-btn,
.solid-btn {
  height: 2.8vw;
  padding: 0 1.2vw;
  border-radius: 0.4vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
  text-decoration: none;
  font-size: clamp(14px, 0.85vw, 17px);
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.ghost-btn {
  color: var(--navy);
  border: 1px solid rgba(12, 29, 85, 0.2);
  background: #ffffff;
}

/* ===== Premium glowing-green WhatsApp CTA (header) =====
   Targets only the header WhatsApp button (matched by its wa.me link), giving
   it a vivid WhatsApp-green gradient, white text/icon, and a soft green glow. */
.header-actions .ghost-btn[href*="wa.me"] {
  background: linear-gradient(135deg, #25d366 0%, #1ebe57 55%, #12a347 100%);
  color: #ffffff;
  border: 1px solid rgba(37, 211, 102, 0.55);
  box-shadow: 0 8px 22px rgba(18, 190, 92, 0.42),
              0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: wa-glow 2.6s ease-in-out infinite;
  transition: transform .2s ease, box-shadow .25s ease, filter .25s ease;
}
.header-actions .ghost-btn[href*="wa.me"] .nav-btn-icon {
  color: #ffffff;
}
.header-actions .ghost-btn[href*="wa.me"]:hover {
  background: linear-gradient(135deg, #2ee06f 0%, #23c95f 55%, #16b04e 100%);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(18, 190, 92, 0.55);
  filter: saturate(115%);
}
/* Gentle pulsing glow ring */
@keyframes wa-glow {
  0%, 100% { box-shadow: 0 8px 22px rgba(18, 190, 92, 0.40), 0 0 0 0 rgba(37, 211, 102, 0.0); }
  50%      { box-shadow: 0 8px 26px rgba(18, 190, 92, 0.52), 0 0 0 6px rgba(37, 211, 102, 0.14); }
}
@media (prefers-reduced-motion: reduce) {
  .header-actions .ghost-btn[href*="wa.me"] { animation: none; }
}

.ghost-btn:hover {
  background: rgba(12, 29, 85, 0.04);
  border-color: var(--navy);
}

.solid-btn {
  color: #fff;
  background: var(--navy);
  border: none;
}

.solid-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(12, 29, 85, 0.15);
}

.nav-btn-icon {
  width: 1vw;
  height: 1vw;
  flex-shrink: 0;
}

/* Mobile-only elements hidden on desktop */
.mobile-drawer-ctas,
.mobile-quick-call,
.menu-toggle {
  display: none;
}

.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  background: linear-gradient(135deg, #ffffff 0%, #f4f6fa 100%);
  overflow: hidden;
}

.hero-container {
  width: 100vw;
  height: 100%;
  padding: 0 5.5vw;
  position: relative;
}

.hero-grid {
  display: block;
  width: 100%;
  height: 100%;
  position: static;
}

.hero-copy {
  position: absolute;
  top: clamp(150px, 22.5vh, 212px);
  left: 4.6vw;
  width: 53vw;
  z-index: 2;
}

.hero-eyebrow {
  font-size: clamp(11px, 0.75vw, 13px);
  margin-bottom: clamp(14px, 1.5vh, 24px);
  text-transform: uppercase;
  letter-spacing: 0.12vw;
  font-weight: 700;
  color: var(--muted);
}

.hero-heading {
  font-family: var(--font-body);
  font-size: clamp(54px, 8.4vh, 80px);
  line-height: 1.05;
  margin-bottom: clamp(12px, 1.7vh, 25px);
  letter-spacing: -0.1vw;
  color: var(--navy);
  font-weight: 700;
}

.hero-divider {
  width: 3.5vw;
  height: 3px;
  background-color: var(--navy);
  margin-bottom: clamp(14px, 1.7vh, 24px);
  border-radius: 0.1vw;
}

.hero-lead {
  font-size: clamp(15px, 1.85vh, 18px);
  line-height: 1.55;
  color: #4b5563;
  margin-bottom: clamp(18px, 2.1vh, 28px);
  max-width: 33vw;
}

.hero-cta-row {
  display: flex;
  gap: 1vw;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  height: clamp(42px, 5vh, 54px);
  padding: 0 clamp(20px, 1.5vw, 25px);
  border-radius: 0.5vw;
  font-weight: 700;
  font-size: clamp(14px, 0.9vw, 15px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6vw;
  text-decoration: none;
  transition: all 0.2s ease;
}

.primary-btn {
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 0.6vw 1.5vw rgba(12, 29, 85, 0.14);
}

.primary-btn:hover {
  background: var(--accent);
  transform: translateY(-0.1vw);
  box-shadow: 0 0.8vw 1.8vw rgba(47, 99, 216, 0.22);
}

.secondary-btn {
  background: #ffffff;
  color: var(--navy);
  border: 1px solid rgba(12, 29, 85, 0.25);
}

.secondary-btn:hover {
  border-color: var(--navy);
  transform: translateY(-0.1vw);
  background: rgba(12, 29, 85, 0.04);
}

.hero-btn-icon {
  width: clamp(17px, 1.2vw, 20px);
  height: clamp(17px, 1.2vw, 20px);
  flex-shrink: 0;
}

.hero-btn-icon.whatsapp-icon {
  fill: currentColor;
}

.hero-image-pane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-slide-image.is-active {
  opacity: 1;
}

.hero-image-overlay-text {
  position: absolute;
  right: 5.8vw;
  bottom: 6.4vw;
  z-index: 3;
  max-width: 18vw;
  color: #ffffff;
  font-size: clamp(16px, 1.05vw, 22px);
  font-weight: 500;
  line-height: 1.45;
}

.hero-image-overlay-text p {
  margin: 0;
  color: #ffffff;
  line-height: inherit;
}

.overlay-line {
  width: 3.2vw;
  height: 0.12vw;
  margin-bottom: 0.7vw;
  background: rgba(255, 255, 255, 0.9);
}

.hero-stats-bar-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 63vw;
  height: clamp(78px, 10.5vh, 112px);
  z-index: 5;
  pointer-events: none;
}

.hero-stats-bar {
  pointer-events: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top-right-radius: 1vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 4.6vw;
  padding-right: 3vw;
  gap: 1.5vw;
  box-shadow: 10px 0 30px rgba(12, 29, 85, 0.05);
}

.hero-stats-bar .stat-item {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  flex: 1;
}

.hero-stats-bar .stat-item:not(:last-child) {
  border-right: 0.1vw solid rgba(12, 29, 85, 0.06);
  padding-right: 1vw;
}

.hero-stats-bar .stat-icon {
  width: 1.8vw;
  height: 1.8vw;
  color: var(--navy);
  flex-shrink: 0;
}

.hero-stats-bar .stat-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2vw;
}

.hero-stats-bar .stat-number {
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.hero-stats-bar .stat-label {
  font-size: clamp(14px, 0.75vw, 17px);
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5vw;
}

.section-heading {
  max-width: 45vw;
  margin-bottom: 3vw;
}

.section-heading h2 {
  font-family: var(--font-body);
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1vw;
  letter-spacing: -0.05vw;
}

.section-heading p {
  font-size: clamp(16px, 1.1vw, 22px);
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.service-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2vw;
  align-items: stretch;
}

.service-feature {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(12, 29, 85, 0.08);
  border-radius: 2vw;
  overflow: hidden;
  box-shadow: 0 0.5vw 2vw rgba(12, 29, 85, 0.03);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.service-feature:hover {
  transform: translateY(-0.4vw);
  box-shadow: 0 1vw 2.5vw rgba(12, 29, 85, 0.07);
}

.service-feature-image {
  width: 100%;
  height: 18vw;
  object-fit: cover;
}

.service-feature-copy {
  padding: 2vw;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-feature-copy h3 {
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8vw;
}

.service-feature-copy p {
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5vw;
}

.service-card {
  padding: 2vw;
  border-radius: 1.8vw;
  border: 1px solid rgba(12, 29, 85, 0.08);
  background: #ffffff;
  box-shadow: 0 0.5vw 1.5vw rgba(12, 29, 85, 0.03);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-0.4vw);
  box-shadow: 0 1vw 2.5vw rgba(12, 29, 85, 0.07);
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2vw;
  height: 2.2vw;
  border-radius: 50%;
  margin-bottom: 1.2vw;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: clamp(14px, 0.8vw, 17px);
  font-weight: 800;
  letter-spacing: 0.05vw;
}

.service-card h3 {
  font-size: clamp(16px, 1.25vw, 22px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6vw;
}

.service-card p {
  font-size: clamp(14px, 0.9vw, 17px);
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.setup-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4vw;
  align-items: center;
}

.setup-copy .lead {
  font-size: clamp(16px, 1.1vw, 22px);
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 2vw;
  max-width: 42vw;
}

.comparison-table {
  margin-top: 1.5vw;
  border-radius: 1.5vw;
  overflow: hidden;
  border: 1px solid rgba(12, 29, 85, 0.08);
  background: #ffffff;
  box-shadow: 0 0.5vw 2vw rgba(12, 29, 85, 0.03);
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

.comparison-head {
  background: var(--navy);
  color: #ffffff;
}

.comparison-head span {
  background: rgba(255, 255, 255, 0.05);
}

.comparison-head strong {
  padding: 1vw 1.2vw;
  font-size: clamp(14px, 0.9vw, 17px);
  letter-spacing: 0.05vw;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.comparison-row {
  border-top: 1px solid rgba(12, 29, 85, 0.06);
  background: #ffffff;
}

.comparison-row:nth-child(even) {
  background: #f8fafc;
}

.comparison-row span {
  padding: 1vw 1.2vw;
  color: var(--navy);
  font-weight: 700;
  font-size: clamp(14px, 0.9vw, 17px);
  display: flex;
  align-items: center;
  /* No cell divider: zebra striping + the tinted label background + alignment
     already separate the columns. A border here is a redundant separator
     (Tufte 1+1=3, ch07). */
  background: rgba(47, 99, 216, 0.03);
}

.comparison-row p {
  padding: 1vw 1.2vw;
  margin: 0;
  font-size: clamp(14px, 0.85vw, 17px);
  line-height: 1.5;
  color: var(--muted);
  display: flex;
  align-items: center;
}

.setup-visual {
  position: relative;
}

.setup-image {
  width: 100%;
  height: 32vw;
  object-fit: cover;
  border-radius: 2vw;
  box-shadow: 0 1vw 3vw rgba(12, 29, 85, 0.1);
  border: 1px solid rgba(12, 29, 85, 0.08);
}

.setup-note {
  position: absolute;
  left: 1.5vw;
  bottom: 1.5vw;
  right: 1.5vw;
  padding: 1.5vw;
  border-radius: 1.2vw;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1vw 2vw rgba(12, 29, 85, 0.1);
  border: 1px solid rgba(12, 29, 85, 0.05);
}

.setup-note strong {
  display: block;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4vw;
}

.setup-note span {
  font-size: clamp(14px, 0.85vw, 17px);
  color: var(--muted);
  line-height: 1.4;
  display: block;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  /* The intro text is short; centre it against the image so the block reads
     as a balanced pair rather than the text floating high or low. */
  align-items: center;
}

/* Keep the intro copy from ever running taller than the image beside it. */
.process-grid .category-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  max-height: 340px;
  object-fit: cover;
  border-radius: 2vw;
  box-shadow: 0 1vw 3vw rgba(12, 29, 85, 0.08);
  border: 1px solid rgba(12, 29, 85, 0.08);
}

.step-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5vw;
  margin-top: 2vw;
}

.step-list article {
  background: #ffffff;
  border: 1px solid rgba(12, 29, 85, 0.08);
  border-radius: 1.5vw;
  padding: 1.8vw;
  box-shadow: 0 0.5vw 1.5vw rgba(12, 29, 85, 0.03);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

/* Process steps are static narrative content, not links — no hover lift
   (see trust-item note above). */

.step-list span {
  display: inline-block;
  color: var(--accent);
  font-size: clamp(14px, 0.8vw, 17px);
  font-weight: 800;
  letter-spacing: 0.08vw;
  text-transform: uppercase;
  margin-bottom: 0.8vw;
}

.step-list h3 {
  font-size: clamp(16px, 1.2vw, 22px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6vw;
}

.step-list p {
  font-size: clamp(14px, 0.9vw, 17px);
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* ===== Animated process stepper (desktop: horizontal) ===== */
.process-stepper {
  position: relative;
  margin-top: clamp(36px, 4vw, 64px);
}

/* The track + animated progress fill that connects the step nodes. */
.process-stepper-line {
  position: absolute;
  top: 26px;
  left: calc(12.5% );
  right: calc(12.5%);
  height: 3px;
  background: rgba(12, 29, 85, 0.10);
  border-radius: 999px;
  overflow: hidden;
}

.process-stepper-progress {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #2f63d8 0%, #5b8def 100%);
  border-radius: 999px;
  transition: width 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-stepper.in-view .process-stepper-progress {
  width: 100%;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.8vw, 32px);
}

.process-step {
  position: relative;
  text-align: center;
  padding: 0 clamp(6px, 0.8vw, 14px);
  /* Hidden until revealed on scroll. */
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-stepper.in-view .process-step {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger each step in sequence after the line starts drawing. */
.process-stepper.in-view .process-step[data-step="1"] { transition-delay: 0.15s; }
.process-stepper.in-view .process-step[data-step="2"] { transition-delay: 0.45s; }
.process-stepper.in-view .process-step[data-step="3"] { transition-delay: 0.75s; }
.process-stepper.in-view .process-step[data-step="4"] { transition-delay: 1.05s; }

.process-step-node {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  margin: 0 auto clamp(16px, 1.5vw, 22px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(12, 29, 85, 0.12);
  box-shadow: 0 10px 24px rgba(12, 29, 85, 0.08);
  transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.process-stepper.in-view .process-step[data-step="1"] .process-step-node { transition-delay: 0.25s; }
.process-stepper.in-view .process-step[data-step="2"] .process-step-node { transition-delay: 0.55s; }
.process-stepper.in-view .process-step[data-step="3"] .process-step-node { transition-delay: 0.85s; }
.process-stepper.in-view .process-step[data-step="4"] .process-step-node { transition-delay: 1.15s; }

.process-stepper.in-view .process-step .process-step-node {
  border-color: #2f63d8;
  background: linear-gradient(135deg, #2f63d8 0%, #1f3f9e 100%);
  box-shadow: 0 14px 30px rgba(47, 99, 216, 0.32);
}

.process-step-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  transition: color 0.4s ease;
}

.process-stepper.in-view .process-step .process-step-num {
  color: #ffffff;
}

.process-step-body h3 {
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.25;
}

.process-step-body p {
  font-size: clamp(13px, 0.85vw, 15px);
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  align-items: stretch;
}

#why .why-grid > div:last-child {
  display: flex;
}

#why .why-grid > div:last-child .why-image {
  height: 100%;
}

#why .category-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* ===== About / Why MSM: icon + stat feature rows (desktop) ===== */
.why-points {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.8vw;
}

.why-point {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: clamp(16px, 1.4vw, 24px);
  padding: clamp(18px, 1.6vw, 26px) 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid rgba(12, 29, 85, 0.10);
}

.why-point:first-child {
  padding-top: 0;
}

.why-point:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.why-point-icon {
  width: clamp(44px, 3.2vw, 56px);
  height: clamp(44px, 3.2vw, 56px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(47, 99, 216, 0.10) 0%, rgba(47, 99, 216, 0.04) 100%);
  color: #2f63d8;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.why-point:hover .why-point-icon {
  background: linear-gradient(135deg, #2f63d8 0%, #1f3f9e 100%);
  color: #ffffff;
  transform: translateY(-2px);
}

.why-point-icon svg {
  width: clamp(22px, 1.6vw, 28px);
  height: clamp(22px, 1.6vw, 28px);
}

.why-point-stat {
  display: block;
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #2f63d8;
  margin-bottom: 6px;
}

.why-point-stat-suffix {
  font-size: 0.5em;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0;
}

.why-point-body h3 {
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.25;
}

.why-point-body p {
  font-size: clamp(13px, 0.9vw, 15px);
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.why-image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 2vw;
  box-shadow: 0 1vw 3vw rgba(12, 29, 85, 0.08);
  border: 1px solid rgba(12, 29, 85, 0.08);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5vw;
}

.faq-list {
  display: grid;
  gap: 1vw;
  max-width: 65vw;
  margin: 0 auto;
  width: 100%;
}

.faq-list details {
  background: #ffffff;
  border: 1px solid rgba(12, 29, 85, 0.08);
  border-radius: 1.2vw;
  box-shadow: 0 0.4vw 1.2vw rgba(12, 29, 85, 0.02);
  padding: 1.5vw 2vw;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-list details[open] {
  box-shadow: 0 0.8vw 2vw rgba(12, 29, 85, 0.05);
  border-color: rgba(12, 29, 85, 0.15);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.15vw, 22px);
  font-weight: 700;
  color: var(--navy);
  position: relative;
  padding-right: 2.5vw;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-list details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-list p {
  margin-top: 1vw;
  font-size: clamp(14px, 0.95vw, 17px);
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4vw;
  align-items: start;
}

.contact-lines p {
  margin-bottom: 0.8vw;
  font-size: clamp(14px, 0.95vw, 17px);
  color: var(--muted);
}

.contact-lines p:last-child {
  margin-bottom: 0;
}

.contact-lines strong {
  color: var(--navy);
  font-weight: 700;
}

.contact-lines {
  display: none !important;
}

.contact-form {
  padding: 2.5vw;
  background: #ffffff;
  border: 1px solid rgba(12, 29, 85, 0.08);
  border-radius: 2vw;
  box-shadow: 0 1vw 3vw rgba(12, 29, 85, 0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1vw;
  margin-bottom: 1vw;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(12, 29, 85, 0.12);
  border-radius: 1vw;
  padding: 1vw 1.2vw;
  font: inherit;
  font-size: clamp(14px, 0.95vw, 17px);
  color: var(--ink);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2vw var(--accent-soft);
}

.contact-form textarea {
  resize: vertical;
  min-height: 8vw;
  margin-bottom: 1.2vw;
}

.contact-form button {
  height: 3.5vw;
  padding: 0 2vw;
  border: none;
  border-radius: 1vw;
  background: var(--navy);
  color: #ffffff;
  font-size: clamp(14px, 0.95vw, 17px);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0.5vw 1.5vw rgba(12, 29, 85, 0.15);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
  background: var(--accent);
  transform: translateY(-0.1vw);
  box-shadow: 0 0.8vw 1.8vw rgba(47, 99, 216, 0.22);
}

/* Homepage Contact cards (no form — clickable contact tiles) */
/* Trim the contact section's bottom padding so the cards sit closer to the
   footer 'Need help' strip (removes the large blank gap there). */
#contact.section {
  padding-bottom: clamp(28px, 3vw, 48px);
}

.home-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5vw;
  margin-top: 3vw;
}

.home-contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6vw;
  padding: 2vw 1.8vw;
  background: #ffffff;
  border: 1px solid rgba(12, 29, 85, 0.08);
  border-radius: 1.5vw;
  box-shadow: 0 0.5vw 1.5vw rgba(12, 29, 85, 0.03);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

a.home-contact-card:hover {
  transform: translateY(-0.4vw);
  box-shadow: 0 1.2vw 2.8vw rgba(12, 29, 85, 0.08);
  border-color: rgba(47, 99, 216, 0.2);
}

.home-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3vw;
  height: 3vw;
  border-radius: 1vw;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 0.4vw;
}

.home-contact-icon svg {
  width: 1.5vw;
  height: 1.5vw;
}

.home-contact-title {
  font-size: clamp(14px, 0.8vw, 17px);
  font-weight: 800;
  letter-spacing: 0.08vw;
  text-transform: uppercase;
  color: var(--accent);
}

.home-contact-value {
  font-size: clamp(16px, 1.05vw, 22px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

/* New Premium Light-Themed Footer */
.site-footer {
  position: relative;
  background: #ffffff;
  color: var(--ink);
  border-top: 1px solid rgba(12, 29, 85, 0.08);
  font-family: var(--font-body);
}

.footer-top-bar {
  border-bottom: 1px solid rgba(12, 29, 85, 0.08);
  padding: 2.5vw 0;
  background: #ffffff;
}

.footer-top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2vw;
}

.footer-top-item {
  display: flex;
  align-items: center;
  gap: 1.2vw;
  text-decoration: none;
  color: inherit;
  flex: 1;
}

.footer-top-item.hover-link {
  transition: transform 0.2s ease;
}

.footer-top-item.hover-link:hover {
  transform: translateY(-2px);
}

.footer-top-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(44px, 3.6vw, 56px);
  height: clamp(44px, 3.6vw, 56px);
  background: rgba(47, 99, 216, 0.06);
  color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-top-item.hover-link:hover .footer-top-icon {
  background: var(--accent);
  color: #ffffff;
}

.footer-top-icon svg {
  width: clamp(20px, 1.5vw, 24px);
  height: clamp(20px, 1.5vw, 24px);
}

.footer-top-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-top-title {
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 700;
  color: var(--navy);
}

.footer-top-sub {
  font-size: clamp(12px, 0.9vw, 14px);
  color: var(--muted);
}

.footer-middle {
  position: relative;
  padding: 4.5vw 0;
  background: #ffffff;
}

.footer-grid-container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 3vw;
  z-index: 2;
}

.footer-skyline-svg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(220px, 25vw, 420px);
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.footer-brand .footer-logo-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 0.5vw;
}

.footer-brand .footer-logo-text {
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1.5px;
}

.footer-brand .footer-logo-sub {
  font-size: clamp(8px, 0.65vw, 10px);
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-top: 2px;
}

.footer-brand .footer-logo-bar {
  width: 36px;
  height: 3px;
  background-color: var(--accent);
  margin: 1.2vw 0;
  border-radius: 2px;
}

.footer-brand-lead {
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 500;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1vw;
  max-width: 24vw;
}

.footer-brand-detail {
  font-size: clamp(12px, 0.85vw, 13px);
  color: var(--muted);
  line-height: 1.6;
  max-width: 24vw;
  opacity: 0.85;
}

.footer-social-row {
  display: flex;
  gap: 0.8vw;
  margin-top: 1.8vw;
}

.footer-social-row .social-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(48px, 3.2vw, 56px);
  height: clamp(48px, 3.2vw, 56px);
  border: 1px solid rgba(12, 29, 85, 0.12);
  border-radius: 50%;
  color: var(--navy);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: #ffffff;
}

.footer-social-row .social-circle:hover {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(12, 29, 85, 0.15);
}

.footer-social-row .social-circle svg {
  width: clamp(16px, 1.1vw, 18px);
  height: clamp(16px, 1.1vw, 18px);
}

.footer-column h3 {
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.08em;
  margin-bottom: 1.5vw;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--accent);
  margin-top: 6px;
  border-radius: 1px;
}

.footer-column a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: clamp(13px, 0.9vw, 15px);
  line-height: 1.6;
  margin-bottom: 0.8vw;
  transition: all 0.2s ease;
}

.footer-column a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.footer-column.services-col a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 12vw;
}

.footer-column.services-col a::after {
  content: "\203A";
  font-size: clamp(14px, 1vw, 18px);
  color: rgba(12, 29, 85, 0.25);
  font-weight: 700;
  transition: transform 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.footer-column.services-col a:hover::after {
  transform: translateX(2px);
  color: var(--accent);
}

.footer-column .contact-item-link {
  display: flex;
  gap: 0.8vw;
  align-items: flex-start;
  text-decoration: none;
  color: var(--muted);
  margin-bottom: 1vw;
  font-size: clamp(13px, 0.9vw, 15px);
  line-height: 1.5;
  transition: none;
}

.footer-column .contact-item-link:hover {
  transform: none;
}

.footer-column .contact-item-link svg {
  width: clamp(16px, 1.1vw, 18px);
  height: clamp(16px, 1.1vw, 18px);
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-column .contact-item-link span {
  transition: color 0.2s ease;
}

.footer-column .contact-item-link:hover span {
  color: var(--accent);
}

.footer-stats {
  border-top: 1px solid rgba(12, 29, 85, 0.08);
  border-bottom: 1px solid rgba(12, 29, 85, 0.08);
  padding: 2.2vw 0;
  background: #ffffff;
}

.footer-stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
}

.footer-stat-card {
  display: flex;
  align-items: center;
  gap: 1vw;
}

.footer-stat-card:not(:last-child) {
  border-right: 1px solid rgba(12, 29, 85, 0.08);
  padding-right: 1.5vw;
}

.stat-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(38px, 3vw, 48px);
  height: clamp(38px, 3vw, 48px);
  background: rgba(47, 99, 216, 0.06);
  color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.stat-card-icon svg {
  width: clamp(18px, 1.3vw, 22px);
  height: clamp(18px, 1.3vw, 22px);
}

.stat-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-card-title {
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 800;
  color: var(--navy);
}

.stat-card-desc {
  font-size: clamp(11px, 0.75vw, 12px);
  color: var(--muted);
  line-height: 1.4;
}

.footer-bottom {
  padding: 1.8vw 0;
  background: #ffffff;
  font-size: clamp(12px, 0.8vw, 13px);
  color: var(--muted);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2vw;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
}

.footer-bottom-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

.footer-bottom-links a:not(:last-child)::after {
  content: "|";
  margin: 0 0.8vw;
  color: rgba(12, 29, 85, 0.15);
}

.footer-bottom .developed-by a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom .developed-by a:hover {
  color: var(--accent);
}

.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 80;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(12, 29, 85, 0.18), 0 8px 20px rgba(37, 211, 102, 0.28);
  border: 4px solid #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(12, 29, 85, 0.22), 0 10px 24px rgba(37, 211, 102, 0.34);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
}

/* Legal Pages Styling */
.legal-page-container {
  padding-top: clamp(72px, 8.05vw, 135px);
  background: #f8fafc;
}

.legal-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f4f6fa 100%);
  border-bottom: 1px solid rgba(12, 29, 85, 0.06);
  padding: 4vw 0;
}

.legal-hero h1 {
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--navy);
  margin-bottom: 1vw;
  margin-top: 0;
}

.legal-hero .lead {
  font-size: clamp(14px, 1.1vw, 18px);
  color: var(--muted);
  max-width: 50vw;
  margin: 0;
}

.legal-content {
  background: #ffffff;
  padding: 5vw 0;
}

.legal-text-wrapper {
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.8;
  color: #334155;
}

.legal-text-wrapper h2 {
  font-size: clamp(20px, 1.5vw, 24px);
  color: var(--navy);
  margin-top: 2.5vw;
  margin-bottom: 1vw;
  font-weight: 700;
}

.legal-text-wrapper h3 {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--navy);
  margin-top: 1.8vw;
  margin-bottom: 0.8vw;
  font-weight: 600;
}

.legal-text-wrapper p {
  margin-bottom: 1.5vw;
  color: #475569;
}

.legal-text-wrapper ul,
.legal-text-wrapper ol {
  margin-bottom: 1.5vw;
  padding-left: 1.5vw;
}

.legal-text-wrapper li {
  margin-bottom: 0.6vw;
  color: #475569;
}

.legal-text-wrapper strong {
  color: var(--navy);
}

/* Responsive Footer Overrides */
@media (max-width: 1100px) {
  .footer-top-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-top-item {
    width: 100%;
    gap: 16px;
  }

  .footer-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-brand-lead,
  .footer-brand-detail {
    max-width: 100%;
  }

  .footer-column.services-col a {
    max-width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }

  .footer-stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-stat-card:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }

  .footer-skyline-svg {
    opacity: 0.15;
    width: 250px;
  }
}

@media (max-width: 768px) {
  .home-contact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .home-contact-card {
    flex-flow: row wrap;
    align-items: center;
    gap: 4px 14px;
    padding: 18px 20px;
    border-radius: 14px;
  }

  .home-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .home-contact-icon svg {
    width: 22px;
    height: 22px;
  }

  .home-contact-title {
    font-size: 11px;
    flex: 1 0 calc(100% - 58px);
  }

  .home-contact-value {
    font-size: 15px;
    flex: 1 0 calc(100% - 58px);
    margin-left: 58px;
    margin-top: -4px;
  }

  .footer-top-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer-top-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    width: 100%;
  }

  .footer-grid-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-brand {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand .footer-logo-link {
    align-items: center;
  }

  .footer-brand .footer-logo-bar {
    margin: 12px auto;
  }

  .footer-brand-lead,
  .footer-brand-detail {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .footer-social-row {
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }

  .footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column h3::after {
    margin: 6px auto 0;
  }

  .footer-column h3 {
    margin-bottom: 16px;
  }

  .footer-column a,
  .footer-column .contact-item-link {
    margin-bottom: 12px;
  }

  .footer-column.services-col a {
    justify-content: center;
    gap: 8px;
  }

  .footer-column .contact-item-link {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 16px;
  }

  .footer-column .contact-item-link svg {
    margin-top: 0;
  }

  .footer-stats {
    display: none;
  }

  .footer-bottom-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }

  .footer-bottom-links a:not(:last-child)::after {
    display: none;
  }

  .footer-skyline-svg {
    display: none;
  }

  .legal-hero .lead {
    max-width: 100%;
  }
}

/* Category Sections Styles */
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4vw;
  align-items: center;
}

.category-grid.reverse {
  grid-template-columns: 1.15fr 1fr;
}

.category-grid.reverse .category-info {
  order: 2;
}

.category-grid.reverse .category-services-list {
  order: 1;
}

.category-grid.reverse .category-content {
  order: 2;
}

.category-grid.reverse .category-image-column {
  order: 1;
}

.category-info h2 {
  font-family: var(--font-body);
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.2vw;
  line-height: 1.15;
  letter-spacing: -0.05vw;
}

.category-info .lead {
  font-size: clamp(16px, 1.05vw, 22px);
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 2vw;
}

.category-cta {
  display: flex;
  gap: 1vw;
}

.category-services-list {
  display: grid;
  gap: 1.2vw;
}

.category-service-item {
  display: flex;
  gap: clamp(14px, 1.4vw, 22px);
  align-items: flex-start;
  padding: clamp(16px, 1.5vw, 22px) clamp(18px, 1.6vw, 24px);
  background: #fff;
  border: 1px solid rgba(43, 92, 255, 0.1);
  border-left: 3px solid transparent;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(12, 29, 85, 0.04);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.22s ease,
              border-left-color 0.22s ease;
}

.category-service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(43, 92, 255, 0.1);
  border-left-color: #2b5cff;
}

.service-bullet {
  width: 0.8vw;
  height: 0.8vw;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.5vw;
  flex-shrink: 0;
  box-shadow: 0 0 0 0.2vw var(--accent-soft);
}

.category-service-item h3 {
  font-size: clamp(16px, 1.1vw, 22px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4vw;
}

.category-service-item p {
  font-size: clamp(14px, 0.85vw, 17px);
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* Category Banners */
.category-banner {
  position: relative;
  margin-top: 4vw;
  border-radius: 22px;
  overflow: hidden;
  padding: 3vw 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0c1d55;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 60px rgba(12, 29, 85, 0.30);
  isolation: isolate;
}

/* Premium gradient glass overlay (matches the mobile CTA card). */
.category-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 130% at 8% 0%, rgba(47, 99, 216, 0.55) 0%, rgba(47, 99, 216, 0) 55%),
    linear-gradient(120deg, rgba(12, 29, 85, 0.92) 0%, rgba(12, 29, 85, 0.55) 100%);
  z-index: 1;
}

/* Glass top-edge highlight. */
.category-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
  z-index: 2;
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 40vw;
}

.banner-content h3 {
  font-size: clamp(24px, 2.2vw, 40px);
  margin-bottom: 0.5vw;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
}

.banner-content p {
  font-size: clamp(16px, 1.1vw, 22px);
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.banner-action {
  position: relative;
  z-index: 2;
}

.banner-action .primary-btn {
  background: #ffffff;
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.banner-action .primary-btn:hover {
  background: var(--light, #f1f5f9);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

@media (max-width: 1200px) {
  .header-shell {
    min-height: auto;
    padding: 14px 18px 16px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand-divider.right {
    display: none
  }

  .main-nav {
    order: 3;
    width: 100%;
    height: auto;
    min-height: 70px;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    padding: 10px 12px;
    gap: 6px 10px;
  }

  .nav-link,
  .nav-pill {
    height: 36px;
    font-size: 15px;
    padding: 0 8px;
  }

  .nav-pill {
    min-width: 74px;
    padding: 0 16px
  }

  .brand-mark {
    width: 132px
  }

  .brand-logo {
    transform: translateX(-12px) scale(.8)
  }

  .header-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .hero-section {
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-container {
    height: auto;
  }

  .hero-grid,
  .service-layout,
  .setup-grid,
  .process-grid,
  .why-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: auto;
    min-height: auto;
  }

  /* Drop the desktop absolute-overlay layout: stack copy above the image so
     the headline never sits on top of the full-bleed photo at mid widths. */
  .hero-copy {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    order: 1;
    padding-bottom: 0;
  }

  .hero-image-pane {
    order: 2;
  }

  .hero-lead {
    max-width: 100%;
  }

  .hero-image-pane {
    position: relative;
    width: 100%;
    height: 420px;
    clip-path: none;
    border-radius: 24px;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(12, 29, 85, 0.08);
  }

  .hero-stats-bar-wrapper {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    margin-top: 32px;
    pointer-events: auto;
  }

  .hero-stats-bar {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(12, 29, 85, 0.08);
    padding: 24px;
    padding-left: 24px;
    box-shadow: var(--shadow);
  }

  .container {
    padding: 0 24px;
  }

  .section {
    padding: 60px 0;
  }

  .section-tight {
    padding: 24px 0 0;
  }

  .section-heading {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .section-heading p {
    font-size: 16px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .trust-item {
    padding: 24px;
    border-radius: 16px;
  }

  .trust-item span {
    font-size: 12px;
  }

  .trust-item strong {
    font-size: 18px;
  }

  .trust-item p {
    font-size: 14px;
  }

  .service-layout {
    gap: 24px;
  }

  .service-feature {
    border-radius: 20px;
  }

  .service-feature-image {
    height: 260px;
  }

  .service-feature-copy {
    padding: 24px;
  }

  .service-feature-copy h3 {
    font-size: 22px;
  }

  .service-feature-copy p {
    font-size: 15px;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .service-card {
    padding: 24px;
    border-radius: 16px;
  }

  .service-index {
    width: 32px;
    height: 32px;
    font-size: 12px;
    margin-bottom: 12px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }

  .setup-copy .lead {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .setup-image {
    height: 400px;
    border-radius: 20px;
  }

  .setup-note {
    padding: 20px;
    border-radius: 16px;
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
  }

  .setup-note strong {
    font-size: 14px;
  }

  .setup-note span {
    font-size: 13px;
  }

  .comparison-table {
    border-radius: 16px;
    margin-top: 20px;
  }

  .comparison-head,
  .comparison-row {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }

  .comparison-head strong,
  .comparison-row span,
  .comparison-row p {
    padding: 12px 14px;
    font-size: 13px;
  }

  .process-image {
    height: 400px;
    border-radius: 20px;
  }

  .step-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
  }

  .step-list article {
    padding: 24px;
    border-radius: 16px;
  }

  .step-list span {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .step-list h3 {
    font-size: 18px;
  }

  .step-list p {
    font-size: 14px;
  }

  .why-points {
    margin-top: 24px;
  }

  .why-point-body h3 {
    font-size: 16px;
  }

  .why-point-body p {
    font-size: 14px;
  }

  .why-image {
    height: 400px;
    border-radius: 20px;
  }

  .faq-list {
    max-width: 100%;
  }

  .faq-list details {
    padding: 20px 24px;
    border-radius: 16px;
  }

  .faq-list summary {
    font-size: 16px;
  }

  .faq-list summary::after {
    font-size: 20px;
  }

  .faq-list p {
    font-size: 14px;
    margin-top: 10px;
  }

  .contact-copy .lead {
    font-size: 16px;
  }

  .contact-lines {
    margin-top: 24px;
    padding: 24px;
    border-radius: 16px;
  }

  .contact-lines p {
    font-size: 14px;
  }

  .contact-form {
    padding: 24px;
    border-radius: 20px;
  }

  .form-grid {
    gap: 12px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 12px;
  }

  .contact-form textarea {
    min-height: 120px;
  }

  .contact-form button {
    height: 48px;
    border-radius: 12px;
    font-size: 14px;
  }

  /* Outdated footer overrides removed - replaced by unified footer styles at lines 987+ */

  /* Tablet Category Overrides */
  .category-grid,
  .category-grid.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .category-content {
    order: 1;
  }

  .category-image-column {
    order: 2;
  }

  .category-grid.reverse .category-content {
    order: 1;
  }

  .category-grid.reverse .category-image-column {
    order: 2;
  }

  .category-info h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .category-info .lead {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .category-services-list {
    gap: 16px;
  }

  .category-image-column .category-image,
  .category-image-column .category-image img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10 !important;
  }

  .category-service-item {
    padding: 18px 20px;
    border-radius: 12px;
    gap: 14px;
  }

  .service-bullet {
    width: 10px;
    height: 10px;
    margin-top: 6px;
    box-shadow: 0 0 0 4px var(--accent-soft);
  }

  .category-service-item h3 {
    font-size: 18px;
  }

  .category-service-item p {
    font-size: 14px;
  }

  .category-banner {
    padding: 32px;
    margin-top: 32px;
    border-radius: 16px;
  }

  .banner-content {
    max-width: 60%;
  }

  .banner-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .banner-content p {
    font-size: 15px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 24px, 1480px)
  }

  .brand-divider {
    display: none
  }

  .brand-logo {
    width: 112px
  }

  .header-actions {
    width: 100%;
    justify-content: space-between
  }

  .ghost-btn,
  .solid-btn {
    flex: 1 1 0;
    justify-content: center;
    padding: 0 14px;
  }

  .hero-grid,
  .trust-grid,
  .service-cards,
  .step-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-pane {
    height: 320px;
  }

  .category-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
  }

  .banner-content {
    max-width: 100%;
  }

  .banner-content h3 {
    font-size: 22px;
  }

  .banner-action .primary-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-image-overlay-text {
    bottom: 24px;
    right: 24px;
    left: 24px;
    max-width: 100%;
  }

  .hero-stats-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .hero-stats-bar .stat-item {
    width: 100%;
  }

  .hero-stats-bar .stat-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(12, 29, 85, 0.08);
    padding-right: 0;
    padding-bottom: 16px;
  }

  .hero-heading {
    font-size: 34px;
  }

  .comparison-head,
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-head span {
    display: none;
  }

  .comparison-head strong {
    padding: 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .comparison-row span {
    border-right: none;
    border-bottom: 1px solid rgba(12, 29, 85, .08);
  }

  .setup-image,
  .process-image,
  .why-image {
    height: 360px;
  }

  .floating-card {
    left: 14px;
    right: 14px;
    width: auto;
  }

  .floating-tags {
    left: 14px;
    right: 14px;
  }

  .section {
    padding: 50px 0
  }

  .setup-note {
    position: relative;
    left: auto;
    bottom: auto;
    right: auto;
    margin-top: -30px;
    border-radius: 16px;
  }

  /* Mobile Category Overrides */
  .category-service-item {
    padding: 16px 18px;
    border-radius: 10px;
    gap: 14px;
  }

  .footer-cta {
    padding: 20px;
    border-radius: 16px;
  }

  .footer-cta h2 {
    font-size: 24px;
  }

  .footer-cta-actions,
  .footer-primary,
  .footer-secondary {
    width: 100%;
  }

  .footer-grid,
  .footer-proof {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: 108px;
  }

  .footer-brand h3 {
    font-size: 20px;
  }
}

@media (min-width: 1600px) {
  .header-shell {
    height: 136px;
    padding: 0 84px;
  }

  .main-nav {
    gap: 30px;
  }

  .nav-link {
    font-size: 16px;
    padding: 10px 0;
  }

  .nav-link.active::after {
    width: 24px;
    height: 3px;
  }

  .ghost-btn,
  .solid-btn {
    height: 60px;
    padding: 0 24px;
    border-radius: 10px;
    font-size: 16px;
    gap: 10px;
  }

  .nav-btn-icon {
    width: 20px;
    height: 20px;
  }

  .hero-container {
    padding: 0 84px;
  }

  .hero-copy {
    top: 214px;
    left: 84px;
    width: 56vw;
  }

  .hero-eyebrow {
    font-size: 13px;
    margin-bottom: 22px;
  }

  .hero-heading {
    font-size: 86px;
    line-height: 1.03;
    margin-bottom: 22px;
  }

  .hero-divider {
    width: 64px;
    height: 3px;
    margin-bottom: 22px;
  }

  .hero-lead {
    font-size: 19px;
    line-height: 1.58;
    margin-bottom: 28px;
    max-width: 660px;
  }

  .primary-btn,
  .secondary-btn {
    height: 62px;
    padding: 0 28px;
    border-radius: 10px;
    font-size: 16px;
    gap: 12px;
  }

  .hero-btn-icon {
    width: 21px;
    height: 21px;
  }

  .hero-stats-bar-wrapper {
    height: 112px;
  }

  .hero-stats-bar {
    padding-left: 84px;
    padding-right: 54px;
  }

  .hero-stats-bar .stat-icon {
    width: 24px;
    height: 24px;
  }

  .hero-stats-bar .stat-number {
    font-size: 28px;
  }

  .hero-stats-bar .stat-label {
    font-size: 13px;
  }
}


/* Footer reference lock */
.site-footer {
  background: #ffffff !important;
  color: #061844 !important;
  border-top: 0 !important;
  box-shadow: none !important;
  scroll-margin-top: 104px !important;
}

.site-footer .container {
  width: 100% !important;
  max-width: none !important;
  padding-left: 4vw !important;
  padding-right: 4vw !important;
}

.footer-top-bar {
  padding: 36px 0 36px !important;
  border-bottom: 1px solid #cfd9ea !important;
}

.footer-top-container {
  display: grid !important;
  grid-template-columns: 1.22fr 0.82fr 1fr !important;
  gap: 48px !important;
  align-items: center !important;
}

.footer-top-item {
  position: relative;
  display: grid !important;
  grid-template-columns: 96px minmax(0, 1fr) !important;
  gap: 28px !important;
  align-items: center !important;
  min-height: 88px !important;
}

.footer-top-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 16px;
  width: 1px;
  height: 70px;
  background: #cfd9ea;
}

.footer-top-icon {
  width: 88px !important;
  height: 88px !important;
  border-radius: 999px !important;
  background: #eef4ff !important;
  color: #1469ff !important;
  border: 1px solid #e0e8f6 !important;
}

.footer-top-container>.footer-top-item:nth-child(3) .footer-top-icon {
  color: #238447 !important;
  background: #f1f5f2 !important;
}

.footer-top-icon svg {
  width: 38px !important;
  height: 38px !important;
}

.footer-top-title {
  font-size: 24px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: #061844 !important;
  white-space: nowrap !important;
}

.footer-top-sub {
  margin-top: 10px !important;
  display: block !important;
  font-size: 18px !important;
  line-height: 1.55 !important;
  color: #061844 !important;
}

.footer-middle {
  position: relative !important;
  padding: 54px 0 34px !important;
  border-bottom: 1px solid #cfd9ea !important;
  overflow: hidden !important;
}

.footer-grid-container {
  display: grid !important;
  grid-template-columns: 1.48fr 0.86fr 0.76fr 0.96fr 1.18fr !important;
  gap: 52px !important;
  align-items: start !important;
}

.footer-brand .footer-logo-link {
  margin: 0 0 22px !important;
}

.footer-brand .footer-logo-text {
  font-size: 68px !important;
  line-height: 0.82 !important;
  letter-spacing: -0.06em !important;
  font-weight: 900 !important;
  color: #061844 !important;
}

.footer-brand .footer-logo-sub {
  margin-top: 6px !important;
  font-size: 11px !important;
  line-height: 1 !important;
  letter-spacing: -0.01em !important;
  color: #061844 !important;
}

.footer-brand .footer-logo-bar,
.footer-column h3::after {
  width: 44px !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: #1268ff !important;
}

.footer-brand .footer-logo-bar {
  margin: 20px 0 20px !important;
}

.footer-brand-lead,
.footer-brand-detail {
  max-width: 310px !important;
  font-size: 18px !important;
  line-height: 1.48 !important;
  color: #061844 !important;
  margin: 0 0 18px !important;
  opacity: 1 !important;
}

.footer-social-row {
  gap: 22px !important;
  margin-top: 28px !important;
}

.footer-social-row .social-circle {
  width: 52px !important;
  height: 52px !important;
  border: 1px solid #c5d0e2 !important;
  color: #061844 !important;
  background: #ffffff !important;
}

.footer-social-row .social-circle svg {
  width: 24px !important;
  height: 24px !important;
}

.footer-column h3 {
  margin: 12px 0 28px !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.12em !important;
  font-weight: 900 !important;
  color: #061844 !important;
}

.footer-column h3::after {
  margin-top: 20px !important;
  display: block !important;
  content: "" !important;
}

.footer-column a,
.footer-column .contact-item-link {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 52px !important;
  display: flex !important;
  align-items: center !important;
  color: #061844 !important;
  font-size: 17px !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
  border-bottom: 1px solid #d9e2ef !important;
}

.footer-column:not(.contact-col) a:last-child {
  border-bottom: 0 !important;
}

.footer-column.services-col a {
  max-width: none !important;
  justify-content: space-between !important;
}

.footer-column.services-col a::after {
  content: "›" !important;
  font-size: 28px !important;
  line-height: 1 !important;
  color: #061844 !important;
  font-weight: 400 !important;
}

.footer-column.contact-col .contact-item-link {
  position: relative !important;
  z-index: 3 !important;
  display: grid !important;
  grid-template-columns: 28px minmax(0, 1fr) !important;
  gap: 16px !important;
  align-items: start !important;
  border-bottom: 0 !important;
  min-height: auto !important;
  margin-bottom: 22px !important;
  padding: 0 !important;
}

.footer-column.contact-col .contact-item-link svg {
  width: 24px !important;
  height: 24px !important;
  color: #1268ff !important;
  margin-top: 2px !important;
}

.footer-column.contact-col .contact-item-link span {
  color: #061844 !important;
  font-size: 17px !important;
  line-height: 1.5 !important;
  max-width: 360px !important;
}

.footer-skyline-svg {
  right: -14px !important;
  bottom: 14px !important;
  width: 430px !important;
  height: 230px !important;
  opacity: 0.45 !important;
  z-index: 1 !important;
}

.footer-stats {
  padding: 32px 0 34px !important;
  border-top: 0 !important;
  border-bottom: 1px solid #cfd9ea !important;
}

.footer-stats-container {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
}

.footer-stat-card {
  display: grid !important;
  grid-template-columns: 68px minmax(0, 1fr) !important;
  gap: 18px !important;
  align-items: start !important;
  padding: 0 28px !important;
}

.footer-stat-card:first-child {
  padding-left: 0 !important;
}

.footer-stat-card:not(:last-child) {
  border-right: 1px solid #cfd9ea !important;
}

.stat-card-icon {
  width: 68px !important;
  height: 68px !important;
  border-radius: 999px !important;
  background: #eef4ff !important;
  color: #1268ff !important;
}

.stat-card-icon svg {
  width: 36px !important;
  height: 36px !important;
}

.stat-card-title {
  font-size: 16px !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
  color: #061844 !important;
}

.stat-card-desc {
  margin-top: 10px !important;
  display: block !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
  color: #061844 !important;
}

.footer-bottom {
  padding: 24px 0 28px !important;
  color: #061844 !important;
}

.footer-bottom-container {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: start !important;
  gap: 30px !important;
}

.footer-bottom,
.footer-bottom a {
  font-size: 16px !important;
  line-height: 1.55 !important;
}

.footer-bottom .copyright {
  justify-self: start !important;
}

.footer-bottom-links {
  justify-self: center !important;
  display: flex !important;
  gap: 42px !important;
}

.footer-bottom-links a:not(:last-child)::after {
  content: "" !important;
  position: static !important;
  display: inline-block !important;
  width: 1px !important;
  height: 26px !important;
  margin-left: 42px !important;
  vertical-align: middle !important;
  background: #9eacc1 !important;
}

.footer-bottom .developed-by {
  justify-self: end !important;
}

.footer-bottom .developed-by a {
  color: #1268ff !important;
  font-weight: 500 !important;
}

@media (max-width: 1100px) {

  .footer-top-container,
  .footer-grid-container,
  .footer-stats-container,
  .footer-bottom-container {
    grid-template-columns: 1fr !important;
  }

  .footer-top-item:not(:last-child)::after,
  .footer-stat-card:not(:last-child) {
    border-right: 0 !important;
  }

  .footer-top-item:not(:last-child)::after {
    display: none !important;
  }

  .footer-brand-lead,
  .footer-brand-detail {
    max-width: 100% !important;
  }

  .footer-skyline-svg {
    display: none !important;
  }

  .footer-bottom-links,
  .footer-bottom .developed-by {
    justify-self: center !important;
  }
}


/* Core Services Redesign */
.section-core-services {
  background: #f8fafc;
  padding: 6vw 0;
}

.core-heading-centered {
  text-align: center;
  margin-bottom: 4vw;
}

.core-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #2052c4;
  font-size: 0.9vw;
  margin: 0;
}

.core-eyebrow-line {
  width: 2.5vw;
  height: 2px;
  background: #2f63d8;
  margin: 0.5vw auto 1.5vw;
}

.core-title {
  font-size: 3.2vw;
  font-weight: 800;
  color: #09162f;
  line-height: 1.15;
  margin-bottom: 1.5vw;
}

.text-blue {
  color: #2f63d8;
}

.core-subtitle {
  font-size: 1.1vw;
  color: #5d6880;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 40vw;
}

.core-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4vw;
  align-items: stretch;
}

/* Mobile-only carousel: hidden on desktop, shown via mobile.css at <=991px. */
.core-carousel {
  display: none;
}

.core-main-image {
  width: 100%;
  height: 100%;
  border-radius: 1.5vw;
  box-shadow: 0 1vw 3vw rgba(12, 29, 85, 0.08);
  display: block;
  object-fit: cover;
}

.core-list-col {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 1vh;
  height: 100%;
}

.core-list-item {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  padding: 1.5vw 1.4vw;
  border-bottom: 1px solid rgba(12, 29, 85, 0.08);
  color: inherit;
  text-decoration: none;
  border-radius: 1vw;
  background: rgba(255, 255, 255, 0.72);
  min-height: 0;
}

.core-list-item:first-child {
  padding-top: 1.5vw;
}

.core-list-item:last-child {
  border-bottom: none;
  padding-bottom: 1.5vw;
}

.core-list-icon {
  width: 3.5vw;
  height: 3.5vw;
  flex-shrink: 0;
  color: #2f63d8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
}

.core-list-icon svg {
  width: 2.5vw;
  height: 2.5vw;
}

.core-list-text h3 {
  font-size: 1.3vw;
  font-weight: 700;
  color: #09162f;
  margin: 0 0 0.4vw 0;
}

.core-list-text p {
  font-size: 0.95vw;
  color: #5d6880;
  line-height: 1.5;
  margin: 0;
}

.core-list-text {
  min-width: 0;
}

.core-features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-radius: 1.5vw;
  padding: 2vw 3vw;
  margin-top: 4vw;
  box-shadow: 0 0.5vw 2vw rgba(12, 29, 85, 0.03);
}

.core-feature {
  display: flex;
  align-items: center;
  gap: 1.2vw;
  flex: 1;
}

.feature-divider {
  width: 1px;
  height: 3.5vw;
  background: rgba(12, 29, 85, 0.08);
  margin: 0 2vw;
}

.feature-icon {
  width: 2.5vw;
  height: 2.5vw;
  color: #2f63d8;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-text h4 {
  font-size: 0.95vw;
  font-weight: 700;
  color: #09162f;
  margin: 0 0 0.2vw 0;
}

.feature-text p {
  font-size: 0.8vw;
  color: #5d6880;
  margin: 0;
  line-height: 1.4;
}



/* Core Services Layout (content-sized with breathing room) */
.section-core-services {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(64px, 7vw, 110px) 0;
  box-sizing: border-box;
}

.section-core-services>.container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.core-heading-centered {
  margin-bottom: clamp(36px, 4vw, 56px);
}

.core-title {
  margin-bottom: 14px;
  font-size: clamp(26px, 3.2vw, 40px);
}

.core-subtitle {
  font-size: clamp(15px, 1.1vw, 18px);
}

.core-features {
  margin-top: clamp(28px, 3vw, 44px);
  padding: clamp(20px, 1.6vw, 28px) 3vw;
}

.core-layout {
  gap: clamp(28px, 3vw, 48px);
}

.core-image-col {
  min-height: clamp(320px, 32vw, 460px);
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1vw 3vw rgba(12, 29, 85, 0.08);
}

.core-main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  box-shadow: none;
  border-radius: 0;
}

.core-main-image.active {
  opacity: 1;
  z-index: 2;
}

.core-list-col {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1vh;
}

.core-list-item {
  padding: 1.5vh 1.5vw;
  cursor: pointer;
  border-radius: 1vw;
  transition: all 0.3s ease;
  border-bottom: none !important;
}

.core-list-item:hover {
  background: rgba(47, 99, 216, 0.02);
}

.core-list-item.active {
  background: rgba(47, 99, 216, 0.06);
  transform: translateX(0.5vw);
}

.core-list-item.active .core-list-text h3 {
  color: #2f63d8;
}

.core-list-icon {
  width: min(3.5vw, 5vh);
  height: min(3.5vw, 5vh);
}

.core-list-icon svg {
  width: min(2.5vw, 3.5vh);
  height: min(2.5vw, 3.5vh);
}

.core-list-text h3 {
  font-size: min(1.3vw, 2.2vh);
}

.core-list-text p {
  font-size: min(0.95vw, 1.8vh);
}



/* Service Category sections (content-sized with breathing room) */
#setup-licensing,
#visa-immigration,
#typing-clearance,
#translation-attestation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 7vw, 110px) 0;
  box-sizing: border-box;
}

#setup-licensing>.container,
#visa-immigration>.container,
#typing-clearance>.container,
#translation-attestation>.container {
  display: flex;
  flex-direction: column;
}

#setup-licensing .category-grid,
#visa-immigration .category-grid,
#typing-clearance .category-grid,
#translation-attestation .category-grid {
  margin-bottom: clamp(36px, 4vw, 56px);
  /* Top-align: heading lines up with the first service; both columns size to
     their natural content (no forced stretch, so the image stays compact). */
  align-items: start;
}

/* Left column (intro + image): natural height, content stacked at the top. */
#setup-licensing .category-info,
#visa-immigration .category-info,
#typing-clearance .category-info,
#translation-attestation .category-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Right column (services): natural height, items packed from the top so the
   list height matches its content (not stretched). */
#setup-licensing .category-services-list,
#visa-immigration .category-services-list,
#typing-clearance .category-services-list,
#translation-attestation .category-services-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Compact intro image: a fixed, moderate banner ratio — not stretched to fill. */
#setup-licensing .category-image,
#visa-immigration .category-image,
#typing-clearance .category-image,
#translation-attestation .category-image {
  margin-top: clamp(18px, 1.8vw, 28px) !important;
}

#setup-licensing .category-image img,
#visa-immigration .category-image img,
#typing-clearance .category-image img,
#translation-attestation .category-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10 !important;
  max-height: 260px;
  object-fit: cover;
}

#setup-licensing .category-grid,
#visa-immigration .category-grid,
#typing-clearance .category-grid,
#translation-attestation .category-grid {
  align-items: stretch !important;
}

#setup-licensing .category-content,
#visa-immigration .category-content,
#typing-clearance .category-content,
#translation-attestation .category-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(20px, 2vw, 28px);
}

#setup-licensing .category-image-column,
#visa-immigration .category-image-column,
#typing-clearance .category-image-column,
#translation-attestation .category-image-column {
  display: flex;
  align-items: stretch;
}

#setup-licensing .category-image-column .category-image,
#visa-immigration .category-image-column .category-image,
#typing-clearance .category-image-column .category-image,
#translation-attestation .category-image-column .category-image {
  width: 100%;
  height: 100%;
  margin-top: 0 !important;
}

#setup-licensing .category-image-column .category-image img,
#visa-immigration .category-image-column .category-image img,
#typing-clearance .category-image-column .category-image img,
#translation-attestation .category-image-column .category-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto !important;
}

#setup-licensing .category-services-list,
#visa-immigration .category-services-list,
#typing-clearance .category-services-list,
#translation-attestation .category-services-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#setup-licensing .category-content > .category-info,
#visa-immigration .category-content > .category-info,
#typing-clearance .category-content > .category-info,
#translation-attestation .category-content > .category-info {
  order: 0 !important;
}

#setup-licensing .category-content > .category-services-list,
#visa-immigration .category-content > .category-services-list,
#typing-clearance .category-content > .category-services-list,
#translation-attestation .category-content > .category-services-list {
  order: 1 !important;
}

#setup-licensing .category-info h2,
#visa-immigration .category-info h2,
#typing-clearance .category-info h2,
#translation-attestation .category-info h2 {
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 16px;
}

#setup-licensing .category-info .lead,
#visa-immigration .category-info .lead,
#typing-clearance .category-info .lead,
#translation-attestation .category-info .lead {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
}

#setup-licensing .category-service-item h3,
#visa-immigration .category-service-item h3,
#typing-clearance .category-service-item h3,
#translation-attestation .category-service-item h3 {
  font-size: clamp(16px, 1.2vw, 19px);
}

#setup-licensing .category-service-item p,
#visa-immigration .category-service-item p,
#typing-clearance .category-service-item p,
#translation-attestation .category-service-item p {
  font-size: clamp(13px, 0.95vw, 15px);
}

#setup-licensing .category-banner,
#visa-immigration .category-banner,
#typing-clearance .category-banner,
#translation-attestation .category-banner {
  min-height: 180px;
  margin-top: clamp(36px, 4vw, 56px);
  padding: clamp(28px, 3vw, 44px) clamp(28px, 3.5vw, 56px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

#setup-licensing .banner-content h3,
#visa-immigration .banner-content h3,
#typing-clearance .banner-content h3,
#translation-attestation .banner-content h3 {
  font-size: clamp(20px, 1.8vw, 28px);
  margin-bottom: 10px;
}

#setup-licensing .banner-content p,
#visa-immigration .banner-content p,
#typing-clearance .banner-content p,
#translation-attestation .banner-content p {
  font-size: clamp(15px, 1vw, 18px);
  margin: 0;
}


/* Refined Category Grid for Services 01-04 */
.category-info .eyebrow {
  color: #2b5cff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9vw;
  letter-spacing: 1px;
  margin-bottom: 0.5vw;
}

.category-image {
  margin-top: 2vw;
  width: 100%;
}

.category-image img {
  width: 100%;
  height: auto;
  border-radius: 1vw;
  box-shadow: 0 1vw 2vw rgba(12, 29, 85, 0.05);
  display: block;
}

.category-services-list {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 0.9vw, 14px);
}

.category-service-item {
  display: flex;
  gap: clamp(14px, 1.4vw, 22px);
  align-items: flex-start;
  padding: clamp(16px, 1.5vw, 22px) clamp(18px, 1.6vw, 24px);
  background: #fff;
  border: 1px solid rgba(43, 92, 255, 0.1);
  border-left: 3px solid transparent;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(12, 29, 85, 0.04);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.22s ease,
              border-left-color 0.22s ease;
  cursor: default;
}

.category-service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(43, 92, 255, 0.1);
  border-left-color: #2b5cff;
}

.service-icon {
  width: clamp(42px, 3.6vw, 54px);
  height: clamp(42px, 3.6vw, 54px);
  border-radius: 10px;
  background: linear-gradient(135deg, #ebf0ff 0%, #dce6ff 100%);
  color: #2b5cff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(43, 92, 255, 0.12);
}

.service-icon svg {
  width: clamp(20px, 1.7vw, 26px);
  height: clamp(20px, 1.7vw, 26px);
}

.service-text {
  flex: 1;
  padding-top: 2px;
}

#setup-licensing .category-grid.reverse,
#visa-immigration .category-grid.reverse,
#typing-clearance .category-grid.reverse,
#translation-attestation .category-grid.reverse {
  flex-direction: row-reverse;
}


/* Fix category image dimensions */
.category-image {
  margin-top: 2vw;
  width: 100%;
}

.category-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 1vw;
  box-shadow: 0 1vw 2vw rgba(12, 29, 85, 0.05);
  display: block;
}


/* Strict alignment fix for category grid */
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr !important;
  gap: 4vw !important;
  align-items: stretch;
}

.category-grid.reverse {
  grid-template-columns: 1fr 1fr !important;
}

.category-grid.reverse .category-info {
  order: 2;
}

.category-grid.reverse .category-services-list {
  order: 1;
}

.category-info .eyebrow {
  color: #2b5cff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px !important;
  letter-spacing: 1px;
  margin-bottom: 10px !important;
}

.category-info h2 {
  font-size: 40px !important;
  line-height: 1.2 !important;
  margin-bottom: 20px !important;
}

.category-info .lead {
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: #5b657e !important;
  margin-bottom: 30px !important;
}

.category-image img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
  border-radius: 12px !important;
}

.category-service-item {
  display: flex !important;
  gap: clamp(14px, 1.4vw, 22px) !important;
  align-items: flex-start !important;
  padding: clamp(16px, 1.5vw, 22px) clamp(18px, 1.6vw, 24px) !important;
  background: #fff !important;
  border: 1px solid rgba(43, 92, 255, 0.1) !important;
  border-left: 3px solid transparent !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(12, 29, 85, 0.04) !important;
}

.category-service-item:hover {
  border-left-color: #2b5cff !important;
  box-shadow: 0 8px 28px rgba(43, 92, 255, 0.1) !important;
  transform: translateY(-2px) !important;
}

.category-service-item h3 {
  font-size: clamp(15px, 1.15vw, 18px) !important;
  color: #0f172a !important;
  margin-bottom: 5px !important;
  font-weight: 700 !important;
}

.category-service-item p {
  font-size: clamp(13px, 0.9vw, 14px) !important;
  color: #5b657e !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

.service-icon {
  width: clamp(42px, 3.6vw, 54px) !important;
  height: clamp(42px, 3.6vw, 54px) !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #ebf0ff 0%, #dce6ff 100%) !important;
  color: #2b5cff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  box-shadow: 0 2px 6px rgba(43, 92, 255, 0.12) !important;
}

.service-icon svg {
  width: clamp(20px, 1.7vw, 26px) !important;
  height: clamp(20px, 1.7vw, 26px) !important;
}

.category-banner {
  margin-top: 40px !important;
  border-radius: 12px !important;
}


/* Final services reference build */
.service-category-section {
  height: 100vh !important;
  height: 100svh !important;
  min-height: 720px !important;
  scroll-margin-top: 0;
  padding: clamp(108px, 11.2vh, 128px) 0 clamp(20px, 2.4vh, 34px) !important;
  background: #ffffff !important;
  overflow: hidden !important;
}

.service-category-section>.container {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.service-category-section .category-grid {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr) !important;
  gap: clamp(42px, 6vw, 110px) !important;
  align-items: start !important;
  margin: 0 !important;
  padding-bottom: clamp(24px, 3.1vh, 44px) !important;
}

.service-category-section .category-grid.reverse {
  grid-template-columns: minmax(520px, 1.18fr) minmax(360px, 0.82fr) !important;
}

.service-category-section .category-grid.reverse .category-info {
  order: 2 !important;
}

.service-category-section .category-grid.reverse .category-services-list {
  order: 1 !important;
}

.service-category-section .category-info {
  min-width: 0 !important;
}

.service-category-section .category-info .eyebrow {
  color: #0f5bff !important;
  font-size: clamp(12px, 0.95vw, 17px) !important;
  letter-spacing: 0.04em !important;
  font-weight: 800 !important;
  margin: 0 0 10px !important;
}

.category-eyebrow-line {
  width: clamp(42px, 3.3vw, 58px);
  height: 3px;
  background: #2464ff;
  border-radius: 999px;
  margin-bottom: clamp(16px, 1.7vh, 24px);
}

.service-category-section .category-info h2 {
  font-size: clamp(34px, 3.75vw, 64px) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.035em !important;
  color: #061a55 !important;
  margin: 0 0 clamp(14px, 1.8vh, 24px) !important;
  max-width: 620px !important;
}

.service-category-section .category-info .lead {
  font-size: clamp(14px, 1vw, 19px) !important;
  line-height: 1.52 !important;
  color: #263a70 !important;
  margin: 0 0 clamp(18px, 2.2vh, 28px) !important;
  max-width: 650px !important;
}

.service-category-section .category-image {
  width: 100% !important;
  margin: 0 !important;
}

.service-category-section .category-image img {
  width: 100% !important;
  height: clamp(168px, 21vh, 300px) !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  box-shadow: 0 18px 42px rgba(6, 26, 85, 0.08) !important;
}

.category-image-rail {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
  gap: 7px;
  margin-top: 8px;
}

.category-image-rail img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(6, 26, 85, 0.1);
}

.service-category-section .category-services-list {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 0 !important;
  min-height: 0 !important;
}

.service-category-section .category-service-item {
  display: grid !important;
  grid-template-columns: clamp(54px, 5vw, 82px) 1fr !important;
  gap: clamp(14px, 1.55vw, 24px) !important;
  align-items: center !important;
  padding: clamp(9px, 1.18vh, 17px) 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #d9e1f2 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: inherit !important;
  text-decoration: none !important;
}

.service-category-section .category-service-item:last-child {
  border-bottom: 0 !important;
}

.service-category-section .category-service-item:hover {
  transform: none !important;
  box-shadow: none !important;
}

.service-category-section .service-icon {
  width: clamp(52px, 4.8vw, 78px) !important;
  height: clamp(52px, 4.8vw, 78px) !important;
  border-radius: 999px !important;
  background: #edf3ff !important;
  color: #1766ff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
}

.service-category-section .service-icon svg {
  width: 50% !important;
  height: 50% !important;
}

.service-category-section .service-text {
  padding-left: clamp(14px, 1.4vw, 24px);
  border-left: 1px solid #e8edf8;
}

.service-category-section .category-service-item h3 {
  font-size: clamp(15px, 1.22vw, 22px) !important;
  line-height: 1.16 !important;
  color: #061a55 !important;
  letter-spacing: -0.025em !important;
  margin: 0 0 5px !important;
  font-weight: 800 !important;
}

.service-category-section .category-service-item p {
  font-size: clamp(12px, 0.86vw, 15px) !important;
  line-height: 1.42 !important;
  color: #263a70 !important;
  margin: 0 !important;
}

.service-category-section .category-view-more {
  border-bottom: 0 !important;
}

.service-category-section .category-view-more .service-icon {
  background: #061a55 !important;
  color: #ffffff !important;
}

.service-category-section .category-view-more h3 {
  color: #1766ff !important;
}

.service-category-section .category-banner {
  min-height: clamp(96px, 13vh, 150px) !important;
  margin: 0 !important;
  border-radius: 14px !important;
  padding: clamp(14px, 2vh, 28px) clamp(26px, 3vw, 50px) !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  gap: clamp(20px, 2.6vw, 42px) !important;
  align-items: center !important;
  overflow: hidden !important;
  background-size: cover !important;
  background-position: center !important;
  box-shadow: 0 20px 44px rgba(6, 26, 85, 0.12) !important;
}

.service-category-section .category-banner::before {
  background: linear-gradient(90deg, rgba(3, 20, 73, 0.98) 0%, rgba(4, 29, 93, 0.88) 52%, rgba(4, 29, 93, 0.72) 100%) !important;
}

.banner-support-icon {
  position: relative;
  z-index: 2;
  width: clamp(58px, 5.8vw, 88px);
  height: clamp(58px, 5.8vw, 88px);
  border-radius: 999px;
  border: 2px solid rgba(35, 103, 255, 0.75);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.banner-support-icon svg {
  width: 44%;
  height: 44%;
}

.service-category-section .banner-content {
  position: relative !important;
  z-index: 2 !important;
  max-width: none !important;
}

.service-category-section .banner-content h3 {
  font-size: clamp(19px, 1.55vw, 29px) !important;
  line-height: 1.15 !important;
  margin: 0 0 8px !important;
  color: #ffffff !important;
}

.service-category-section .banner-content p {
  font-size: clamp(13px, 0.98vw, 18px) !important;
  line-height: 1.48 !important;
  margin: 0 !important;
  color: #ffffff !important;
}

.service-category-section .banner-action {
  position: relative;
  z-index: 2;
}

.service-category-section .banner-action .primary-btn {
  height: clamp(48px, 5.6vh, 72px) !important;
  min-width: clamp(210px, 21vw, 330px);
  padding: 0 clamp(22px, 2.3vw, 42px) !important;
  justify-content: space-between !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  color: #061a55 !important;
  box-shadow: none !important;
  font-size: clamp(14px, 1vw, 18px) !important;
}

@media (max-width: 1180px) {
  .service-category-section {
    height: auto !important;
    min-height: 100svh !important;
    overflow: visible !important;
    padding-top: 120px !important;
  }

  .service-category-section .category-grid,
  .service-category-section .category-grid.reverse {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .service-category-section .category-services-list {
    grid-template-columns: 1fr !important;
  }

  .service-category-section .category-grid.reverse .category-info,
  .service-category-section .category-grid.reverse .category-services-list {
    order: initial !important;
  }

  .service-category-section .category-info h2,
  .service-category-section .category-info .lead {
    max-width: 100% !important;
  }

  .service-category-section .category-banner {
    grid-template-columns: auto 1fr !important;
  }

  .service-category-section .banner-action {
    grid-column: 1 / -1;
  }

  .service-category-section .banner-action .primary-btn {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .service-category-section {
    padding-top: 104px !important;
  }

  .service-category-section .category-service-item {
    grid-template-columns: 60px 1fr !important;
    gap: 14px !important;
  }

  .service-category-section .service-icon {
    width: 58px !important;
    height: 58px !important;
  }

  .service-category-section .service-text {
    padding-left: 14px;
  }

  .service-category-section .category-banner {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .banner-support-icon {
    width: 64px;
    height: 64px;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-width: 3px;
  }

  .floating-whatsapp svg {
    width: 30px;
    height: 30px;
  }
}


/* FAQ Section Alignment and Spacing */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4vw;
  align-items: start;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 3vw;
  }
  .faq-list {
    grid-template-columns: 1fr;
  }
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5vw;
  align-items: start;
}

details {
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--border-color, #e1e8ff);
  border-radius: 1vw;
  padding: 1.5vw;
  transition: all 0.3s ease;
}

details:hover {
  border-color: #2b5cff;
  box-shadow: 0 0.5vw 1vw rgba(12, 29, 85, 0.05);
}

summary {
  font-family: var(--font-body);
  font-size: 1.1vw;
  font-weight: 600;
  color: var(--navy, #0c1d55);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 1.5vw;
  color: #2b5cff;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  content: "\2212";
}

details p {
  margin-top: 1vw;
  font-size: 0.95vw;
  line-height: 1.6;
  color: var(--muted, #5a668a);
  padding-top: 1vw;
  border-top: 1px solid var(--border-color, #e1e8ff);
}

@media (max-width: 900px) {
  details {
    padding: 4vw;
    border-radius: 2vw;
    margin-bottom: 2vw;
  }

  summary {
    font-size: 4vw;
  }

  summary::after {
    font-size: 6vw;
  }

  details p {
    font-size: 3.5vw;
    margin-top: 3vw;
    padding-top: 3vw;
  }
}

/* Custom premium styling for the Business Setup page */
.business-hero {
  position: relative;
  min-height: 680px;
  color: #ffffff;
  overflow: hidden;
  background: #09162f;
  display: flex;
  align-items: center;
  padding-top: clamp(90px, 9vw, 120px);
  padding-bottom: 40px;
}
.business-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/images/generated/business_setup_hero.webp');
  background-size: cover;
  background-position: right center;
  z-index: 0;
}

.visa-hero::before {
  background-image: url('assets/images/generated/golden_visa_main_1781242955692.webp') !important;
}
.typing-hero::before {
  background-image: url('assets/images/generated/typing_clearance_hero.webp') !important;
}
.translation-hero::before {
  background-image: url('assets/images/generated/translation_hero.webp') !important;
}
.whyus-hero::before {
  background-image: url('assets/images/why-operations-desk.webp') !important;
}
.faq-hero::before {
  background-image: url('assets/images/service-docs-workflow.webp') !important;
}
.blogs-hero::before {
  background-image: url('assets/images/documents-stamp.webp') !important;
}
.contact-hero {
  background: #09162f;
}
.contact-hero::before {
  background-image: url('assets/images/generated/contact_hero_right_focus.webp') !important;
  /* Square 1024x1024 office render with the MSM wall logo on the right.
     Fill the banner with `cover` (no empty gaps) and anchor so the MSM
     logo is the focal point of the visible (non-overlay) right area; the
     hero content sits on the dark-blue overlay on the left. */
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: 72% 32% !important;
}
.business-hero-overlay-desktop {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.business-hero-overlay-desktop svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(15px 0 25px rgba(0, 0, 0, 0.45));
}
.business-hero-overlay-mobile {
  display: none;
}
.business-hero .container {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}
.business-hero-content {
  max-width: 44%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .business-hero .container {
    max-width: none;
    margin: 0;
    padding-left: clamp(54px, 5vw, 96px);
    padding-right: clamp(24px, 4vw, 72px);
  }

  .business-hero-content {
    width: min(640px, 38vw);
    max-width: none;
  }

  .business-hero .detail-breadcrumbs {
    margin-top: 34px;
    margin-bottom: 18px;
  }
}
.business-hero .eyebrow {
  color: #3b82f6;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.business-hero h1 {
  color: #ffffff;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 100%;
}
.business-hero .lead {
  color: #cbd5e1;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  max-width: 100%;
  margin-bottom: 0;
}
.business-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 35px;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}

.hero-btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.hero-btn-solid:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}
.hero-btn-icon {
  width: 18px;
  height: 18px;
}
.hero-btn-icon.whatsapp-icon {
  fill: #25D366;
}

.hero-trust-badges {
  display: flex;
  gap: clamp(18px, 2vw, 32px);
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 30px;
  max-width: 100%;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-badge-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  padding: 8px;
}
.trust-badge-icon svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
}
.trust-badge-text {
  display: flex;
  flex-direction: column;
}
.trust-badge-text strong {
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
}
.trust-badge-text span {
  font-size: 12px;
  color: #cbd5e1;
}

/* Other Business Setup sections */
.services-details-grid {
  display: block;
  margin-top: 40px;
}

.service-cards-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  grid-auto-rows: 1fr;
  gap: 24px;
}
.detail-card {
  background: #ffffff;
  border: 1px solid rgba(12, 29, 85, 0.07);
  border-radius: 16px;
  padding: 26px 26px 24px;
  box-shadow: 0 4px 18px rgba(12, 29, 85, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #3b82f6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.detail-card:hover {
  border-color: rgba(47, 99, 216, 0.25);
  box-shadow: 0 16px 40px rgba(12, 29, 85, 0.1);
  transform: translateY(-4px);
}
.detail-card:hover::before {
  transform: scaleX(1);
}
.detail-card-content {
  flex: 1;
  width: 100%;
}
.detail-card-image {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  align-self: stretch;
  margin-top: 8px;
}
.detail-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(47, 99, 216, 0.12), rgba(59, 130, 246, 0.12));
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.detail-card:hover .detail-card-icon {
  transform: scale(1.05);
}
.detail-card-icon svg {
  width: 26px;
  height: 26px;
}
.detail-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.35;
}
.detail-card p {
  margin: 0;
  line-height: 1.6;
  font-size: 14px;
  color: var(--muted);
}

.side-panel-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 40px;
}
.side-info-panel {
  background: var(--bg-alt);
  border: 1px solid rgba(12, 29, 85, 0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 35px rgba(12, 29, 85, 0.03);
}
.side-info-panel h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--navy);
}
.side-info-panel-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
}
.checklist-item .check-icon {
  width: 16px;
  height: 16px;
  color: #ffffff;
  background: #3b82f6;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
}

/* Premium CTA banner — matches the homepage "category-banner" treatment. */
.cta-banner-large {
  position: relative;
  background-color: #0c1d55;
  background-image: url('assets/images/generated/benefits_skyline_1781107468684.webp');
  background-size: cover;
  background-position: center 70%;
  background-blend-mode: multiply;
  color: #ffffff;
  border-radius: 22px;
  padding: 50px;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: 0 30px 60px rgba(6, 26, 85, 0.28);
  overflow: hidden;
}
/* Radial blue glow + navy gradient overlay (premium depth). */
.cta-banner-large::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 130% at 8% 0%, rgba(47, 99, 216, 0.55) 0%, rgba(47, 99, 216, 0) 55%),
    linear-gradient(120deg, rgba(12, 29, 85, 0.92) 0%, rgba(12, 29, 85, 0.55) 100%);
  z-index: 0;
}
/* Glass top-edge highlight. */
.cta-banner-large::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
  z-index: 2;
  pointer-events: none;
}
.cta-banner-content, .cta-banner-large .actions {
  position: relative;
  z-index: 1;
}
.cta-banner-content {
  display: flex;
  align-items: center;
  gap: 25px;
}
.cta-rocket-icon {
  width: 64px;
  height: 64px;
  color: #ffffff;
  opacity: 0.9;
}
.cta-banner-large h3 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-weight: 700;
}
.cta-banner-large p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 16px;
}
.cta-banner-large .actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}
/* Premium white primary button to match the homepage banner. */
.cta-banner-large .actions .hero-btn-solid {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
.cta-banner-large .actions .hero-btn-solid:hover {
  background: var(--light, #f1f5f9);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

@media (max-width: 991px) {
  .business-hero {
    padding: 95px 0 40px;
    min-height: auto;
    height: auto;
  }
  .business-hero::before {
    background-position: center center;
  }
  /* On small viewports the hero stacks and is short; cover the box but
     anchor to the logo so it stays visible behind the dark overlay. */
  .contact-hero::before {
    background-size: cover !important;
    background-position: 70% 40% !important;
  }
  .detail-hero {
    padding: 110px 0 50px;
  }
  .detail-hero .detail-breadcrumbs {
    margin-top: 18px;
    margin-bottom: 22px;
  }
  .business-hero-overlay-desktop {
    display: none;
  }
  .business-hero-overlay-mobile {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 13, 34, 0.95) 0%, rgba(12, 29, 85, 0.9) 100%);
    z-index: 1;
  }
  .business-hero-content {
    max-width: 100%;
  }
  .business-hero-actions {
    margin-top: 22px;
  }
  .business-hero h1 {
    font-size: clamp(28px, 5vw, 38px);
    max-width: 100%;
    margin-bottom: 14px;
  }
  .business-hero .lead {
    max-width: 100%;
    font-size: 15px;
  }
  .hero-trust-badges {
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
  }
  .service-cards-list {
    grid-template-columns: 1fr;
  }
  .side-panel-wrapper {
    grid-template-columns: 1fr;
  }
  .detail-card {
    flex-direction: column;
  }
  .detail-card-image {
    width: 100%;
    height: 180px;
  }
  .cta-banner-large {
    flex-direction: column;
    padding: 40px 30px;
    text-align: center;
  }
  .cta-banner-content {
    flex-direction: column;
    text-align: center;
  }
  .cta-banner-large .actions {
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }
  .stats-section {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .stats-section .stat-item {
    flex-direction: column;
  }
}

/* Service Detail Page Styles */
.detail-hero {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(10, 27, 77, 1) 0%, rgba(5, 13, 34, 1) 90%);
  padding: 130px 0 85px;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
/* When the page provides --detail-hero-bg (auto-derived from the first image
   on the page in footer.php), render it as the hero background photo with a
   dark gradient scrim on top so the white heading/breadcrumbs stay readable. */
.detail-hero[style*="--detail-hero-bg"] {
  background-image:
    linear-gradient(rgba(5, 13, 34, 0.82), rgba(5, 13, 34, 0.92)),
    var(--detail-hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.detail-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 70%;
  height: 120%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
  filter: blur(80px);
}
.detail-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(47, 99, 216, 0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
  filter: blur(60px);
}
.detail-hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  z-index: 1;
  pointer-events: none;
}
.detail-hero .container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 24px;
}
.detail-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.3px;
  animation: fadeInUp 0.6s ease-out;
}
/* Detail-hero breadcrumb: add premium top breathing room so it isn't
   crammed against the header, matching the spacing on the main hub pages
   (business-setup, blogs). Centered to sit with the centered detail-hero. */
.detail-hero .detail-breadcrumbs {
  margin-left: auto;
  margin-right: auto;
  margin-top: 28px;
  margin-bottom: 26px;
}
.detail-breadcrumbs a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}
.detail-breadcrumbs a:hover {
  color: #ffffff;
}
.detail-breadcrumbs span {
  font-size: 9px;
  color: #64748b;
}
/* Current-page crumb: rendered as a non-linked span, not a separator. */
.detail-breadcrumbs span.breadcrumb-current {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}
/* Light-background variant: the 4 hub pages place the breadcrumb on a
   white section, where the dark-hero colours would be invisible. */
#services-list .detail-breadcrumbs {
  background: rgba(12, 29, 85, 0.04);
  border-color: rgba(12, 29, 85, 0.08);
  color: #5d6880;
}
#services-list .detail-breadcrumbs a {
  color: var(--accent);
}
#services-list .detail-breadcrumbs a:hover {
  color: var(--navy);
}
#services-list .detail-breadcrumbs span {
  color: #94a3b8;
}
#services-list .detail-breadcrumbs span.breadcrumb-current {
  color: var(--navy);
}
.detail-hero h1 {
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #ffffff !important; /* Force override global h1 color */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out;
}
.detail-hero .seo-desc {
  font-size: clamp(14px, 1.1vw, 17px);
  color: #cbd5e1;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   Unified professional "feature row" section system.
   All service detail pages share this markup, so this block
   gives every page the same premium, consistent presentation
   regardless of the source image's art style.
   ============================================================ */
.service-section {
  display: flex;
  gap: 64px;
  align-items: center;
  padding: 72px 48px;
  border-bottom: none;
  border-radius: 20px;
  margin: 28px 0;
  position: relative;
}
/* Alternating tint so the left/right rhythm reads as intentional */
.service-section.align-right {
  flex-direction: row-reverse;
  background: linear-gradient(180deg, #f6f8fd 0%, #eef3fc 100%);
}
.service-section.align-left {
  background: #ffffff;
  border: 1px solid rgba(12, 29, 85, 0.07);
  box-shadow: 0 6px 24px rgba(12, 29, 85, 0.04);
}
.service-section-content {
  flex: 1.15;
}
/* Numbered headings ("1. …") get a leading accent bar + strong weight,
   turning the four sections into a clear professional progression. */
.service-section-content h2 {
  font-size: 27px;
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.25;
  padding-left: 18px;
  position: relative;
}
.service-section-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 5px;
  border-radius: 4px;
  background: linear-gradient(180deg, #3b82f6 0%, #1e3a8a 100%);
}
.service-section-content p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 560px;
}
/* Framed media: every image crops to the SAME 4:3 shape inside an
   identical frame, so photos, posters, and logos all look uniform. */
.service-section-image {
  flex: 0.85;
}
.service-section-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(12, 29, 85, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
  outline: 1px solid rgba(12, 29, 85, 0.06);
  outline-offset: -1px;
  background: #eef3fc;
}

.service-points-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
}
.service-point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--navy);
  font-weight: 600;
}
.service-point-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 3px 8px rgba(59, 130, 246, 0.3);
}
.service-point-icon svg {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}

.service-faq-section {
  padding: 72px 0 84px;
  background:
    radial-gradient(circle at top, rgba(47, 99, 216, 0.08) 0%, transparent 38%),
    linear-gradient(180deg, #f6f9ff 0%, #edf3ff 100%);
  border-top: 1px solid rgba(12, 29, 85, 0.04);
}
.service-faq-section .container {
  max-width: 1180px;
}
.service-faq-section .core-heading-centered {
  margin-bottom: 34px;
}
.service-faq-section h2 {
  text-align: center;
  font-size: 32px;
  color: var(--navy);
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.service-faq-section .eyebrow {
  text-align: center;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 22px;
}
/* When the FAQ section uses the centered hero-style heading (homepage),
   keep the larger .core-title sizing instead of the compact in-section h2. */
.service-faq-section .core-heading-centered h2.core-title {
  font-size: clamp(24px, 2.8vw, 36px);
  margin-bottom: 12px;
  line-height: 1.12;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.service-faq-section .core-subtitle {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.service-faq-list {
  max-width: 1080px;
  margin: 0 auto;
  /* Multi-column masonry: each item takes only its own height, so opening one
     never leaves a blank gap beside it in the other column. */
  column-count: 2;
  column-gap: 18px;
  padding: 0 16px;
  width: 100%;
}
.faq-item {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(12, 29, 85, 0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(12, 29, 85, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
  /* Keep each card intact within a column (don't split across columns). */
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 16px;
  display: inline-block;
  width: 100%;
}
.faq-item:hover {
  border-color: rgba(47, 99, 216, 0.15);
  box-shadow: 0 18px 42px rgba(12, 29, 85, 0.09);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.96);
}
.faq-item[open] {
  border-color: rgba(47, 99, 216, 0.25);
  box-shadow: 0 18px 46px rgba(12, 29, 85, 0.1);
  transform: none;
  background: rgba(255, 255, 255, 0.98);
}
.faq-summary {
  padding: 18px 22px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  line-height: 1.35;
  transition: color 0.25s ease;
}
.faq-summary::after {
  content: none !important;
}
.faq-summary::-webkit-details-marker {
  display: none;
}
.faq-summary:hover {
  color: var(--accent);
}
.faq-chevron {
  width: 18px;
  height: 18px;
  stroke: var(--muted);
  stroke-width: 2.2;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.25s;
  flex-shrink: 0;
}
.faq-summary:hover .faq-chevron {
  stroke: var(--accent);
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  stroke: var(--accent);
}
.faq-content {
  padding: 0 22px 18px;
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--muted);
  border-top: 1px solid rgba(12, 29, 85, 0.03);
  padding-top: 14px;
  animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .service-section, .service-section.align-right {
    flex-direction: column;
    gap: 28px;
    padding: 36px 24px;
    margin: 20px 0;
  }
  .service-section-content {
    order: 1;
    width: 100%;
  }
  .service-section-image {
    order: 0;
    width: 100%;
  }
  .service-section-image img {
    aspect-ratio: 16 / 10;
  }
  .service-points-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .service-faq-list {
    grid-template-columns: 1fr;
  }
  .service-faq-section {
    padding: 58px 0 68px;
  }
  .service-section-content h2 {
    font-size: 24px;
  }
}

a.detail-card {
  text-decoration: none;
  color: inherit;
}

/* Dedicated FAQ and blog pages */
.faq-white {
  background: #ffffff;
}

.blog-index-section {
  background: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid rgba(12, 29, 85, 0.07);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(12, 29, 85, 0.04);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 99, 216, 0.2);
  box-shadow: 0 18px 42px rgba(12, 29, 85, 0.08);
}

.blog-card-image-link {
  display: block;
  overflow: hidden;
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.03);
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.blog-card h2 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.blog-card h2 a {
  color: var(--navy);
  text-decoration: none;
}

.blog-card h2 a:hover {
  color: var(--accent);
}

.blog-card p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.blog-read-link {
  margin-top: auto;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.blog-read-link:hover {
  color: var(--accent);
}

.blog-article {
  padding: 72px 0;
  background: #ffffff;
}

.blog-article-container {
  max-width: 980px;
}

.article-meta {
  justify-content: center;
  margin-bottom: 22px;
}

.article-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(12, 29, 85, 0.1);
  border: 1px solid rgba(12, 29, 85, 0.08);
  margin-bottom: 46px;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
}

.article-body h2 {
  font-size: 30px;
  line-height: 1.18;
  margin: 42px 0 14px;
}

.article-body p {
  font-size: 17px;
  line-height: 1.78;
  color: var(--muted);
  margin-bottom: 20px;
}

.article-body ul {
  margin: 18px 0 28px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.article-body li {
  position: relative;
  padding-left: 28px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.article-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(47, 99, 216, 0.1);
}

.article-callout {
  margin: 34px 0;
  padding: 22px 24px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(47, 99, 216, 0.16);
  color: var(--navy);
  line-height: 1.65;
}

.article-callout strong {
  color: var(--accent);
}

@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-content {
    padding: 20px;
  }

  .blog-card h2 {
    font-size: 21px;
  }

  .blog-article {
    padding: 48px 0;
  }

  .article-hero-image {
    border-radius: 14px;
    margin-bottom: 32px;
  }

  .article-body h2 {
    font-size: 25px;
  }

  .article-body p,
  .article-body li {
    font-size: 16px;
  }
}

.author-bio-card {
  margin-top: 48px;
  padding: 24px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(47, 99, 216, 0.16);
  display: flex;
  gap: 20px;
  align-items: center;
}
.author-avatar {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  border: 2px solid var(--accent);
}
.author-details h4 {
  margin: 0 0 4px 0;
  font-size: 18px;
  color: var(--navy);
  font-family: var(--font-display);
}
.author-details .author-title {
  margin: 0 0 10px 0;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.author-details p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}



