/* ============================================================
   Definite Managements India — Design System
   Font: Plus Jakarta Sans | Primary: #1B2E4B | Teal: #1D9E75
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy: #1B2E4B;
  --navy-dark: #111e32;
  --navy-mid: #243d60;
  --teal: #1E9E9E;
  --teal-dark: #177A7A;
  --teal-light: #E8F7F2;
  --teal-faint: #F0FAF6;
  --white: #ffffff;
  --bg: #F5F7F6;
  --bg-alt: #EEF2F0;
  --text: #1A2332;
  --text-muted: #5A6678;
  --text-light: #8A96A8;
  --border: #E4E9E6;
  --border-light: #EDF1EE;
  --shadow-xs: 0 1px 3px rgba(26, 35, 50, 0.05);
  --shadow-sm: 0 2px 8px rgba(26, 35, 50, 0.07);
  --shadow-md: 0 6px 24px rgba(26, 35, 50, 0.10);
  --shadow-lg: 0 16px 48px rgba(26, 35, 50, 0.13);
  --shadow-xl: 0 24px 64px rgba(26, 35, 50, 0.16);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

/* ===== FULL-PAGE BACKGROUND VIDEO ===== */
.page-bg-video-wrap {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.page-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(0.7) brightness(0.6) contrast(1.05);
  will-change: transform;
}

.page-bg-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(245, 247, 246, 0.82) 60%,
      rgba(232, 240, 237, 0.90) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .page-bg-video {
    display: none;
  }
}

/* ======================================= */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

svg {
  flex-shrink: 0;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Section Layout ---------- */
.section-block {
  padding: 48px 0;
}

.section-block.bg-light {
  background: var(--bg);
}

.section-block.bg-navy-deep {
  background: var(--navy);
}

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--teal-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-eyebrow.light {
  background: rgba(29, 158, 117, 0.18);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 1000;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-title.left {
  text-align: left;
}

.section-title.light {
  color: #ffffff;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 700;
}

.section-desc.left {
  text-align: left;
  margin: 0;
}

.section-desc.light {
  color: rgba(255, 255, 255, 0.65);
}

.section-cta {
  text-align: center;
  margin-top: 44px;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(3px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out),
    filter 0.75s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ============================================================
   NAVBAR — APPLE STYLE
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 20px rgba(26, 35, 50, 0.10);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.1em;
}

.brand-sub {
  font-size: 0.62rem;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 2px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 720;
  color: var(--text);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  background: #177A7A;
  color: #fff;
}

.nav-link:hover .nav-link-arrow svg,
.nav-link.active .nav-link-arrow svg {
  color: #fff;
}

.nav-link-arrow svg {
  transition: transform 0.2s var(--ease-out);
  color: white;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .nav-link-arrow svg {
  transform: rotate(180deg);
}

.nav-dropdown.open .nav-link-arrow svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(26, 35, 50, 0.05);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out), visibility 0.22s;
  padding: 8px;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu a:hover {
  background: var(--teal-faint);
  color: var(--teal-dark);
}

.dropdown-menu a.service-menu-link,
.mob-dropdown-menu a.service-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-link-icon {
  width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}

.dropdown-menu a.service-menu-link:hover .menu-link-icon,
.mob-dropdown-menu a.service-menu-link:hover .menu-link-icon {
  color: var(--teal-dark);
}

/* CTA Button */
.btn-consult {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  white-space: nowrap;

  background: #177A7A;
  color: #fff;
  border: none;
  box-shadow: none;
  transition: none;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-search-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: rgba(26, 35, 50, 0.06);
  border: 1px solid rgba(26, 35, 50, 0.08);
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.nav-search-btn:hover {
  background: var(--teal-faint);
  color: var(--teal-dark);
  transform: translateY(-1px);
}

.nav-search-btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-search-mobile {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: rgba(26, 35, 50, 0.06);
  border: 1px solid rgba(26, 35, 50, 0.08);
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.nav-search-mobile:hover {
  background: var(--teal-faint);
  color: var(--teal-dark);
  transform: translateY(-1px);
}

.nav-search-mobile:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.btn-consult:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29, 158, 117, 0.30);
}

.btn-consult:active {
  transform: translateY(0);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav (Premium Design) */
.mobile-nav {
  display: flex;
  position: fixed;
  top: 68px;
  left: 100%;
  right: -100%;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  z-index: 998;
  overflow-y: auto;
  padding: 24px 24px 40px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.4s var(--ease-out);
  box-shadow: -10px 0 40px rgba(26, 35, 50, 0.08);
  visibility: hidden;
}

.mobile-nav.open {
  transform: translateX(-100%);
  visibility: visible;
}

.mobile-nav a {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  transition: all 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: var(--teal-light);
  color: var(--teal-dark);
  transform: translateX(6px);
}

.mobile-search-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mob-section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
  padding: 28px 18px 10px;
  font-weight: 800;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 8px;
}

.mob-dropdown {
  margin: 4px 0;
  border-radius: var(--radius-lg);
}

.mob-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  list-style: none;
  position: relative;
  overflow: hidden;
}

.mob-dropdown-toggle::-webkit-details-marker {
  display: none;
}

.mob-dropdown-toggle:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
  transform: translateX(6px);
}

.mob-dropdown-toggle svg {
  transition: transform 0.3s var(--ease-out);
  color: var(--teal-light);
}

.mob-dropdown[open] .mob-dropdown-toggle svg {
  transform: rotate(180deg);
}

.mob-dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 0 8px 16px;
  border-left: 2px solid var(--teal-light);
  margin-left: 24px;
  margin-top: 4px;
}

.mob-dropdown-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 14px;
  color: var(--text-muted);
}

.mob-dropdown-menu a:hover {
  color: var(--teal-dark);
  background: transparent;
  transform: translateX(4px);
}

.mobile-cta-wrap {
  margin-top: 32px;
  padding: 0 4px;
}

.mobile-cta-wrap .btn-consult {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(29, 158, 117, 0.25);
}

/* Page offset */
.page-offset {
  padding-top: 68px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background: var(--white);
  min-height: calc(100dvh - 68px);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Subtle grid bg texture */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 35, 50, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 35, 50, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
  position: relative;
}

/* Left text */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  border: 1px solid rgba(29, 158, 117, 0.25);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
  animation: fadeSlideUp 0.7s var(--ease-out) 0.1s both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-heading {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: fadeSlideUp 0.7s var(--ease-out) 0.2s both;
}

.hero-accent {
  color: var(--teal);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.7s var(--ease-out) 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.7s var(--ease-out) 0.4s both;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--teal);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 100px;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-spring), box-shadow 0.2s;
}

.btn-primary-hero:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 158, 117, 0.35);
}

.btn-primary-hero:active {
  transform: translateY(0);
}

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease-spring);
}

.btn-ghost-hero:hover {
  border-color: var(--navy);
  background: rgba(26, 35, 50, 0.04);
  transform: translateY(-1px);
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.7s var(--ease-out) 0.5s both;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
}

/* Hero media */
.hero-media {
  position: relative;
}

.hero-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  position: relative;
}

.hero-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 158, 117, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 8s ease;
}

.hero-img-frame:hover img {
  transform: scale(1.03);
}

/* Floating stat cards */
.hero-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(26, 35, 50, 0.05);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
}

.card-top-left {
  top: -16px;
  left: -24px;
  animation: floatCard 4s ease-in-out infinite;
}

.card-bottom-right {
  bottom: -16px;
  right: -24px;
  animation: floatCard 4s ease-in-out 2s infinite;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.stat-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ============================================================
   CREDIBILITY STRIP
   ============================================================ */
.cred-strip {
  background: var(--navy);
  padding: 40px 0;
}

.cred-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.cred-item:last-child {
  border-right: none;
}

.cred-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(29, 158, 117, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.cred-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.cred-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 800;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  row-gap: 20px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring), border-color 0.3s;
  cursor: default;
}

.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(29, 158, 117, 0.2);
}

.svc-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.3s;
}

.svc-card:hover .svc-icon-wrap {
  background: rgba(29, 158, 117, 0.18);
}

.svc-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.svc-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  font-weight: 700;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  transition: gap 0.2s var(--ease-out), color 0.2s;
}

.svc-link:hover {
  gap: 8px;
  color: var(--teal-dark);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--teal);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.366);
  font-weight: 900;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 64px;
  align-items: center;
}

.why-img-col {
  min-width: 0;
}

.why-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.why-badge-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
}

.wbf-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.04em;
}

.wbf-lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-top: 2px;
}

.why-content-col {
  min-width: 0;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-item-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}

.why-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industry-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.ind-pill {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  padding: 18px 18px 17px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 250, 246, 0.92) 100%);
  border: 1px solid rgba(29, 158, 117, 0.14);
  box-shadow: var(--shadow-sm);
  cursor: default;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
}

.ind-pill:hover {
  border-color: rgba(29, 158, 117, 0.34);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.ind-pill-icon {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal) 0%, #55d6bb 100%);
  box-shadow: 0 0 0 6px rgba(29, 158, 117, 0.12);
}

.ind-pill-copy {
  min-width: 0;
}

.ind-pill-title {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 5px;
}

.ind-pill-meta {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 700;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

/* Connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--teal) 0, var(--teal) 6px, transparent 6px, transparent 14px);
  z-index: 0;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.step-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--teal);
  background: var(--teal-light);
  border: 1.5px solid rgba(29, 158, 117, 0.2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-icon {
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}

.step-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   RESOURCES GRID
   ============================================================ */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring), border-color 0.3s;
}

.resource-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(29, 158, 117, 0.2);
}

.resource-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.resource-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.resource-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  font-weight: 700;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  transition: gap 0.2s var(--ease-out), color 0.2s;
}

.resource-link:hover {
  gap: 8px;
  color: var(--teal-dark);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background 0.3s, border-color 0.3s;
}

.testi-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(29, 158, 117, 0.3);
}

.testi-stars {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.testi-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 700;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  background: var(--teal);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.testi-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.testi-company {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.50);
  font-weight: 500;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--teal);
  padding: 48px 0;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-strip-inner h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.cta-strip-inner p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 700;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: #fff;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 100px;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   INSIGHT / BLOG CARDS
   ============================================================ */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.insight-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.insight-img-wrap {
  overflow: hidden;
  height: 200px;
}

.insight-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.insight-card:hover .insight-img-wrap img {
  transform: scale(1.04);
}

.insight-body {
  padding: 22px 22px 24px;
}

.insight-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.insight-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 8px;
}

.insight-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
  font-weight: 700;
}

.insight-meta {
  display: flex;
  gap: 14px;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  background: var(--navy);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1.5px solid var(--navy);
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease-spring);
}

/* .btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
} */
.btn-outline-teal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  background: transparent;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 700;
  border: 1.5px solid var(--teal);
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease-spring);
}

.btn-outline-teal:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  padding: 72px 0 0;
}

.footer-brand {
  min-width: 0;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand-link .brand-name {
  color: #fff;
}

.footer-brand-link .brand-sub {
  color: var(--teal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.9fr 1fr;
  gap: 24px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid>* {
  min-width: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .brand-name {
  color: #fff;
}

.footer-logo .brand-sub {
  color: var(--teal);
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  min-width: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
  overflow-wrap: anywhere;
}

.footer-contact-item a:hover {
  color: var(--teal);
}

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-col ul li a:hover {
  color: var(--teal);
}

.footer-office-city {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 4px;
}

.footer-office-addr {
  font-size: 0.80rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
  margin: 0;
}

.footer-office p {
  font-size: 0.80rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
  margin: 0;
}

.footer-office-spaced {
  margin-top: 16px;
}

.footer-hours {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.40);
  flex-wrap: wrap;
}

.footer-map-frame {
  margin-top: 18px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.footer-map-frame iframe {
  display: block;
  width: 100%;
  height: 190px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.30);
  margin: 0;
}

.footer-bottom-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.46);
}

.footer-credit span {
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.30);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.60);
}

/* Footer social icons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer-social-btn:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

.footer-social-wa:hover {
  background: #25D366;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1180px) {
  .navbar-inner {
    gap: 16px;
  }

  .nav-links,
  .navbar-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile-actions {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 18px;
  }

  .cred-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cred-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cred-item:nth-child(2n) {
    border-right: none;
  }

  .cred-item:last-child,
  .cred-item:nth-last-child(2) {
    border-bottom: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .stat-item:last-child,
  .stat-item:nth-last-child(2) {
    border-bottom: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section-block {
    padding: 64px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* Nav */
  .nav-links,
  .navbar-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile-actions {
    display: flex;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 20px 56px;
    text-align: center;
    min-height: auto;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-text {
    align-items: center;
  }

  .hero-badge {
    align-self: center;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-trust-row {
    justify-content: center;
  }

  .hero-media {
    order: -1;
  }

  .hero-img-frame {
    aspect-ratio: 3/2;
  }

  .card-top-left {
    top: -12px;
    left: -12px;
    min-width: 130px;
    padding: 10px 14px;
  }

  .card-bottom-right {
    bottom: -12px;
    right: -12px;
    min-width: 130px;
    padding: 10px 14px;
  }

  .stat-val {
    font-size: 1.1rem;
  }

  /* Cred strip */
  .cred-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cred-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
  }

  .cred-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .stat-item:last-child,
  .stat-item:nth-last-child(2) {
    border-bottom: none;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-img-wrap img {
    height: 280px;
  }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Resources */
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Testimonials */
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* CTA strip */
  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* Insight */
  .insight-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    row-gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand-link {
    justify-content: center;
  }

  .footer-brand-desc {
    max-width: 100%;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-hours {
    justify-content: center;
  }

  .footer-legal {
    justify-content: center;
  }

  /* Industry pills */
  .industry-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .industry-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  /* Section header */
  .section-header {
    margin-bottom: 36px;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary-hero,
  .btn-ghost-hero {
    justify-content: center;
  }

  .card-top-left,
  .card-bottom-right {
    display: none;
  }

  .site-footer {
    padding-top: 56px;
  }

  .footer-grid {
    gap: 26px;
    padding-bottom: 32px;
  }

  .footer-brand-link {
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: stretch;
  }

  .footer-bottom-copy {
    text-align: left;
  }

  .footer-legal {
    justify-content: flex-start;
    gap: 14px;
  }

  .footer-contact-item,
  .footer-hours {
    justify-content: flex-start;
  }

  .footer-map-frame iframe {
    height: 170px;
  }

  .industry-pills,
  .industry-trust {
    grid-template-columns: 1fr;
  }

  .ind-pill {
    padding: 16px;
    border-radius: 18px;
  }

  .ind-pill-title {
    font-size: 0.92rem;
  }

  .ind-pill-meta {
    font-size: 0.78rem;
  }
}

/* ============================================================
   INNER PAGE — SHARED HERO BANNER
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 158, 117, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 158, 117, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 158, 117, 0.12) 0%, transparent 70%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.page-hero-inner h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 14px 0 16px;
}

.page-hero-inner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.7;
  margin: 0 0 24px;
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumb a {
  color: var(--teal);
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.about-mini-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.about-mini-stat .big-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-mini-stat .big-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 3px;
  font-weight: 700;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 20px;
  border-left: 2px solid var(--border);
}

.tl-item {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
  margin-left: -11px;
}

.tl-dot {
  width: 22px;
  height: 22px;
  background: var(--teal);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: 0;
}

.tl-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.tl-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  font-weight: 700;
}

/* Vision / Mission */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.vm-card-navy {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  border-left: 4px solid var(--teal);
}

.vm-card-teal {
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.vm-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vm-card-navy h3,
.vm-card-teal h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.vm-card-navy p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 700;
}

.vm-card-teal p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 700;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.team-card-body {
  padding: 20px;
}

.team-card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.team-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  font-weight: 700;
}

/* Office images */
.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.office-img-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.office-img-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 14px 0 4px;
}

.office-img-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 700;
}

/* CTA Banner */
.cta-banner {
  background: var(--navy);
  padding: 72px 0;
}

.cta-banner-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.cta-banner-inner p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  margin-bottom: 32px;
}

.btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--teal);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s var(--ease-spring);
}

.btn-primary-solid:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.btn-outline-white-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease-spring);
}

.btn-outline-white-pill:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-nav-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 68px;
  z-index: 50;
}

.service-nav-inner {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.service-nav-inner::-webkit-scrollbar {
  display: none;
}

.service-nav-links {
  display: flex;
  gap: 6px;
  min-width: max-content;
}

.service-nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
}

.service-nav-links a:hover {
  color: var(--teal);
  border-color: var(--teal);
  background: var(--teal-faint);
}

.svc-detail-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.svc-detail-section:last-of-type {
  border-bottom: none;
}

.svc-detail-section:nth-child(even) {
  background: var(--bg);
}

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.svc-detail-grid.reverse {
  direction: rtl;
}

.svc-detail-grid.reverse>* {
  direction: ltr;
}

.svc-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.svc-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  flex: 1;
  transition: transform 0.5s var(--ease-out);
}

.svc-img-wrap:hover img {
  transform: scale(1.04);
}

.svc-detail-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svc-number {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  display: inline-block;
  width: 180px;
}

.svc-detail-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 10px 0 16px;
}

.svc-detail-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.svc-divider {
  width: 40px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin: 0 0 20px;
}

.svc-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}

.svc-includes li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.5;
}

.svc-includes li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--teal-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%231D9E75' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   INDUSTRIES PAGE
   ============================================================ */
.industry-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.industry-section:nth-child(even) {
  background: var(--bg);
}

.ind-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ind-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.ind-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.ind-img:hover img {
  transform: scale(1.03);
}

.ind-challenges,
.ind-solutions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.ind-challenge,
.ind-solution {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.55;
  padding: 9px 12px 9px 36px;
  border-radius: var(--radius-sm);
  position: relative;
}

.ind-challenge {
  background: #FEF2F2;
  color: #7F1D1D;
}

.ind-challenge::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #EF4444;
  border-radius: 50%;
  opacity: 0.6;
}

.ind-solution {
  background: var(--teal-faint);
  color: var(--navy);
}

.ind-solution::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--teal);
  border-radius: 50%;
}

.ind-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin: 20px 0 8px;
}

/* ============================================================
   RESOURCES PAGE
   ============================================================ */
.resources-article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.resources-article-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.resource-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.resource-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.resources-article-card:hover .resource-img-wrap img {
  transform: scale(1.04);
}

.resource-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--teal);
  padding: 4px 10px;
  border-radius: 100px;
}

.resource-body {
  padding: 22px;
}

.resource-date {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.resource-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 8px;
}

.resource-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  transition: gap 0.2s, color 0.2s;
}

.resource-link:hover {
  gap: 8px;
  color: var(--teal-dark);
}

/* Due dates table */
.due-dates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.due-dates-table th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.due-dates-table th:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}

.due-dates-table th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}

.due-dates-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}

.due-dates-table tr:last-child td {
  border-bottom: none;
}

.due-dates-table tr:hover td {
  background: var(--teal-faint);
}

.dd-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--teal-light);
  color: var(--teal-dark);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item.open {
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  background: transparent;
  cursor: pointer;
  gap: 12px;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--teal);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s var(--ease-out);
}

.faq-icon svg {
  transition: transform 0.25s var(--ease-out);
}

.faq-item.open .faq-icon {
  background: var(--teal);
  border-color: var(--teal);
}

.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out), padding 0.35s;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

.faq-a-inner {
  padding: 0 20px 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 600;
}

/* Checklist download box */
.checklist-download-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.checklist-download-box::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(29, 158, 117, 0.12);
}

.checklist-icon {
  width: 72px;
  height: 72px;
  background: rgba(29, 158, 117, 0.18);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checklist-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.checklist-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.checklist-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.65;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-quick-bar {
  background: var(--teal);
  padding: 18px 0;
}

.contact-quick-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.qc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.qc-item:hover {
  opacity: 0.85;
}

.qc-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-main-section {
  background: var(--bg);
  padding: 80px 0;
}

.contact-main-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

/* Form */
.enterprise-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border-top: 4px solid var(--teal);
}

.enterprise-form-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.10);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #EF4444;
}

.form-error-msg {
  color: #EF4444;
  font-size: 0.75rem;
  display: none;
}

.form-error-msg.visible {
  display: block;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231B2E4B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.btn-submit-full {
  width: 100%;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  border-radius: 100px;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-spring);
  margin-top: 8px;
}

.btn-submit-full:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.form-disclaimer {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

#formSuccess {
  display: none;
  text-align: center;
  padding: 32px 20px;
}

#formSuccess h3 {
  color: var(--teal);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

#formSuccess p {
  color: var(--text-muted);
}

/* Contact sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.contact-info-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.office-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.office-item:last-child {
  border-bottom: none;
}

.office-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.office-details h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.office-details p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.office-details a {
  color: var(--teal);
  font-weight: 600;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.85rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  color: var(--navy);
  font-weight: 600;
}

.hours-time {
  color: var(--text-muted);
}

.hours-badge {
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

.instant-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.instant-cta-card {
  padding: 14px;
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  display: block;
  transition: transform 0.2s var(--ease-spring), opacity 0.2s;
}

.instant-cta-card:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.instant-cta-card.wa {
  background: #25D366;
  color: #fff;
}

.instant-cta-card.call {
  background: var(--navy);
  color: #fff;
}

.instant-cta-card .ict-icon {
  margin-bottom: 4px;
  display: flex;
  justify-content: center;
}

.instant-cta-card strong {
  font-size: 0.82rem;
  font-weight: 700;
  display: block;
}

.instant-cta-card span {
  font-size: 0.72rem;
  opacity: 0.8;
  display: block;
  margin-top: 2px;
}

/* Trust strip for contact */
.contact-trust-strip {
  background: var(--navy);
  padding: 48px 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.ts-item strong {
  display: block;
  font-size: 2rem;
  color: var(--teal);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.ts-item span {
  color: rgba(255, 255, 255, 0.60);
  font-size: 0.82rem;
}

/* Contact testimonials */
.contact-testimonials {
  padding: 80px 0;
  background: var(--white);
}

/* FAQ grid */
.faq-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  border-top: 3px solid var(--teal);
}

.faq-mini-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.faq-mini-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   INNER PAGE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-img img {
    height: 320px;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offices-grid {
    grid-template-columns: 1fr;
  }

  .svc-detail-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .svc-detail-grid.reverse {
    direction: ltr;
  }

  .ind-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-main-section .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-mini-grid {
    grid-template-columns: 1fr;
  }

  .checklist-download-box {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .about-img img {
    height: 260px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .svc-img-wrap img {
    height: 260px;
  }

  .ind-img img {
    height: 260px;
  }

  /* Contact page — 768px */
  .page-hero {
    padding: 52px 0 40px;
  }

  .page-hero-inner p {
    font-size: 0.95rem;
  }

  .contact-quick-bar {
    padding: 14px 0;
  }

  .contact-quick-inner {
    gap: 16px;
    justify-content: flex-start;
  }

  .contact-main-section {
    padding: 40px 0;
  }

  .enterprise-form-card {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .instant-cta-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-trust-strip {
    padding: 40px 0;
  }

  .map-section {
    padding: 40px 0;
  }

  .map-container iframe {
    height: 280px !important;
  }

  .faq-mini-card {
    padding: 18px;
  }

  .checklist-download-box {
    padding: 32px 24px;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {

  /* Contact quick bar — stack vertically on very small screens */
  .contact-quick-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .qc-item {
    font-size: 0.82rem;
    gap: 8px;
  }

  .qc-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }

  /* Form card */
  .contact-main-section {
    padding: 28px 0;
  }

  .enterprise-form-card {
    padding: 20px 14px;
  }

  .enterprise-form-card h2 {
    font-size: 1.2rem;
  }

  .form-subtitle {
    font-size: 0.82rem;
    margin-bottom: 20px;
  }

  .form-group label {
    font-size: 0.72rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.88rem;
    padding: 10px 12px;
  }

  /* Sidebar cards */
  .contact-info-card {
    padding: 18px 14px;
  }

  .hours-row {
    font-size: 0.8rem;
  }

  /* Trust strip */
  .contact-trust-strip {
    padding: 32px 0;
  }

  .trust-strip-grid {
    gap: 16px;
  }

  .ts-item strong {
    font-size: 1.6rem;
  }

  .ts-item span {
    font-size: 0.76rem;
  }

  /* Map */
  .map-section {
    padding: 32px 0;
  }

  .map-container iframe {
    height: 220px !important;
  }

  /* FAQ */
  .faq-mini-card {
    padding: 16px 14px;
  }

  .faq-mini-card h4 {
    font-size: 0.88rem;
  }

  .faq-mini-card p {
    font-size: 0.8rem;
  }
}

.logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* ===============================
   FLOATING WHATSAPP BUTTON — PREMIUM
   =============================== */

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Button */
.floating-wa-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1D9E75, #169962);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 30px rgba(29, 158, 117, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

/* Icon */
.floating-wa-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  z-index: 2;
}

/* Glow effect */
.floating-wa-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

/* Hover */
.floating-wa-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 16px 40px rgba(29, 158, 117, 0.5),
    0 6px 18px rgba(0, 0, 0, 0.2);
}

.floating-wa-btn:hover::before {
  opacity: 1;
}

/* Pulse Animation */
.floating-wa-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(29, 158, 117, 0.5);
  animation: wa-pulse 2.5s infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* Label */
.floating-wa-label {
  background: rgba(27, 46, 75, 0.92);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Show label on hover */
.floating-wa:hover .floating-wa-label {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .floating-wa {
    right: 16px;
    bottom: 16px;
  }

  .floating-wa-btn {
    width: 52px;
    height: 52px;
  }

  .floating-wa-label {
    display: none;
    /* clean mobile UI */
  }
}

/* ============================================================
   HERO — ENTERPRISE CINEMATIC
   Vibe: Ethereal Glass  |  Layout: Asymmetric Editorial Split
   animate-ui MOTION_INTENSITY:8  |  stitch VARIANCE:8
   ============================================================ */

/* ── SECTION ── */
.hero-enterprise {
  position: relative;
  background: linear-gradient(140deg, #060F1E 0%, #0C1B32 42%, #091525 72%, #050D1A 100%);
  min-height: calc(100dvh - 68px);
  display: flex;
  align-items: center;
  padding: 80px 0 56px;
  overflow: hidden;
  isolation: isolate;
}

.hero-video-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(6, 15, 30, 0.25) 0%, rgba(12, 27, 50, 0.2) 100%),

}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  opacity: 0.72;
  filter: saturate(0.92) contrast(1.06) brightness(0.80);
  will-change: transform;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(4, 10, 22, 0.60) 0%, rgba(4, 10, 22, 0.38) 45%, rgba(4, 10, 22, 0.52) 100%),
    radial-gradient(circle at 78% 28%, rgba(29, 158, 117, 0.14) 0%, transparent 36%),
    linear-gradient(180deg, rgba(5, 13, 26, 0.08) 0%, rgba(5, 13, 26, 0.28) 100%);
}

/* -- ANIMATED GRID TEXTURE -- */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 158, 117, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 158, 117, 0.038) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: heroGridDrift 30s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes heroGridDrift {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(72px, 72px);
  }
}

/* -- ORGANIC BLOB GLOWS -- */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}

.hero-blob-a {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(29, 158, 117, 0.15) 0%, transparent 68%);
  top: -12%;
  right: 2%;
  animation: heroBlobDriftA 20s cubic-bezier(0.32, 0.72, 0, 1) infinite alternate;
}

.hero-blob-b {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(28, 142, 158, 0.1) 0%, transparent 68%);
  bottom: -8%;
  left: -4%;
  animation: heroBlobDriftB 26s cubic-bezier(0.32, 0.72, 0, 1) infinite alternate;
}

@keyframes heroBlobDriftA {
  0% {
    transform: translate(0, 0) scale(1);
  }

  35% {
    transform: translate(-44px, 28px) scale(1.09);
  }

  70% {
    transform: translate(22px, -52px) scale(0.94);
  }

  100% {
    transform: translate(-18px, 18px) scale(1.06);
  }
}

@keyframes heroBlobDriftB {
  0% {
    transform: translate(0, 0) scale(1);
  }

  40% {
    transform: translate(48px, -28px) scale(1.11);
  }

  75% {
    transform: translate(-22px, 38px) scale(0.91);
  }

  100% {
    transform: translate(28px, -12px) scale(1.05);
  }
}

/* -- GRAIN NOISE OVERLAY -- */
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
  pointer-events: none;
  z-index: 2;
}

/* -- INNER LAYOUT: Asymmetric 1.12 / 0.88 grid -- */
.hero-enterprise-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 72px;
  align-items: center;
}

/* -- HERO REVEAL SYSTEM -- */
/* Desktop: JS adds .hero-visible with stagger. Mobile: skip entirely — show instantly. */
.hero-reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(5px);

  transition:
    opacity 0.80s cubic-bezier(0.32, 0.72, 0, 1),
    transform 0.80s cubic-bezier(0.32, 0.72, 0, 1),
    filter 0.80s cubic-bezier(0.32, 0.72, 0, 1);
}

.hero-reveal.hero-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  font-weight: 800;
}

/* Mobile: never hide content — show immediately, no JS needed */
@media (max-width: 900px) {
  .hero-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* -- LEFT: CONTENT -- */
.hero-ent-content {
  display: flex;
  flex-direction: column;
}

/* Trust badge */
.hero-ent-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(29, 158, 117, 0.1);
  border: 1px solid rgba(29, 158, 117, 0.24);
  border-radius: 100px;
  padding: 7px 18px 7px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(74, 222, 128, 0.88);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 30px;
  width: fit-content;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1D9E75;
  flex-shrink: 0;
  animation: heroBadgePulse 2.8s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

@keyframes heroBadgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0px rgba(29, 158, 117, 0.6);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(29, 158, 117, 0);
  }
}

/* Display heading */
.hero-ent-heading {
  font-size: clamp(2.5rem, 4.4vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: #EEF3FF;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-line {
  display: inline-block;
}

/* Animated gradient shimmer on accent word */
.hero-ent-accent {
  background: #177A7A;
  background-size: 220% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroAccentShimmer 5s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

@keyframes heroAccentShimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Sub-copy */
.hero-ent-sub {
  font-size: 1.04rem;
  color: rgba(238, 243, 255, 0.52);
  line-height: 1.8;
  max-width: 455px;
  margin-bottom: 38px;
  font-weight: 400;
}

/* -- CTA ROW: Button-in-Button pattern -- */
.hero-ent-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-ent-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 14px 26px;
  background: #177A7A;
  color: #fff;
  font-weight: 700;
  font-size: 0.93rem;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 24px rgba(29, 158, 117, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.13);
  transition:
    transform 0.65s cubic-bezier(0.32, 0.72, 0, 1),
    box-shadow 0.65s cubic-bezier(0.32, 0.72, 0, 1);
  position: relative;
  overflow: hidden;
}

/* Directional fill overlay */
.hero-ent-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}

.hero-ent-btn-primary:hover::before {
  opacity: 1;
}

.hero-ent-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(29, 158, 117, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.hero-ent-btn-primary:active {
  transform: scale(0.98);
}

/* Arrow wrap — button inside button */
.btn-arrow-wrap {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.55s cubic-bezier(0.32, 0.72, 0, 1), background 0.3s;
}

.hero-ent-btn-primary:hover .btn-arrow-wrap {
  transform: translateX(4px);
  background: rgba(0, 0, 0, 0.28);
}

/* Ghost CTA */
.hero-ent-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: rgba(238, 243, 255, 0.04);
  color: rgba(238, 243, 255, 0.7);
  font-weight: 600;
  font-size: 0.93rem;
  border-radius: 10px;
  border: 1px solid rgba(238, 243, 255, 0.13);
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    border-color 0.55s cubic-bezier(0.32, 0.72, 0, 1),
    background 0.55s cubic-bezier(0.32, 0.72, 0, 1),
    transform 0.55s cubic-bezier(0.32, 0.72, 0, 1),
    color 0.3s;
}

.hero-ent-btn-ghost:hover {
  border-color: rgba(238, 243, 255, 0.36);
  background: rgba(238, 243, 255, 0.08);
  transform: translateY(-1px);
  color: #EEF3FF;
}

.hero-ent-btn-ghost:active {
  transform: scale(0.98);
}

/* -- STATS ROW -- */
.hero-ent-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(238, 243, 255, 0.07);
  flex-wrap: wrap;
}

.hero-ent-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-size: 1.60rem;
  font-weight: 800;
  color: #EEF3FF;
  line-height: 1;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.67rem;
  color: whitesmoke;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.hero-ent-stat-divider {
  width: 1px;
  height: 42px;
  background: rgba(238, 243, 255, 0.08);
  flex-shrink: 0;
}

/* -- RIGHT: VISUAL -- */
.hero-ent-visual {
  position: relative;
}

/* Double-bezel outer shell */
.hero-img-bezel {
  padding: 6px;
  border-radius: 28px;
  background: linear-gradient(148deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Inner image wrap — JS adds 3D tilt via style attr */
.hero-ent-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.58);
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.32, 0.72, 0, 1);
}

.hero-ent-img-wrap img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  display: block;
  transition: transform 11s cubic-bezier(0.32, 0.72, 0, 1);
}

.hero-ent-img-wrap:hover img {
  transform: scale(1.045);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 15, 30, 0.06) 0%, transparent 38%, rgba(5, 13, 26, 0.52) 100%);
  pointer-events: none;
}

/* -- FLOATING GLASS CARDS -- */
.hero-ent-card {
  position: absolute;
  background: rgba(246, 250, 255, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  cursor: default;
  transition: transform 0.55s cubic-bezier(0.32, 0.72, 0, 1);
}

/* Spotlight conic border on hover */
.hero-ent-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: conic-gradient(from 0deg, transparent 0%, rgba(29, 158, 117, 0.42) 25%, transparent 55%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.55s cubic-bezier(0.32, 0.72, 0, 1);
}

.hero-ent-card:hover {
  transform: translateY(-4px);
}

.hero-ent-card:hover::before {
  opacity: 1;
}

.card-tl {
  top: -22px;
  left: -28px;
  animation: heroCardFloatA 5.2s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

.card-br {
  bottom: -22px;
  right: -28px;
  animation: heroCardFloatB 5.8s cubic-bezier(0.32, 0.72, 0, 1) 0.4s infinite;
}

@keyframes heroCardFloatA {

  0%,
  100% {
    transform: translateY(0) rotate(-0.4deg);
  }

  50% {
    transform: translateY(-9px) rotate(0.4deg);
  }
}

@keyframes heroCardFloatB {

  0%,
  100% {
    transform: translateY(0) rotate(0.5deg);
  }

  50% {
    transform: translateY(-8px) rotate(-0.5deg);
  }
}

/* Pulse ring */
.card-pulse-ring {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1D9E75;
}

.card-pulse-ring::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(29, 158, 117, 0.55);
  animation: cardRingExpand 2.2s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

@keyframes cardRingExpand {
  0% {
    transform: scale(0.7);
    opacity: 1;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.ent-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(29, 158, 117, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ent-card-icon--navy {
  background: #0C1B32;
}

.ent-card-val {
  font-size: 1.06rem;
  font-weight: 800;
  color: #0F1C32;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.ent-card-lbl {
  font-size: 0.67rem;
  color: #6B7A95;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
  margin-top: 2px;
}

/* -- VERTICAL SIDE LABEL -- */
.hero-side-label {
  position: absolute;
  right: -44px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(238, 243, 255, 0.14);
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
}

/* -- TRUST MARQUEE -- */
.hero-trust-marquee {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid rgba(238, 243, 255, 0.06);
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.marquee-label {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(238, 243, 255, 0.28);
  font-weight: 600;
  flex-shrink: 0;
  white-space: nowrap;
}

.marquee-track-wrap {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: heroMarqueeScroll 32s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track span {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(238, 243, 255, 0.4);
  white-space: nowrap;
  letter-spacing: 0.03em;
  transition: color 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.marquee-track span:not(.marquee-dot):hover {
  color: rgba(238, 243, 255, 0.88);
}

.marquee-dot {
  color: rgba(29, 158, 117, 0.5) !important;
  font-size: 1.1rem !important;
  font-weight: 400 !important;
}

@keyframes heroMarqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* -- RESPONSIVE -- */
@media (max-width: 1100px) {
  .hero-enterprise {
    min-height: auto;
    padding: 72px 0 52px;
  }

  .hero-enterprise-inner {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: 48px;
  }

  .hero-ent-sub {
    max-width: 100%;
  }

  .hero-ent-stats {
    gap: 20px;
  }

  .hero-side-label {
    display: none;
  }

  .hero-ent-img-wrap img {
    height: 460px;
  }
}

/* ── TABLET: stack to single column, content first ── */
@media (max-width: 900px) {
  .hero-enterprise {
    min-height: auto;
    padding: 60px 0 48px;
    align-items: flex-start;
  }

  .hero-enterprise-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Image first on mobile, then text content */
  .hero-ent-content {
    order: 2;
    align-items: center;
    text-align: center;
  }

  .hero-ent-visual {
    order: 1;
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-ent-badge {
    align-self: center;
  }

  .hero-ent-sub {
    max-width: 600px;
    text-align: center;
  }

  .hero-ent-actions,
  .hero-ent-stats {
    justify-content: center;
  }

  .hero-trust-marquee {
    margin-top: 36px;
  }
}

/* ── LARGE MOBILE ── */
@media (max-width: 768px) {
  .hero-enterprise {
    padding: 52px 0 44px;
  }

  .hero-enterprise .container {
    padding: 0 20px;
  }

  .hero-bg-video {
    opacity: 0.55;
  }

  .hero-ent-heading {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.08;
  }

  .hero-ent-badge {
    margin-bottom: 20px;
    font-size: 0.7rem;
  }

  .hero-ent-sub {
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  /* CTA buttons */
  .hero-ent-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 28px;
  }

  .hero-ent-btn-primary,
  .hero-ent-btn-ghost {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 0.95rem;
  }

  /* Stats: 2×2 grid */
  .hero-ent-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding-top: 0;
  }

  .hero-ent-stat-divider {
    display: none;
  }

  .hero-ent-stat {
    align-items: center;
    text-align: center;
    padding: 14px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(238, 243, 255, 0.10);
    border-radius: 14px;
  }

  /* Image */
  .hero-ent-img-wrap img {
    height: clamp(420px, 85vw, 560px);
    object-fit: cover;
    object-position: top center;
  }

  .card-tl,
  .card-br {
    display: none;
  }

  .hero-side-label {
    display: none;
  }

  .hero-trust-marquee {
    margin-top: 28px;
  }

  .marquee-label {
    display: none;
  }
}

/* ── SMALL MOBILE ── */
@media (max-width: 480px) {
  .hero-enterprise {
    padding: 44px 0 36px;
  }

  .hero-enterprise .container {
    padding: 0 16px;
  }

  .hero-bg-video {
    opacity: 0.48;
  }

  .hero-ent-heading {
    font-size: clamp(1.75rem, 10.5vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.022em;
    margin-bottom: 16px;
  }

  .hero-ent-badge {
    font-size: 0.64rem;
    padding: 6px 13px 6px 8px;
    margin-bottom: 16px;
  }

  .hero-ent-sub {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .hero-ent-actions {
    max-width: 100%;
    margin-bottom: 24px;
  }

  .hero-ent-btn-primary,
  .hero-ent-btn-ghost {
    min-height: 48px;
    font-size: 0.88rem;
  }

  .hero-ent-stats {
    max-width: 100%;
    gap: 8px;
  }

  .hero-ent-stat {
    padding: 12px 8px;
    border-radius: 12px;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.66rem;
  }

  /* Keep image visible on small screens — show director image first */
  .hero-ent-visual {
    display: block;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-ent-img-wrap img {
    height: clamp(400px, 90vw, 520px);
    object-fit: cover;
    object-position: top center;
  }

  .marquee-track span {
    font-size: 0.72rem;
  }
}

/* ── EXTRA SMALL ── */
@media (max-width: 380px) {
  .hero-enterprise {
    padding: 36px 0 30px;
  }

  .hero-enterprise .container {
    padding: 0 14px;
  }

  .hero-ent-heading {
    font-size: clamp(1.6rem, 11vw, 2rem);
  }

  .hero-ent-sub {
    font-size: 0.86rem;
  }

  .stat-num {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.62rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-video {
    animation-play-state: paused;
  }
}


/* ===== SECTION ===== */
.premium-btn-section {
  padding: 60px 0;
  background: #f4f6f9;
}

/* ===== GRID ===== */
.premium-btn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ===== CARD ===== */
.premium-btn-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #eef2f6);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;

  /* 3D EFFECT */
  box-shadow:
    8px 8px 18px rgba(0, 0, 0, 0.08),
    -6px -6px 14px rgba(255, 255, 255, 0.9);

  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* ===== HOVER (PRESS EFFECT) ===== */
.premium-btn-card:hover {
  transform: translateY(-6px) scale(1.02);

  box-shadow:
    12px 12px 26px rgba(0, 0, 0, 0.12),
    -8px -8px 18px rgba(255, 255, 255, 0.9);
}

/* ===== ACTIVE CLICK ===== */
.premium-btn-card:active {
  transform: translateY(2px);

  box-shadow:
    inset 4px 4px 10px rgba(0, 0, 0, 0.12),
    inset -4px -4px 10px rgba(255, 255, 255, 0.9);
}

/* ===== ICON ===== */
.premium-btn-card .icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff);
  color: #fff;
  font-size: 22px;

  box-shadow:
    0 6px 14px rgba(29, 158, 117, 0.35);
}

/* ===== TITLE ===== */
.premium-btn-card h3 {
  font-size: 0.9rem;
  font-weight: 800;
  color: #1B2E4B;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

/* ===== DESC ===== */
.premium-btn-card p {
  font-size: 0.8rem;
  color: #5A6678;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .premium-btn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .premium-btn-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   NEW SECTIONS — Definite Managements India
   Matches existing design system (navy + teal theme)
   ============================================================ */

/* ===================== CLIENTS LOGO STRIP ===================== */
.clients-section {
  padding: 56px 0 48px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.clients-header {
  text-align: center;
  margin-bottom: 32px;
}

.clients-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.clients-logos-track {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}

.clients-logos-inner {
  display: flex;
  gap: 16px;
  animation: logoScroll 28s linear infinite;
  width: max-content;
}

.clients-logos-inner:hover {
  animation-play-state: paused;
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.client-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 28px;
  min-width: 160px;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: default;
}

.client-logo-item:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.cl-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.cl-sector {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ===================== COMPLIANCE RISK CALCULATOR ===================== */
.calculator-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.calc-questions {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.calc-q-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.calc-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.calc-opt {
  padding: 9px 18px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s var(--ease-out);
}

.calc-opt:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: var(--teal-faint);
}

.calc-opt.selected {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.calc-result {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 36px;
}

.calc-score-wrap {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.calc-score-ring {
  position: relative;
  flex-shrink: 0;
}

.calc-score-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.04em;
}

.calc-score-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.calc-score-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ===================== COMPARISON TABLE ===================== */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.9rem;
}

.compare-feature-col {
  width: 34%;
}

.compare-inhouse-col {
  width: 33%;
}

.compare-definite-col {
  width: 33%;
}

.compare-table thead th {
  padding: 18px 20px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
}

.compare-table thead th:first-child {
  background: var(--bg);
  color: var(--text-muted);
  border-radius: var(--radius-sm) 0 0 0;
}

.compare-table thead th:nth-child(2) {
  background: #FEF2F2;
  color: #7F1D1D;
}

.compare-table thead th:last-child {
  background: var(--navy);
  color: #fff;
  border-radius: 0 var(--radius-sm) 0 0;
}

.compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.compare-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.compare-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.88rem;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover td {
  background: var(--teal-faint);
}

.ct-bad {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: #991B1B;
}

.ct-bad::before {
  content: '✗';
  font-weight: 700;
  color: #EF4444;
  font-size: 0.88rem;
}

.ct-good {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--navy);
  font-weight: 500;
}

.ct-good::before {
  content: '✓';
  font-weight: 800;
  color: var(--teal);
  font-size: 0.88rem;
}

/* ===================== AWARDS ===================== */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.award-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
  border-top: 3px solid var(--teal);
}

.award-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.award-icon {
  width: 60px;
  height: 60px;
  background: var(--teal-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.award-year {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 10px;
}

.award-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.35;
}

.award-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===================== ONBOARDING STEPS ===================== */
.onboard-steps {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.ob-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  min-width: 200px;
  max-width: 220px;
  flex-shrink: 0;
  transition: box-shadow 0.3s, transform 0.3s var(--ease-spring);
}

.ob-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.ob-step-num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  display: inline-block;
}

.ob-step-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.ob-step h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.ob-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  font-weight: 700;
}

.ob-connector {
  width: 40px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal) 0, var(--teal) 5px, transparent 5px, transparent 12px);
  flex-shrink: 0;
  margin: 0 4px;
  margin-top: -40px;
}

/* ===================== EXPLAINER SECTION ===================== */
.explainer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.explainer-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.explainer-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.explainer-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 46, 75, 0.42);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.explainer-play-overlay:hover {
  background: rgba(27, 46, 75, 0.55);
}

.play-btn-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.85);
  background: rgba(29, 158, 117, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-spring);
}

.explainer-play-overlay:hover .play-btn-ring {
  transform: scale(1.1);
}

.explainer-play-overlay>p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0;
}

.cost-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.cost-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.cost-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.cost-icon.danger {
  background: #FEF2F2;
}

.cost-icon.success {
  background: var(--teal-light);
}

.cost-item strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 3px;
}

.cost-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  font-weight: 700;
}

/* ===================== IMPACT SECTION ===================== */
.impact-section {
  background: var(--navy);
  padding: 96px 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.impact-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}

.impact-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.impact-item:hover img {
  transform: scale(1.06);
}

.impact-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 30, 50, 0.92) 0%, rgba(17, 30, 50, 0.3) 50%, transparent 100%);
}

.impact-item-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}

.impact-big {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 5px;
}

.impact-lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

/* ===================== PRICING ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card-featured {
  border-color: var(--teal);
  border-width: 2px;
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.pricing-card-featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.pricing-ideal {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 12px;
}

.pricing-employees {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-light);
  padding: 6px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-features li {
  font-size: 0.84rem;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
  font-size: 0.84rem;
}

.pricing-features li:first-child {
  font-weight: 600;
  color: var(--navy);
}

.pricing-features li:first-child::before {
  content: none;
  padding-left: 0;
}

.pricing-features li:first-child {
  padding-left: 0;
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 11px 20px;
  background: transparent;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
  border: 1.5px solid var(--navy);
  border-radius: 100px;
  transition: all 0.2s var(--ease-out);
}

.pricing-cta:hover {
  background: var(--navy);
  color: #fff;
}

.pricing-cta.featured {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.pricing-cta.featured:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 24px;
}

/* ===================== TEAM BANNER SECTION ===================== */
.team-banner-section {
  background: var(--navy);
  padding: 96px 0;
}

.team-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.team-banner-content .section-eyebrow {
  background: rgba(29, 158, 117, 0.18);
}

.team-banner-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 14px 0 18px;
}

.team-banner-content>p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin: 0;
  font-weight: 700;
}

.team-banner-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.tb-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.tb-stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  font-weight: 700;
}

.team-banner-img {
  position: relative;
}

.team-banner-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-xl);
}

.team-banner-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.tbo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}

/* ===================== NEWSLETTER ===================== */
.newsletter-section {
  background: var(--bg);
  padding: 72px 0;
}

.newsletter-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--teal);
}

.newsletter-icon {
  width: 72px;
  height: 72px;
  background: var(--teal-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-text {
  flex: 1;
  min-width: 220px;
}

.newsletter-text h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.newsletter-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  font-weight: 700;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.newsletter-form input {
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 11px 20px;
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  outline: none;
  min-width: 240px;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-weight: 600;
}

.newsletter-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.10);
}

.newsletter-form button {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 11px 24px;
  font-size: 0.9rem;
  font-family: var(--font);
  font-weight: 700;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease-spring);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.nl-thanks {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
  padding: 12px 20px;
  background: var(--teal-light);
  border-radius: 100px;
  white-space: nowrap;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-item {
    aspect-ratio: 4/3;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-card-featured {
    transform: none;
  }

  .team-banner-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-banner-img img {
    height: 320px;
  }

  .explainer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .explainer-visual img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }

  .onboard-steps {
    flex-direction: column;
    gap: 12px;
  }

  .ob-step {
    max-width: 100%;
    min-width: auto;
  }

  .ob-connector {
    width: 2px;
    height: 32px;
    margin: 0;
    background: repeating-linear-gradient(180deg, var(--teal) 0, var(--teal) 5px, transparent 5px, transparent 12px);
    margin-top: 0;
  }

  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .impact-item {
    aspect-ratio: 3/4;
  }

  .newsletter-card {
    flex-direction: column;
    padding: 28px 24px;
    gap: 24px;
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-form input {
    min-width: auto;
    flex: 1;
  }

  .team-banner-img img {
    height: 260px;
  }

  .team-banner-overlay {
    left: 12px;
    bottom: 12px;
  }

  .clients-logos-inner {
    gap: 12px;
  }

  .client-logo-item {
    min-width: 130px;
    padding: 12px 18px;
  }

  .compare-table {
    font-size: 0.8rem;
  }

  .compare-table td,
  .compare-table th {
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .team-banner-stats {
    gap: 20px;
  }

  .calc-options {
    flex-direction: column;
  }

  .calc-opt {
    text-align: left;
    border-radius: var(--radius);
  }
}

/* ============================================================
   about-sections.css
   New sections for About page — Definite Managements India
   Add <link rel="stylesheet" href="about-sections.css"> in
   the <head> of about.html (after style.css).
   ============================================================ */

/* ---------- Shared section spacing ---------- */
.ab-section {
  padding: 96px 0;
}

/* ============================================================
   SECTION 1 — IMPACT STATS
   ============================================================ */
.ab-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.ab-impact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring), border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.ab-impact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
}

.ab-impact-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(29, 158, 117, 0.2);
}

.ab-impact-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.ab-impact-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.ab-impact-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.ab-impact-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 700;
}

/* ============================================================
   SECTION 2 — WHY WE'RE DIFFERENT
   ============================================================ */
.ab-diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ab-diff-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.ab-diff-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--teal);
}

.ab-diff-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.ab-diff-point strong {
  color: var(--navy);
}

/* ============================================================
   SECTION 3 — CERTIFICATIONS
   ============================================================ */
.ab-certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ab-cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.ab-cert-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.ab-cert-badge {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ab-cert-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.ab-cert-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  font-weight: 700;
}

/* ============================================================
   SECTION 4 — ONBOARDING STEPS
   ============================================================ */
.ab-onboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.ab-onboard-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.ab-onboard-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.ab-onboard-step img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.ab-onboard-step:hover img {
  transform: scale(1.04);
}

.ab-onboard-num {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  background: var(--teal);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.ab-onboard-body {
  padding: 18px 18px 20px;
}

.ab-onboard-body h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}

.ab-onboard-body p {
  font-size: 0.81rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  font-weight: 700;
}

/* ============================================================
   SECTION 5 — COMPLIANCE COVERAGE
   ============================================================ */
.ab-statute-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ab-statute-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-spring);
}

.ab-statute-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(29, 158, 117, 0.4);
  transform: translateY(-3px);
}

.ab-statute-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.ab-statute-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.ab-statute-card p {
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
  margin: 0;
  font-weight: 700;
}

/* ============================================================
   SECTION 6 — INDUSTRY ROW
   ============================================================ */
.ab-industry-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.ab-industry-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  cursor: default;
}

.ab-industry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.ab-industry-item:hover img {
  transform: scale(1.06);
}

.ab-industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 30, 50, 0.85) 0%, rgba(17, 30, 50, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  transition: background 0.3s;
}

.ab-industry-overlay h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.ab-industry-overlay p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-weight: 700;
}

/* ============================================================
   SECTION 7 — TECHNOLOGY
   ============================================================ */
.ab-tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ab-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.ab-tech-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--teal-faint);
  border: 1.5px solid rgba(29, 158, 117, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  transition: all 0.2s var(--ease-out);
}

.ab-tech-tag:hover {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal-dark);
  transform: translateY(-1px);
}

/* ============================================================
   SECTION 8 — CASE STUDIES
   ============================================================ */
.ab-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.ab-case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.ab-case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.ab-case-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--navy);
  gap: 10px;
}

.ab-case-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ab-case-result {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
  background: rgba(29, 158, 117, 0.15);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.ab-case-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.ab-case-card:hover img {
  transform: scale(1.03);
}

.ab-case-body {
  padding: 20px;
}

.ab-case-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.ab-case-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 700;
}

.ab-case-kpis {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;

}

.ab-case-kpi {
  flex: 1;
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid var(--border);
  font-weight: 600;
}

.ab-case-kpi:last-child {
  border-right: none;
}

.ab-case-kpi strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}

.ab-case-kpi span {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ============================================================
   SECTION 9 — DATA SECURITY
   ============================================================ */
.ab-security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ab-security-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}

.ab-security-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ab-security-item:hover {
  border-color: rgba(29, 158, 117, 0.3);
  box-shadow: var(--shadow-sm);
}

.ab-sec-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ab-security-item h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.ab-security-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  font-weight: 700;
}

/* ============================================================
   SECTION 10 — AWARDS
   ============================================================ */
.ab-awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ab-award-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
  position: relative;
}

.ab-award-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.ab-award-year {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--teal);
  background: var(--teal-light);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.ab-award-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.ab-award-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.ab-award-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  font-weight: 700;
}

/* ============================================================
   SECTION 11 — PRESS
   ============================================================ */
.ab-press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ab-press-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-top: 3px solid var(--teal);
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.ab-press-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.ab-press-source {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.ab-press-quote {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 3px solid var(--teal-light);
  font-weight: 700;
}

.ab-press-date {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ============================================================
   SECTION 12 — CULTURE
   ============================================================ */
.ab-culture-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

.ab-culture-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.ab-culture-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.ab-culture-main-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(17, 30, 50, 0.92) 0%, transparent 100%);
  padding: 32px 28px 28px;
}

.ab-culture-main-text h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.ab-culture-main-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.65;
  font-weight: 700;
}

.ab-culture-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ab-culture-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.ab-culture-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.ab-culture-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.ab-culture-item-text {
  padding: 14px 16px;
}

.ab-culture-item-text h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.ab-culture-item-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  font-weight: 700;
}

.ab-culture-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.ab-cv {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s var(--ease-spring);
}

.ab-cv:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.ab-cv-icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.ab-cv strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.ab-cv p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  font-weight: 700;
}

/* ============================================================
   RESPONSIVE — TABLET & MOBILE
   ============================================================ */

@media (max-width: 1024px) {
  .ab-impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-diff-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ab-certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-onboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-statute-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-industry-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-tech-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ab-cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ab-security-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ab-awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-press-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ab-culture-grid {
    grid-template-columns: 1fr;
  }

  .ab-culture-main img {
    height: 320px;
  }

  .ab-culture-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ab-section {
    padding: 64px 0;
  }

  .ab-impact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ab-certs-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ab-onboard-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ab-statute-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ab-industry-row {
    grid-template-columns: 1fr;
  }

  .ab-industry-item {
    height: 200px;
  }

  .ab-awards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ab-culture-values {
    grid-template-columns: 1fr 1fr;
  }

  .ab-impact-num {
    font-size: 2rem;
  }

  .ab-culture-main img {
    height: 260px;
  }

  .ab-culture-side {
    gap: 12px;
  }
}


/* ============================================================
   industries-new-sections.css
   New sections for Industries page — Definite Managements India
   Add <link rel="stylesheet" href="industries-new-sections.css">
   in the <head> of industries.html (after style.css).
   ============================================================ */

/* =====================================================
   SHARED — IND-ALT (Alternate background for new sections)
   ===================================================== */
.ind-alt:nth-child(odd) {
  background: var(--bg);
}

.ind-alt:nth-child(even) {
  background: var(--white);
}

/* =====================================================
   IMAGE BADGE — Floating label on industry images
   ===================================================== */
.ind-img {
  position: relative;
}

.ind-img-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
}

.ind-img-badge span {
  display: inline-flex;
  align-items: center;
  background: rgba(27, 46, 75, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* =====================================================
   COMPLIANCE MATRIX SECTION
   ===================================================== */
.ind-compare-section {
  padding: 96px 0;
  background: var(--white);
}

.ind-matrix-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: 40px;
  border: 1px solid var(--border);
}

.ind-matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 700px;
  background: var(--white);
}

.ind-matrix-table thead tr th {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 14px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ind-matrix-table thead tr th:first-child {
  text-align: left;
  width: 180px;
  border-radius: var(--radius-sm) 0 0 0;
}

.ind-matrix-table thead tr th:last-child {
  border-right: none;
  border-radius: 0 var(--radius-sm) 0 0;
}

.ind-matrix-table tbody td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border-light);
  text-align: center;
  vertical-align: middle;
}

.ind-matrix-table tbody td:last-child {
  border-right: none;
}

.ind-matrix-table tbody tr:last-child td {
  border-bottom: none;
}

.ind-matrix-table tbody tr:hover td {
  background: var(--teal-faint);
}

.ind-name {
  text-align: left !important;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.875rem;
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.ind-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

.ind-dot-mfg {
  background: #3B82F6;
}

.ind-dot-it {
  background: #8B5CF6;
}

.ind-dot-const {
  background: #F59E0B;
}

.ind-dot-health {
  background: #10B981;
}

.ind-dot-retail {
  background: #EF4444;
}

.ind-dot-log {
  background: #F97316;
}

.ind-dot-bfsi {
  background: #1D9E75;
}

.ind-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--teal-light);
  color: var(--teal);
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: 50%;
}

.ind-dash {
  color: var(--border);
  font-size: 1.1rem;
  font-weight: 700;
}

.ind-matrix-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 14px;
  text-align: center;
  font-style: italic;
}

/* =====================================================
   INDUSTRY TESTIMONIALS SECTION
   ===================================================== */
.ind-testi-section {
  padding: 96px 0;
  background: var(--navy);
}

.ind-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.ind-testi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-spring);
}

.ind-testi-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(29, 158, 117, 0.3);
  transform: translateY(-3px);
}

.ind-testi-sector {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(29, 158, 117, 0.15);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* =====================================================
   INDUSTRY STATS BAR
   ===================================================== */
.ind-stats-section {
  padding: 72px 0;
  background: var(--teal);
}

.ind-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.ind-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.ind-stat-item:last-child {
  border-right: none;
}

.ind-stat-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.ind-stat-icon svg path,
.ind-stat-icon svg circle,
.ind-stat-icon svg rect {
  stroke: #fff;
}

.ind-stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.ind-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  line-height: 1.4;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .ind-testi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ind-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 16px;
  }

  .ind-stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .ind-stat-item:last-child,
  .ind-stat-item:nth-last-child(2) {
    border-bottom: none;
  }

  .ind-compare-section {
    padding: 64px 0;
  }
}

@media (max-width: 768px) {
  .ind-alt {
    padding: 64px 0;
  }

  .ind-testi-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ind-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ind-stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .ind-matrix-table {
    font-size: 0.8rem;
  }

  .ind-matrix-table thead tr th,
  .ind-matrix-table tbody td {
    padding: 11px 10px;
  }

  .ind-name {
    font-size: 0.8rem;
  }

  .ind-img-badge {
    top: 12px;
    right: 12px;
  }

  .ind-compare-section {
    padding: 56px 0;
  }

  .ind-testi-section {
    padding: 64px 0;
  }

  .ind-stats-section {
    padding: 56px 0;
  }
}

@media (max-width: 480px) {
  .ind-stats-grid {
    grid-template-columns: 1fr;
  }

  .ind-stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .ind-stat-item:last-child {
    border-bottom: none;
  }

  .ind-stat-num {
    font-size: 1.8rem;
  }
}

/* ============================================================
   resources-new-sections.css
   New sections for Resources page — Definite Managements India
   Link this AFTER style.css in resources.html:
   <link rel="stylesheet" href="resources-new-sections.css">
   ============================================================ */

/* ---- Shared section spacing ---- */
.res-section {
  padding: 96px 0;
}

/* ============================================================
   SECTION 1 — GLOSSARY
   ============================================================ */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.glossary-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring), border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.glossary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  opacity: 0;
  transition: opacity 0.3s;
}

.glossary-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(29, 158, 117, 0.25);
}

.glossary-card:hover::before {
  opacity: 1;
}

.glossary-abbr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.glossary-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.glossary-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   SECTION 2 — VIDEOS
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.video-thumb-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.video-thumb-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.video-thumb-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
  cursor: pointer;
}

.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.video-thumb-card:hover .video-thumb-wrap img {
  transform: scale(1.05);
}

.video-thumb-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 30, 50, 0.65) 0%, rgba(17, 30, 50, 0.2) 50%, transparent 100%);
  pointer-events: none;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(29, 158, 117, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(29, 158, 117, 0.45);
  transition: transform 0.3s var(--ease-spring), background 0.2s;
  z-index: 2;
  padding-left: 3px;
}

.video-thumb-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--teal);
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.video-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--teal);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}

.video-meta {
  padding: 20px 22px 22px;
}

.video-meta h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.video-meta p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.video-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.video-date {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.video-watch-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  transition: color 0.2s, letter-spacing 0.2s;
}

.video-watch-link:hover {
  color: var(--teal-dark);
  letter-spacing: 0.01em;
}

/* ============================================================
   SECTION 3 — DOWNLOADS
   ============================================================ */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.download-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px 22px;
  position: relative;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring), border-color 0.3s;
}

.download-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(29, 158, 117, 0.25);
}

.download-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.download-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: var(--radius-sm);
}

.download-badge.excel {
  background: #E8F5E9;
  color: #2E7D32;
}

.download-badge.pdf {
  background: #FEECE2;
  color: #C2410C;
}

.download-badge.calc {
  background: #E8F4FC;
  color: #1565C0;
}

.download-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
  padding-right: 40px;
}

.download-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.download-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.download-meta span {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  transition: color 0.2s;
}

.download-btn:hover {
  color: var(--teal-dark);
}

/* ============================================================
   SECTION 4 — INDUSTRY TIPS
   ============================================================ */
.industry-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.ind-tip-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.ind-tip-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.ind-tip-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.ind-tip-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.ind-tip-card:hover .ind-tip-img-wrap img {
  transform: scale(1.05);
}

.ind-tip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 30, 50, 0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.ind-tip-badge {
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.ind-tip-body {
  padding: 22px;
}

.ind-tip-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.35;
}

.ind-tip-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.ind-tip-list li {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.ind-tip-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.2;
}

/* ============================================================
   SECTION 5 — REGULATORY UPDATES FEED
   ============================================================ */
.updates-feed {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto 36px;
}

.update-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.update-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(29, 158, 117, 0.2);
}

.update-item.urgent {
  border-left: 3px solid #EF4444;
  background: #FFFBFB;
}

.update-date-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  min-width: 52px;
  text-align: center;
}

.update-month {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 3px 8px;
  border-radius: 100px;
  margin-bottom: 4px;
}

.update-year {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
}

.update-body {
  flex: 1;
}

.update-badge {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.urgent-badge {
  background: #FEE2E2;
  color: #991B1B;
}

.info-badge {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.warning-badge {
  background: #FEF3C7;
  color: #92400E;
}

.update-body h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.update-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 10px;
}

.update-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.update-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ============================================================
   SECTION 6 — CASE STUDY DEEP DIVES
   ============================================================ */
.case-deep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.case-deep-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.case-deep-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.featured-case {
  grid-row: span 1;
}

.case-deep-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.case-deep-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.case-deep-card:hover .case-deep-img img {
  transform: scale(1.04);
}

.case-deep-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 30, 50, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.case-deep-result {
  background: var(--teal);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}

.case-deep-content {
  padding: 28px;
}

.case-deep-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 10px;
}

.case-deep-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}

.case-deep-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.case-kpi-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.case-kpi {
  flex: 1;
  text-align: center;
  padding: 12px 6px;
  border-right: 1px solid var(--border);
  background: var(--bg);
}

.case-kpi:last-child {
  border-right: none;
}

.case-kpi strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}

.case-kpi span {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.case-deep-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  transition: box-shadow 0.3s, transform 0.3s var(--ease-spring);
}

.case-mini-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.case-mini-card img {
  width: 120px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out);
}

.case-mini-card:hover img {
  transform: scale(1.05);
}

.case-mini-body {
  padding: 16px 18px;
}

.case-mini-body h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0 8px;
  line-height: 1.35;
}

.case-mini-body p {
  font-size: 0.79rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.case-mini-kpis {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  font-size: 0.7rem;
  color: var(--teal-dark);
  font-weight: 600;
}

.case-mini-kpis span {
  color: var(--text-light);
}

/* ============================================================
   SECTION 7 — MYTHS
   ============================================================ */
.myths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.myth-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.myth-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.myth-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.myth-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--bg-alt);
  letter-spacing: -0.06em;
  line-height: 1;
}

.myth-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.myth-wrong {
  background: #FEE2E2;
}

.myth-label {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #EF4444;
  background: #FEE2E2;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  display: inline-block;
}

.myth-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.4;
  font-style: italic;
}

.myth-fact-label {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
  display: inline-block;
}

.myth-fact {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  padding-left: 12px;
  border-left: 2px solid var(--teal);
}

/* ============================================================
   SECTION 8 — PENALTY TABLE
   ============================================================ */
.penalty-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), var(--shadow-lg);
  margin-bottom: 36px;
}

.penalty-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: var(--white);
}

.penalty-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.penalty-table thead th:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}

.penalty-table thead th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}

.penalty-table tbody td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text);
}

.penalty-table tbody td:first-child {
  color: var(--navy);
}

.penalty-table tbody tr:last-child td {
  border-bottom: none;
}

.penalty-table tbody tr:nth-child(even) td {
  background: var(--bg);
}

.penalty-table tbody tr:hover td {
  background: var(--teal-faint);
}

.penalty-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.penalty-badge.high {
  background: #FEF3C7;
  color: #92400E;
}

.penalty-badge.critical {
  background: #FEE2E2;
  color: #991B1B;
}

.penalty-badge.medium {
  background: #EFF6FF;
  color: #1D4ED8;
}

.penalty-cta {
  text-align: center;
}

.penalty-cta p {
  color: rgba(255, 255, 255, 0.70);
  font-size: 1rem;
  margin-bottom: 20px;
}

/* ============================================================
   SECTION 9 — PAYROLL CYCLE INFOGRAPHIC
   ============================================================ */
.payroll-cycle-visual {
  max-width: 1100px;
  margin: 8px auto 0;
  overflow-x: auto;
  padding-bottom: 8px;
}

.cycle-step-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: 900px;
}

.cycle-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  flex: 1;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring), border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.cycle-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  opacity: 0;
  transition: opacity 0.3s;
}

.cycle-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(29, 158, 117, 0.25);
}

.cycle-step:hover::before {
  opacity: 1;
}

.cycle-step-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: background 0.3s;
}

.cycle-step:hover .cycle-step-icon {
  background: rgba(29, 158, 117, 0.18);
}

.cycle-step-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  display: inline-block;
}

.cycle-step h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  line-height: 1.3;
}

.cycle-step p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.cycle-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--teal);
  font-weight: 300;
  padding: 0 6px;
  flex-shrink: 0;
  opacity: 0.6;
  margin-top: -4px;
}

/* ============================================================
   SECTION 10 — EXPERT TIPS
   ============================================================ */
.expert-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.expert-tip-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.expert-tip-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.expert-tip-img {
  height: 180px;
  overflow: hidden;
}

.expert-tip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
  transition: transform 0.5s var(--ease-out);
}

.expert-tip-card:hover .expert-tip-img img {
  transform: scale(1.05);
}

.expert-tip-body {
  padding: 22px;
}

.expert-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  display: inline-block;
}

.expert-tip-body h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.45;
}

.expert-tip-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.expert-author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.expert-avatar {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.expert-author strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1px;
}

.expert-author span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ============================================================
   SECTION 11 — TOOLS COMPARISON
   ============================================================ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring), border-color 0.3s;
}

.tool-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(29, 158, 117, 0.25);
}

.tool-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.tool-logo-placeholder {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.tool-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}

.tool-stars {
  font-size: 0.65rem;
  color: #F59E0B;
  letter-spacing: 1px;
}

.tool-rating span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}

.tool-tags span {
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 100px;
}

.tool-pros {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.tool-pro-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.5;
}

.pro-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.tool-consideration {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  border-left: 2px solid #F59E0B;
  line-height: 1.5;
}

.tool-consideration strong {
  color: #92400E;
}

.tools-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--teal-light);
  border: 1px solid rgba(29, 158, 117, 0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-top: 24px;
  flex-shrink: 0;
}

.tools-note p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   SECTION 12 — KNOWLEDGE HUB
   ============================================================ */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.hub-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.hub-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(29, 158, 117, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.hub-card-img {
  height: 140px;
  overflow: hidden;
}

.hub-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7) saturate(0.9);
  transition: transform 0.5s var(--ease-out), filter 0.3s;
}

.hub-card:hover .hub-card-img img {
  transform: scale(1.06);
  filter: brightness(0.85) saturate(1);
}

.hub-card-body {
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hub-cat-icon {
  width: 36px;
  height: 36px;
  background: rgba(29, 158, 117, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hub-card-body h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  line-height: 1.3;
}

.hub-count {
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 600;
  display: block;
}

.hub-newsletter {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hub-nl-icon {
  width: 60px;
  height: 60px;
  background: rgba(29, 158, 117, 0.18);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hub-nl-text {
  flex: 1;
  min-width: 200px;
}

.hub-nl-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.hub-nl-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.60);
  margin: 0;
  line-height: 1.65;
}

.hub-nl-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.hub-nl-form input {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  min-width: 220px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hub-nl-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.hub-nl-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.20);
}

.hub-nl-form button {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-family: var(--font);
  font-weight: 700;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease-spring);
  white-space: nowrap;
}

.hub-nl-form button:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.hub-nl-thanks {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
  padding: 10px 18px;
  background: rgba(29, 158, 117, 0.15);
  border-radius: 100px;
  white-space: nowrap;
  border: 1px solid rgba(29, 158, 117, 0.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .glossary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .downloads-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-tips-grid {
    grid-template-columns: 1fr;
  }

  .myths-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-deep-grid {
    grid-template-columns: 1fr;
  }

  .expert-tips-grid {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .res-section {
    padding: 64px 0;
  }

  .glossary-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .video-grid {
    gap: 16px;
  }

  .video-thumb-wrap {
    height: 180px;
  }

  .downloads-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .myths-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .update-item {
    flex-direction: column;
    gap: 12px;
  }

  .update-date-col {
    flex-direction: row;
    gap: 8px;
    align-items: center;
  }

  .case-mini-card img {
    width: 90px;
  }

  .cycle-step-row {
    flex-direction: column;
    min-width: auto;
    gap: 8px;
  }

  .cycle-arrow {
    transform: rotate(90deg);
    margin: 0;
    align-self: center;
  }

  .cycle-step {
    min-width: auto;
    text-align: left;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .cycle-step-icon {
    flex-shrink: 0;
    margin: 0;
  }

  .cycle-step-label {
    margin-bottom: 4px;
    display: block;
  }

  .expert-tips-grid {
    gap: 16px;
  }

  .tools-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hub-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hub-newsletter {
    flex-direction: column;
    padding: 24px 20px;
    gap: 18px;
  }

  .hub-nl-form {
    width: 100%;
  }

  .hub-nl-form input {
    min-width: auto;
    flex: 1;
  }

  .penalty-table {
    font-size: 0.78rem;
  }

  .penalty-table td,
  .penalty-table th {
    padding: 10px 12px;
  }

  .case-deep-img {
    height: 200px;
  }
}

@media (max-width: 480px) {

  .ind-tip-card,
  .video-thumb-card {
    border-radius: var(--radius-lg);
  }

  .case-deep-side {
    gap: 14px;
  }

  .case-mini-card {
    flex-direction: column;
  }

  .case-mini-card img {
    width: 100%;
    height: 140px;
  }

  .tools-grid {
    gap: 12px;
  }
}

/* ============================================================
   FLOATING ACTION BUTTONS — Enterprise Polish
   ============================================================ */
.float-btn {
  position: fixed;
  bottom: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  z-index: 9999;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22), 0 2px 6px rgba(0, 0, 0, 0.14);
  transition: transform 0.55s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.55s cubic-bezier(0.32, 0.72, 0, 1);
  text-decoration: none;
}

.float-btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.32, 0.72, 0, 1);
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.float-btn:hover::before {
  opacity: 1;
}

/* WhatsApp — left */
.float-btn.whatsapp {
  left: 22px;
  background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
}

.float-btn.whatsapp::before {
  background: conic-gradient(from 0deg, rgba(37, 211, 102, 0.5), rgba(37, 211, 102, 0), rgba(37, 211, 102, 0.5));
  animation: floatBtnSpin 4s linear infinite;
}

/* Call — right */
.float-btn.call {
  right: 22px;
  background: linear-gradient(135deg, #1B2E4B 0%, #0D1E35 100%);
}

.float-btn.call::before {
  background: conic-gradient(from 0deg, rgba(29, 158, 117, 0.5), rgba(29, 158, 117, 0), rgba(29, 158, 117, 0.5));
  animation: floatBtnSpin 4s linear 2s infinite;
}

@keyframes floatBtnSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
    bottom: 20px;
  }

  .float-btn.whatsapp {
    left: 14px;
  }

  .float-btn.call {
    right: 14px;
  }
}

/* ============================================================
   SERVICE PILLARS — Below Hero
   ============================================================ */
.service-pillars-section {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 3;
  margin-top: -2px;
}

.sp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sp-card {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: background 0.45s cubic-bezier(0.32, 0.72, 0, 1);
  cursor: default;
}

.sp-card:last-child {
  border-right: none;
}

.sp-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1D9E75, #4fd1c5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

.sp-card:hover {
  background: #F9FCFB;
}

.sp-card:hover::before {
  transform: scaleX(1);
}

.sp-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

.sp-card:hover .sp-icon-wrap {
  background: #d1f0e5;
}

.sp-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.sp-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.sp-tag {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--teal-light);
  border-radius: 4px;
  width: fit-content;
}

@media (max-width: 900px) {
  .sp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-card:nth-child(2) {
    border-right: none;
  }

  .sp-card:nth-child(1),
  .sp-card:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 480px) {
  .sp-grid {
    grid-template-columns: 1fr;
  }

  .sp-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .sp-card:last-child {
    border-bottom: none;
  }
}

/* ============================================================
   ZERO PENALTY PROMISE
   ============================================================ */
.zero-penalty-section {
  background: linear-gradient(135deg, #060F1E 0%, #0C1B32 50%, #091525 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.zero-penalty-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 158, 117, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 158, 117, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.zp-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.zp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29, 158, 117, 0.1);
  border: 1px solid rgba(29, 158, 117, 0.24);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(74, 222, 128, 0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 20px;
}

.zp-center {
  text-align: center;
}

.zp-number {
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  background: linear-gradient(120deg, #1D9E75 0%, #4fd1c5 50%, #22C590 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.04em;
}

.zp-label {
  font-size: 1rem;
  font-weight: 700;
  color: #EEF3FF;
  margin-top: 8px;
  letter-spacing: -0.01em;
}

.zp-sub {
  font-size: 0.84rem;
  color: rgba(238, 243, 255, 0.5);
  line-height: 1.72;
  max-width: 380px;
  margin: 12px auto 0;
  font-weight: 700;
}

.zp-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.zp-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 18px;
  border-left: 2px solid rgba(29, 158, 117, 0.3);
}

.zps-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #EEF3FF;
  letter-spacing: -0.02em;
  line-height: 1;
}

.zps-lbl {
  font-size: 0.7rem;
  color: rgba(238, 243, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

@media (max-width: 900px) {
  .zp-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .zp-badge {
    align-self: center;
    margin: 0 auto 16px;
  }

  .zp-stats {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .zp-stat {
    border-left: none;
    border-top: 2px solid rgba(29, 158, 117, 0.3);
    padding-left: 0;
    padding-top: 14px;
    align-items: center;
    min-width: 110px;
  }
}

/* ============================================================
   COMPLIANCE COVERAGE BARS
   ============================================================ */
.cc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 56px;
  margin-top: 48px;
}

.cc-bar-group {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cc-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cc-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.cc-act {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.cc-pct {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--teal);
}

.cc-track {
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.cc-fill {
  height: 100%;
  background: linear-gradient(90deg, #1D9E75 0%, #4fd1c5 100%);
  border-radius: 100px;
  width: 0%;
  transition: width 1.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.cc-fill--teal {
  background: linear-gradient(90deg, #1D9E75 0%, #169962 100%);
}

.cc-detail {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 2px;
  font-weight: 700;
}

.cc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.cc-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .cc-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cc-footer {
    justify-content: center;
    text-align: center;
  }
}

/* OVERLAY */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 30, 50, 0.75);
  /* navy overlay */
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* CONTAINER */
.popup-container {
  background: var(--white);
  width: 95%;
  max-width: 950px;
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: popupFade 0.35s var(--ease-out);
}

/* ANIMATION */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* CLOSE BUTTON */
.popup-close {
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 22px;
  color: var(--text-muted);
  cursor: pointer;
}

.popup-close:hover {
  color: var(--navy);
}

/* TITLE */
.popup-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.popup-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 26px;
}

/* SEARCH POPUP */
/* SEARCH POPUP */
.search-popup-card {
  width: min(92vw, 800px);
  max-height: 88vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 48px;
  border-radius: var(--radius-xl);
}

.search-popup-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  text-align: center;
}

.search-popup-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 50ch;
  margin-inline: auto;
}

.search-popup-form {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  padding: 8px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.search-popup-form:focus-within {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 1px var(--navy);
}

.search-popup-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-family: var(--font);
  color: var(--navy);
  font-weight: 500;
}

.search-popup-input:focus {
  outline: none;
}

.search-popup-input::placeholder {
  color: var(--text-light);
}

.search-popup-submit {
  background: var(--teal);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}

.search-popup-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.search-popup-results {
  margin-top: 32px;
  overflow-y: auto;
  flex: 1;
  padding-right: 8px;
}

/* Custom Scrollbar for results */
.search-popup-results::-webkit-scrollbar {
  width: 6px;
}

.search-popup-results::-webkit-scrollbar-track {
  background: var(--bg);
}

.search-popup-results::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}

.search-results-meta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.search-result-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.25s var(--ease-out);
}

.search-result-item:hover {
  border-color: var(--teal);
  background: var(--teal-faint);
  transform: translateX(4px);
}

.search-result-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.search-result-url {
  font-size: 0.8rem;
  color: var(--text-light);
}

.search-empty {
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
  background: #fafcfd;
}

@media (max-width: 768px) {
  .search-popup-card {
    padding: 32px 20px;
  }

  .search-popup-form {
    flex-direction: column;
    border-radius: 16px;
    padding: 12px;
    background: var(--bg);
  }

  .search-popup-input {
    width: 100%;
    text-align: center;
    padding: 8px;
  }

  .search-popup-submit {
    width: 100%;
  }
}

/* GRID */
.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* INPUT GROUP */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}

/* INPUT STYLE */
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  transition: all 0.2s var(--ease-out);
  background: #fff;
}

/* INPUT FOCUS */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.12);
  outline: none;
}

/* FULL WIDTH */
.full {
  grid-column: span 4;
}

/* CHECKBOX */
.form-check {
  margin-top: 16px;
  font-size: 0.78rem;
  display: flex;
  gap: 8px;
  color: var(--text-muted);
}

.form-check input {
  accent-color: var(--teal);
}

/* CAPTCHA STYLE */
.captcha-box {
  margin-top: 14px;
  border: 1px solid var(--border);
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  background: var(--bg);
}

/* BUTTON */
.submit-btn {
  margin-top: 20px;
  padding: 12px 28px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
}

.submit-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(29, 158, 117, 0.35);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .full {
    grid-column: span 1;
  }
}

/* STICKY CONSULT BUTTON */
.sticky-consult-wrap {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  transition: opacity 0.3s, visibility 0.3s;
}

.sticky-consult-wrap.hide-near-footer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sticky-consult-btn {
  padding: 12px 28px;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(29, 158, 117, 0.35);
  animation: floatBtn 3s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatBtn {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .sticky-consult-wrap {
    bottom: 15px;
    width: 60%;
    padding: 0 16px;
  }

  .sticky-consult-btn {
    width: 100%;
    justify-content: center;
    display: flex;
  }
}

/* THANK YOU POPUP */
#thankYouPopup {
  position: fixed;
  inset: 0;
  background: rgba(17, 30, 50, 0.75);
  /* navy overlay */
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* BOX */
#thankYouPopup .popup-container {
  background: #fff;
  padding: 35px 30px;
  border-radius: 16px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: thankYouFade 0.4s ease;
}

/* ANIMATION */
@keyframes thankYouFade {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* TITLE */
#thankYouPopup h2 {
  font-size: 22px;
  font-weight: 800;
  color: #1B2E4B;
  /* navy */
  margin-bottom: 8px;
}

/* TEXT */
#thankYouPopup p {
  font-size: 14px;
  color: #5A6678;
  margin-bottom: 20px;
}

/* SUCCESS ICON (optional) */
.thankyou-icon {
  width: 60px;
  height: 60px;
  background: #E8F7F2;
  color: #1D9E75;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 26px;
}

/* WHATSAPP BUTTON */
#whatsappSend {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 24px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 14px;

  border-radius: 50px;
  text-decoration: none;

  transition: all 0.25s ease;
}

/* HOVER */
#whatsappSend:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* OPTIONAL SECONDARY BUTTON (if needed) */
.thankyou-close {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: #5A6678;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 480px) {
  #thankYouPopup .popup-container {
    padding: 28px 20px;
  }

  #thankYouPopup h2 {
    font-size: 20px;
  }
}

:root {
  --primary: #1B2E4B;
  --accent: #1D9E75;
  --bg: #F5F7F6;
  --text: #1A2332;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
}

/* Container — do not redefine, use global .container above */

/* Hero */
.hero {
  height: 90vh;
  background: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?w=1600') center/cover;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  color: #fff;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
}

.hero p {
  margin: 20px 0;
}

/* Buttons */
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
}

/* Sections */
.section {
  padding: 80px 0;
}

.bg-light {
  background: var(--bg);
}

.bg-dark {
  background: #111;
  color: #fff;
}

.center {
  text-align: center
}

/* Grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Cards */
.card {
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Clients */
.clients img {
  margin: 20px;
  opacity: 0.7;
}

/* Steps */
.steps {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.step {
  padding: 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
}

/* Video */
.video-box iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
}

/* Checklist */
.checklist ul {
  margin: 20px 0;
}

/* CTA */
.cta {
  background: var(--primary);
  color: #fff;
  padding: 60px 0;
}

/* ================= PAYROLL HERO ================= */

.payroll-hero {
  position: relative;
  padding: 110px 0 80px;
  background: linear-gradient(135deg, #1B2E4B 0%, #243d60 100%);
  overflow: hidden;
}

/* subtle grid effect */
.payroll-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.payroll-hero-inner {
  position: relative;
  max-width: 780px;
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: rgba(29, 158, 117, 0.15);
  color: #6bd4cb;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}

/* Title */
.hero-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 620px;
}

/* Breadcrumb */
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.hero-breadcrumb a {
  color: #6bd4cb;
  font-weight: 600;
}

.hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .payroll-hero {
    padding: 90px 0 60px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }
}

/* ================= CLIENTS SECTION ================= */

.clients-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #F5F7F6 100%);
}

/* Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* Card */
.client-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E4E9E6;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

/* Hover effect */
.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(26, 35, 50, 0.08);
  filter: grayscale(0%);
  border-color: rgba(29, 158, 117, 0.3);
}

/* Logo */
.client-card img {
  max-width: 120px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.client-card:hover img {
  opacity: 1;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= PAYROLL ABOUT (THEME MATCH) ================= */

.payroll-about {
  background: var(--bg);
}

/* spacing alignment like other sections */
.payroll-about .grid-2 {
  align-items: center;
  gap: 56px;
}

/* image styling SAME as why-section */
.payroll-about-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.payroll-about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* CTA spacing */
.payroll-about .btn-outline-teal {
  margin-top: 18px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .payroll-about .grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .payroll-about-img img {
    height: 260px;
  }
}

/* ================= SERVICES SECTION (STRICT THEME MATCH) ================= */

.section.bg-light {
  background: #6BD4CB;
}

/* Heading */
.section.bg-light h2 {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 36px;
}

/* Grid spacing */
.grid-4 {
  gap: 24px;
}

/* Card (same style as your project cards) */
.card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

/* Icon */
.card img {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  opacity: 0.85;
}

/* Title */
.card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

/* Hover (same subtle effect as your site) */
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(29, 158, 117, 0.2);
}

/* Optional: slight icon highlight on hover */
.card:hover img {
  opacity: 1;
}

.process-section {
  padding: 100px 0;
  background: var(--teal-faint);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.process-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* CONTENT */
.process-content {
  max-width: 520px;
}

/* STEPS */
.process-steps-custom {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.step-box {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease-out);
}

.step-box span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 8px;
}

.step-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

/* HOVER EFFECT */
.step-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(29, 158, 117, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-content {
    max-width: 100%;
  }

  .process-steps-custom {
    grid-template-columns: 1fr;
  }
}

/* ================= VIDEO SECTION ================= */
.video-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* subtle background glow */
.video-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(29, 158, 117, 0.15), transparent 70%);
  z-index: 0;
}

/* center content */
.video-section .container {
  position: relative;
  z-index: 2;
}

/* wrapper */
.video-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

/* video card */
.video-box {
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* glass overlay effect */
.video-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(29, 158, 117, 0.15),
      transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* iframe */
.video-box iframe {
  width: 100%;
  height: 480px;
  display: block;
  border: none;
}

/* responsive */
@media (max-width: 768px) {
  .video-box iframe {
    height: 220px;
  }

  .video-section {
    padding: 70px 0;
  }
}

/* ================= CHECKLIST SECTION ================= */
.checklist-section {
  padding: 100px 0;
  background: var(--bg);
}

/* CARD */
.checklist-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

/* CONTENT */
.checklist-content {
  max-width: 520px;
}

/* LIST */
.checklist-items {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist-items li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  color: var(--text);
}

/* custom bullet */
.checklist-items li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: bold;
}

/* BUTTON */
.btn-primary-checklist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  border-radius: 100px;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.btn-primary-checklist:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29, 158, 117, 0.25);
}

/* RIGHT VISUAL */
.checklist-visual {
  display: flex;
  justify-content: center;
}

.doc-card {
  width: 220px;
  height: 260px;
  background: var(--teal-light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.doc-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.doc-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.doc-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .checklist-card {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
    text-align: center;
  }

  .checklist-content {
    max-width: 100%;
  }

  .checklist-items li {
    text-align: left;
  }
}

/* ================= SERVICE PAGE STICKY SIDEBAR ================= */
.pp-services-sidebar {
  max-height: calc(100vh - 96px - 24px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d0dbe8 transparent;
}

/* Prevent flex-shrink from compressing cards to fit max-height */
.pp-services-sidebar>* {
  flex-shrink: 0;
}

/* Allow full image display in the sidebar */
.pp-services-sidebar .pp-overview-img img {
  height: auto;
}

.pp-services-sidebar::-webkit-scrollbar {
  width: 4px;
}

.pp-services-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.pp-services-sidebar::-webkit-scrollbar-thumb {
  background: #d0dbe8;
  border-radius: 4px;
}

/* ================= OTHER SERVICES ================= */
.other-services-section {
  padding: 100px 0;
  background: var(--teal-faint);
}

/* GRID */
/* scroll container */
/* SECTION BACKGROUND */
.other-services-section {
  background: var(--teal-faint);
  padding: 80px 0;
}

/* GRID (SCROLL FIXED) */
.other-services-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 4px 20px;
}

/* HIDE UGLY SCROLLBAR */
.other-services-grid::-webkit-scrollbar {
  display: none;
}

.other-services-grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* CARD DESIGN (FIXED WIDTH) */
.other-service-card {
  flex: 0 0 320px;
  /* FIXED WIDTH */
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* HOVER EFFECT */
.other-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(29, 158, 117, 0.3);
}

/* ICON */
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

/* TEXT */
.other-service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.other-service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* HOVER */
.other-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(29, 158, 117, 0.25);
}

.other-service-card:hover .service-icon {
  background: rgba(29, 158, 117, 0.2);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .other-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .other-services-grid {
    grid-template-columns: 1fr;
  }

  .other-service-card {
    text-align: center;
  }
}

/* ===== MODERN CTA SECTION ===== */
.cta-modern {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  position: relative;
  overflow: hidden;
}

/* subtle pattern */
.cta-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(29, 158, 117, 0.15), transparent 40%);
}

/* main box */
.cta-box {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 50px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

/* content */
.cta-content h2 {
  font-size: 2rem;
  color: #fff;
  font-weight: 800;
  margin: 12px 0;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-bottom: 25px;
}

.cta-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal);
  background: rgba(29, 158, 117, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.1em;
}

/* buttons */
.cta-actions {
  display: flex;
  gap: 12px;
}

.btn-cta-primary {
  padding: 12px 26px;
  background: var(--teal);
  color: #fff;
  border-radius: 100px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-cta-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 158, 117, 0.4);
}

.btn-cta-outline {
  padding: 12px 22px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-cta-outline:hover {
  background: #fff;
  color: var(--navy);
}

/* right highlights */
.cta-highlight {
  display: flex;
  gap: 20px;
}

.highlight-box {
  background: rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  min-width: 120px;
}

.highlight-box h3 {
  color: var(--teal);
  font-size: 1.6rem;
  font-weight: 800;
}

.highlight-box p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* responsive */
@media (max-width: 768px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 36px 20px;
  }

  .cta-highlight {
    justify-content: center;
  }

  .cta-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.payroll-hero {
  position: relative;
  padding: 100px 0 80px;
  background: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1600&q=80') center/cover no-repeat;
  overflow: hidden;
}

/* Dark overlay for readability */
.payroll-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(27, 46, 75, 0.85),
      /* navy */
      rgba(27, 46, 75, 0.95));
  z-index: 1;
}

/* Optional teal glow effect */
.payroll-hero::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(29, 158, 117, 0.25), transparent 70%);
  z-index: 1;
}

/* content above overlay */
.payroll-hero-inner {
  position: relative;
  z-index: 2;
}

/* text color adjustments */
.hero-title {
  color: #fff;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.hero-breadcrumb {
  color: rgba(255, 255, 255, 0.6);
}

.hero-breadcrumb a {
  color: var(--teal);
}

/* wrapper */
.clients-marquee {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* track */
.clients-track {
  overflow: hidden;
  white-space: nowrap;
}

/* row */
.clients-row {
  display: flex;
  gap: 40px;
  width: max-content;
}

/* cards */
.client-card {
  min-width: 160px;
  height: 70px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

/* logo */
.client-card img {
  max-width: 120px;
  opacity: 0.7;
  transition: 0.3s;
}

.client-card:hover img {
  opacity: 1;
}

/* ANIMATION LEFT → RIGHT */
.track-left .clients-row {
  animation: scrollLeft 25s linear infinite;
}

/* ANIMATION RIGHT → LEFT */
.track-right .clients-row {
  animation: scrollRight 25s linear infinite;
}

/* keyframes */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* ===== WHY SECTION ENHANCEMENT ===== */

.why-content-col {
  max-width: none;
  width: 100%;
}

.why-img-col,
.why-content-col {
  width: 100%;
}

/* Image polish */
.why-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  width: 100%;
}

.why-img-wrap img {
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.why-img-wrap:hover img {
  transform: scale(1.04);
}

/* Feature list */
.why-features {
  margin-top: 32px;
  gap: 22px;
}

/* Each item */
.why-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

/* Hover effect (premium feel) */
.why-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(29, 158, 117, 0.25);
}

/* Icon styling */
.why-item-icon {
  width: 42px;
  height: 42px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* Icon hover */
.why-item:hover .why-item-icon {
  background: var(--teal);
  color: #fff;
}

/* Text */
.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== FEATURES SECTION ENHANCEMENT ===== */

/* Card improvement */
.svc-card {
  position: relative;
  overflow: hidden;
}

/* subtle top accent line */
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--teal);
  transition: width 0.4s ease;
}

/* hover effect */
.svc-card:hover::before {
  width: 100%;
}

/* icon styling upgrade */
.svc-icon-wrap {
  font-size: 20px;
  color: var(--teal-dark);
  transition: all 0.3s ease;
}

/* hover animation */
.svc-card:hover .svc-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
  background: rgba(29, 158, 117, 0.18);
}

/* text spacing */
.svc-name {
  margin-top: 6px;
}

.svc-desc {
  margin-top: 6px;
}

/* Features section on dark bg */
.bg-navy-deep .section-title {
  color: #fff;
}

.bg-navy-deep .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.bg-navy-deep .svc-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.bg-navy-deep .svc-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.bg-navy-deep .svc-name {
  color: #fff;
}

.bg-navy-deep .svc-desc {
  color: rgba(255, 255, 255, 0.65);
}

/* ===== PREMIUM STATS SECTION ===== */

.premium-stats {
  background: linear-gradient(135deg, #1B2E4B 0%, #16263f 100%);
  position: relative;
  overflow: hidden;
}

/* subtle pattern */
.premium-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 158, 117, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 158, 117, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* grid spacing */
.premium-stats .stats-grid {
  gap: 20px;
}

/* card style */
.premium-stats .stat-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

/* hover */
.premium-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-color: rgba(29, 158, 117, 0.4);
}

/* icon */
.stat-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: rgba(29, 158, 117, 0.15);
  color: #1D9E75;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* numbers */
.premium-stats .stat-num {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

/* labels */
.premium-stats .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* remove old borders */
.premium-stats .stat-item {
  border-right: none !important;
}

/* ===== FAQ SECTION ===== */

.faq-wrapper {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* card */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* hover */
.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(29, 158, 117, 0.25);
}

/* question button */
.faq-q {
  width: 100%;
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

/* icon */
.faq-icon {
  font-size: 20px;
  color: var(--teal);
  transition: transform 0.3s ease;
}

/* answer */
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  transition: all 0.3s ease;
}

/* active state */
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 20px 16px;
}

/* rotate icon */
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* ===== TESTIMONIAL SECTION UPGRADE ===== */

/* enhance cards */
.testi-card {
  position: relative;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

/* hover */
.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(29, 158, 117, 0.4);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* stars */
.testi-stars {
  font-size: 14px;
  color: var(--teal);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* quote styling */
.testi-text {
  font-size: 0.9rem;
  line-height: 1.7;
  position: relative;
}

/* quotation mark */
.testi-text::before {
  content: "“";
  font-size: 38px;
  color: rgba(29, 158, 117, 0.25);
  position: absolute;
  top: -10px;
  left: -10px;
}

/* author spacing */
.testi-author {
  margin-top: 18px;
}

/* avatar enhancement */
.testi-avatar {
  background: var(--teal);
  font-weight: 800;
}

/* subtle divider line */
.testi-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      rgba(29, 158, 117, 0.4),
      transparent);
}

/* ===== INDUSTRY SECTION ===== */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 20px;
}

/* card */
.industry-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

/* image */
.industry-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* overlay */
.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(27, 46, 75, 0.85),
      rgba(27, 46, 75, 0.2));
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

/* title */
.industry-overlay h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

/* hover effects */
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.industry-card:hover img {
  transform: scale(1.08);
}

/* responsive */
@media (max-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== WHO WE HELP SECTION ===== */

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* left content */
.who-content {
  max-width: 520px;
}

/* list */
.who-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* item */
.who-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

/* hover */
.who-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(29, 158, 117, 0.25);
}

/* icon */
.who-icon {
  width: 42px;
  height: 42px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* icon hover */
.who-item:hover .who-icon {
  background: var(--teal);
  color: #fff;
}

/* text */
.who-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.who-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* image */
.who-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.who-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* image hover */
.who-image:hover img {
  transform: scale(1.05);
}

/* responsive */
@media (max-width: 768px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .who-image img {
    height: 260px;
  }
}


/* ===== PROBLEM / SOLUTION SECTION ===== */

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* image */
.problem-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.problem-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.problem-image:hover img {
  transform: scale(1.05);
}

/* content */
.problem-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* boxes */
.problem-box {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

/* hover */
.problem-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* solution highlight */
.solution-box {
  border-left: 4px solid var(--teal);
  background: rgba(29, 158, 117, 0.04);
}

/* list */
.problem-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

/* negative (issues) */
.problem-list.negative li {
  color: #b42318;
  position: relative;
  padding-left: 22px;
}

.problem-list.negative li::before {
  content: "✖";
  position: absolute;
  left: 0;
  color: #e5484d;
}

/* positive (solutions) */
.problem-list.positive li {
  color: var(--navy);
  position: relative;
  padding-left: 22px;
}

.problem-list.positive li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--teal);
}

/* responsive */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .problem-image img {
    height: 260px;
  }
}

/* ===== COMPLIANCE CALENDAR ===== */

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 20px;
}

/* card */
.calendar-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

/* hover */
.calendar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(29, 158, 117, 0.25);
}

/* date box */
.cal-date {
  width: 50px;
  height: 50px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* title */
.calendar-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

/* desc */
.calendar-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* responsive */
@media (max-width: 1024px) {
  .calendar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .calendar-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== OUR ADVANTAGE SECTION ===== */

.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* image */
.adv-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.adv-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.adv-image:hover img {
  transform: scale(1.05);
}

/* content */
.adv-content {
  max-width: 520px;
}

/* list */
.adv-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* item */
.adv-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

/* hover */
.adv-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(29, 158, 117, 0.25);
}

/* icon */
.adv-icon {
  width: 42px;
  height: 42px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* icon hover */
.adv-item:hover .adv-icon {
  background: var(--teal);
  color: #fff;
}

/* text */
.adv-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.adv-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* responsive */
@media (max-width: 768px) {
  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .adv-image img {
    height: 260px;
  }
}

/* ===== ADVANTAGE CTA BUTTON ===== */

.adv-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* hover */
/* .adv-btn:hover {
  background: #158a63; 
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29,158,117,0.25);
} */

/* ===== CONTACT / GET STARTED SECTION ===== */

.get-started-section {
  background: linear-gradient(135deg, #1B2E4B 0%, #16263f 100%);
}

/* layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.contact-info {
  max-width: 480px;
}

/* contact list */
.contact-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* item */
.contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* icon */
.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(29, 158, 117, 0.15);
  color: #1D9E75;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* text */
.contact-item h4 {
  color: #fff;
  font-size: 0.9rem;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* RIGHT FORM */
.contact-form-box {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* heading */
.contact-form-box h3 {
  margin-bottom: 18px;
  color: var(--navy);
}

/* form */
.form-group {
  margin-bottom: 14px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

/* button */
.contact-form-box button {
  width: 100%;
  margin-top: 10px;
}

/* responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   payroll-page.css
   Styles for end-to-end-payroll-processing.html
   Works in tandem with style.css (base styles)
   ============================================================ */

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.pp-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.pp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.pp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(17, 30, 50, 0.90) 0%,
      rgba(17, 30, 50, 0.70) 45%,
      rgba(17, 30, 50, 0.30) 75%,
      rgba(17, 30, 50, 0.15) 100%);
}

.pp-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 72px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.pp-hero-content {
  max-width: 660px;
}

.pp-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin: 14px 0 18px;
}

.pp-hero-content>p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 540px;
}

.pp-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.pp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}

.pp-hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.pp-hero-stat {
  text-align: left;
}

.pp-hs-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.pp-hs-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ============================================================
   SECTION 2 — OVERVIEW
   ============================================================ */
.pp-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pp-overview-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pp-oh-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  padding: 10px 14px;
  background: var(--teal-faint);
  border-radius: var(--radius);
  border-left: 3px solid var(--teal);
}




.pp-overview-img:hover img {
  transform: scale(1.03);
}

.pp-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 220px;
}

.pp-img-badge strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.pp-img-badge span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ============================================================
   SECTION 3 — INCLUDES (What's Included Grid)
   ============================================================ */
.pp-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pp-inc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring), border-color 0.3s;
  border-top: 3px solid transparent;
}

.pp-inc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-top-color: var(--teal);
}

.pp-inc-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s;
}

.pp-inc-card:hover .pp-inc-icon {
  background: rgba(29, 158, 117, 0.18);
}

.pp-inc-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pp-inc-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   SECTION 4 — PROCESS TIMELINE
   ============================================================ */
.pp-process-timeline {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 18px;
  width: 100%;
  margin: 0;
  padding: 10px 4px 16px;
  overflow-x: auto;
  overflow-y: hidden;
  border-left: none;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(27, 46, 75, 0.28) rgba(27, 46, 75, 0.08);
}

.pp-process-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: -8px 0 22px;
}

.pp-process-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(29, 158, 117, 0.08);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  border: 1px solid rgba(29, 158, 117, 0.14);
}

.pp-process-timeline::-webkit-scrollbar {
  height: 9px;
}

.pp-process-timeline::-webkit-scrollbar-track {
  background: rgba(27, 46, 75, 0.08);
  border-radius: 999px;
}

.pp-process-timeline::-webkit-scrollbar-thumb {
  background: rgba(27, 46, 75, 0.28);
  border-radius: 999px;
}

.pp-pt-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 0;
  margin-left: 0;
  position: relative;
  scroll-snap-align: start;
  min-width: 0;
}

.pp-pt-num {
  width: 34px;
  height: 34px;
  background: var(--teal);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0;
  margin-left: 2px;
  letter-spacing: -0.02em;
  box-shadow: 0 0 0 5px rgba(29, 158, 117, 0.15);
  z-index: 2;
}

.pp-pt-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 42px;
  width: calc(100% - 26px);
  height: 2px;
  background: linear-gradient(90deg, rgba(29, 158, 117, 0.42), rgba(29, 158, 117, 0.12));
  z-index: 1;
}

.pp-pt-connector {
  display: none;
}

.pp-pt-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  flex: 1;
  transition: box-shadow 0.3s var(--ease-out), border-color 0.3s;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.pp-pt-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(29, 158, 117, 0.25);
}

.pp-pt-icon {
  width: 42px;
  height: 42px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.pp-pt-card h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  line-height: 1.4;
}

.pp-pt-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 10px;
  flex: 1;
}

.pp-pt-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: auto;
  align-self: flex-start;
}

/* ============================================================
   SECTION 5 — FEATURES (Card with image)
   ============================================================ */
.pp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.pp-feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.pp-feat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pp-feat-card>img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.pp-feat-card:hover>img {
  transform: scale(1.04);
}

.pp-feat-body {
  padding: 20px 22px 24px;
}

.pp-feat-icon {
  width: 42px;
  height: 42px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.pp-feat-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pp-feat-body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   SECTION 6 — COMPLIANCE COVERAGE
   ============================================================ */
.pp-compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pp-statute-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.pp-statute-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pp-statute-item:hover {
  border-color: rgba(29, 158, 117, 0.3);
  box-shadow: var(--shadow-xs);
}

.pp-si-badge {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pp-statute-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.pp-statute-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.pp-compliance-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.pp-compliance-img:hover {
  transform: scale(1.02);
}

/* ============================================================
   SECTION 7 — INDUSTRIES
   ============================================================ */
.pp-ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.pp-ind-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.pp-ind-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pp-ind-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.pp-ind-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.pp-ind-card:hover .pp-ind-img img {
  transform: scale(1.06);
}

.pp-ind-overlay {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  background: rgba(17, 30, 50, 0.7);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-ind-body {
  padding: 18px;
}

.pp-ind-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.pp-ind-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.pp-ind-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pp-ind-tags span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 3px 9px;
  border-radius: 100px;
}

/* ============================================================
   SECTION 8 — TECHNOLOGY
   ============================================================ */
.pp-tech-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pp-tech-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.pp-tech-logo-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg);
  border: 1.5px solid var(--border);
  padding: 8px 14px;
  border-radius: 100px;
  transition: all 0.2s var(--ease-out);
  cursor: default;
}

.pp-tech-logo-item:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: var(--teal-faint);
  transform: translateY(-2px);
}

.pp-tech-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: block;
}

/* ============================================================
   SECTION 9 — CASE STUDIES
   ============================================================ */
.pp-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.pp-case {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.pp-case:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pp-case>img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.pp-case:hover>img {
  transform: scale(1.04);
}

.pp-case-body {
  padding: 20px;
}

.pp-case-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.pp-case-sector {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pp-case-win {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-light);
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
}

.pp-case-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
}

.pp-case-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.pp-case-kpis {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.pp-case-kpis>div {
  flex: 1;
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid var(--border);
}

.pp-case-kpis>div:last-child {
  border-right: none;
}

.pp-case-kpis strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.pp-case-kpis span {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.3;
  display: block;
}

/* ============================================================
   SECTION 10 — RISKS
   ============================================================ */
.pp-risks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.pp-risk-card {
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.pp-risk-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pp-risk-card.danger {
  background: #FFF5F5;
  border: 1px solid #FED7D7;
  border-top: 3px solid #EF4444;
}

.pp-risk-card.safe {
  background: var(--teal-faint);
  border: 1px solid rgba(29, 158, 117, 0.2);
  border-top: 3px solid var(--teal);
  grid-column: span 4;
  display: flex;
  gap: 20px;
  align-items: center;
}

.pp-risk-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.pp-risk-card.danger .pp-risk-icon {
  background: #FEE2E2;
}

.pp-risk-card.safe .pp-risk-icon {
  background: var(--teal-light);
  margin-bottom: 0;
}

.pp-risk-card.safe h4 {
  margin-bottom: 6px;
}

.pp-risk-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pp-risk-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.pp-risk-card p strong {
  color: var(--navy);
}

/* ============================================================
   SECTION 13 — ONBOARDING
   ============================================================ */
.pp-onboard-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 8px;
}

.pp-ob-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
  border-top: 3px solid var(--teal);
}

.pp-ob-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pp-ob-day {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 14px;
}

.pp-ob-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.pp-ob-step h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pp-ob-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.pp-ob-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  margin-top: 60px;
  flex-shrink: 0;
}

/* ============================================================
   SECTION 15 — RELATED SERVICES
   ============================================================ */
.pp-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.pp-related-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-spring), border-color 0.3s;
  border-bottom: 3px solid transparent;
}

.pp-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-bottom-color: var(--teal);
}

.pp-rel-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s;
}

.pp-related-card:hover .pp-rel-icon {
  background: rgba(29, 158, 117, 0.18);
}

.pp-related-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pp-related-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.pp-rel-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  transition: color 0.2s;
}

.pp-related-card:hover .pp-rel-link {
  color: var(--teal-dark);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1100px) {
  .pp-includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pp-ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pp-cases-grid {
    grid-template-columns: 1fr;
  }

  .pp-risks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pp-risk-card.safe {
    grid-column: span 2;
  }

  .pp-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pp-onboard-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pp-ob-arrow {
    display: none;
  }

  .pp-compliance-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pp-tech-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pp-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .pp-hero {
    min-height: auto;
  }

  .pp-hero-inner {
    padding: 40px 20px 56px;
  }

  .pp-hero-content h1 {
    font-size: 2rem;
  }

  .pp-hero-stats {
    gap: 24px;
  }

  .pp-hs-num {
    font-size: 1.5rem;
  }

  .pp-hero-actions {
    flex-direction: column;
  }

  .pp-hero-actions .btn-primary-solid,
  .pp-hero-actions .pp-btn-ghost {
    justify-content: center;
  }

  .pp-includes-grid {
    grid-template-columns: 1fr;
  }

  .pp-features-grid {
    grid-template-columns: 1fr;
  }

  .pp-ind-grid {
    grid-template-columns: 1fr;
  }

  .pp-risks-grid {
    grid-template-columns: 1fr;
  }

  .pp-risk-card.safe {
    grid-column: span 1;
    flex-direction: column;
  }

  .pp-related-grid {
    grid-template-columns: 1fr;
  }

  .pp-overview-img img {
    height: 340px;
  }

  .pp-compliance-img {
    height: 280px;
  }

  .pp-tech-img {
    height: 260px;
  }

  .pp-process-timeline {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .pp-pt-item {
    scroll-snap-align: none;
  }

  .pp-pt-item:not(:last-child)::after {
    display: none;
  }

  .pp-pt-num {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
    margin-left: 0;
  }

  .pp-pt-card {
    padding: 16px 18px;
    min-height: auto;
  }

  .pp-hero-stats {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .pp-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .pp-inc-card,
  .pp-risk-card,
  .pp-related-card {
    padding: 20px 16px;
  }

  .pp-case-kpis>div {
    padding: 0 4px;
  }
}

/* ===== FORM POLISH ===== */

.contact-form-box {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

/* grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* full width */
.form-group.full {
  grid-column: span 2;
}

/* inputs */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  transition: 0.3s;
}

/* focus */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.1);
}

/* textarea */
textarea {
  min-height: 90px;
}

/* checkbox */
.form-check {
  display: flex;
  gap: 8px;
  font-size: 0.8rem;
  margin: 10px 0;
}

/* button */
.submit-btn {
  width: 100%;
  padding: 12px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #158a63;
  transform: translateY(-2px);
}

/* responsive */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }
}

.get-started-section {
  background: linear-gradient(135deg,
      #f8fafc 0%,
      #eef2f7 100%);
}

.contact-info {
  max-width: 480px;
  padding-top: 20px;
}

/* eyebrow badge */
.section-eyebrow {
  display: inline-block;
  background: rgba(29, 158, 117, 0.12);
  color: var(--teal);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

/* heading */
.contact-info h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

/* description */
.contact-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* contact items spacing */
.contact-list {
  margin-top: 28px;
  gap: 20px;
}

/* icon fix */
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(29, 158, 117, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-form-box {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* heading */
.contact-form-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}

/* inputs */
.form-group input,
.form-group select,
.form-group textarea {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

/* focus effect */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: #fff;
  border-color: var(--teal);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #6BD4CB);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(29, 158, 117, 0.3);
}

/* ===== PAYROLL CONSULTATION SECTION ===== */
.pp-consult-section {
  position: relative;
  background: linear-gradient(135deg, #e6f3ff 0%, #eff9f3 46%, #edf0ff 100%);
  overflow: hidden;
}

.pp-consult-section::before,
.pp-consult-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.pp-consult-section::before {
  width: 360px;
  height: 360px;
  top: -140px;
  left: -120px;
  background: radial-gradient(circle, rgba(107, 212, 203, 0.26) 0%, rgba(107, 212, 203, 0) 72%);
}

.pp-consult-section::after {
  width: 430px;
  height: 430px;
  right: -170px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(27, 46, 75, 0.13) 0%, rgba(27, 46, 75, 0) 70%);
}

.pp-consult-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}

.pp-consult-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(107, 212, 203, 0.35);
  color: #0f6d64;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pp-consult-title {
  margin-top: 14px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.pp-consult-desc {
  max-width: 500px;
  color: #4f5f74;
  font-size: 1.02rem;
  line-height: 1.75;
}

.pp-consult-list {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.pp-consult-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(27, 46, 75, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(27, 46, 75, 0.08);
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

a.pp-consult-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(27, 46, 75, 0.14);
  border-color: rgba(27, 46, 75, 0.2);
}

.pp-consult-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(107, 212, 203, 0.28), rgba(107, 212, 203, 0.15));
  color: #0d8272;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pp-consult-meta {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.pp-consult-meta strong {
  font-size: 0.9rem;
  color: #162f52;
  font-weight: 800;
}

.pp-consult-meta span {
  color: #4f5f74;
  font-size: 0.94rem;
}

.pp-consult-form {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(27, 46, 75, 0.12);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 24px 54px rgba(27, 46, 75, 0.14);
  backdrop-filter: blur(8px);
}

.pp-consult-form-head {
  margin-bottom: 18px;
}

.pp-consult-form-head h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.pp-consult-form-head p {
  font-size: 0.9rem;
  color: #56657a;
  line-height: 1.6;
}

.pp-consult-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pp-consult-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.pp-consult-field label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #4a5c72;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pp-consult-field input,
.pp-consult-field select,
.pp-consult-field textarea {
  width: 100%;
  border: 1px solid #d6dfec;
  border-radius: 10px;
  padding: 12px 13px;
  font-size: 0.9rem;
  font-family: var(--font);
  color: #1d2b3f;
  background: #f8fbff;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}

.pp-consult-field input:focus,
.pp-consult-field select:focus,
.pp-consult-field textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #8cbfda;
  box-shadow: 0 0 0 4px rgba(107, 212, 203, 0.2);
}

.pp-consult-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #5b6f89 50%), linear-gradient(135deg, #5b6f89 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.pp-consult-field textarea {
  min-height: 112px;
  resize: vertical;
}

.pp-consult-field-full {
  margin-bottom: 8px;
}

.pp-consult-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 4px 0 14px;
  color: #536477;
  font-size: 0.8rem;
  line-height: 1.4;
}

.pp-consult-check input {
  margin-top: 1px;
  accent-color: #12967f;
}

.pp-consult-check a {
  color: #1a8c82;
  font-weight: 600;
}

.pp-consult-check a:hover {
  color: #106a6a;
}

.pp-consult-submit {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  background: linear-gradient(120deg, #50c9bb 0%, #4fb2d5 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), filter 0.25s var(--ease-out);
}

.pp-consult-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(79, 178, 213, 0.35);
  filter: saturate(1.06);
}

@media (max-width: 1024px) {
  .pp-consult-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pp-consult-form {
    max-width: 760px;
  }
}

@media (max-width: 768px) {
  .pp-consult-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .pp-consult-form {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .pp-consult-form-head h3 {
    font-size: 1.28rem;
  }

  .pp-consult-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pp-consult-field {
    margin-bottom: 10px;
  }

  .pp-consult-item {
    padding: 12px 13px;
    border-radius: 12px;
  }

  .pp-consult-meta span {
    font-size: 0.88rem;
  }
}

/* ===== CONSULT POPUP FIX ===== */
/* ===== UNIQUE BUSINESS ENQUIRY POPUP ===== */
#consultPopup.popup-overlay {
  background: rgba(17, 30, 50, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px;
}

#consultPopup .consult-popup-card {
  width: min(900px, 100%);
  max-height: min(92vh, 900px);
  overflow-y: auto;
  background: var(--bg);
  border: none;
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(17, 30, 50, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.5);
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

#consultPopup .popup-title-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 40px 48px 30px;
  position: relative;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 10px 30px rgba(27, 46, 75, 0.15);
  flex-shrink: 0;
  text-align: center;
}

#consultPopup .popup-title-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29, 158, 117, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

#consultPopup .popup-title-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), #B89648);
}

#consultPopup .popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
  padding: 0;
  line-height: 1;
  backdrop-filter: blur(8px);
}

#consultPopup .popup-close:hover {
  background: var(--teal);
  color: var(--white);
  transform: rotate(90deg) scale(1.1);
  border-color: var(--teal);
  box-shadow: 0 8px 20px rgba(29, 158, 117, 0.4);
}

#consultPopup .popup-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  padding: 0 40px; /* Prevent overlap with close button */
}

#consultPopup .popup-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

#consultPopup .popup-form {
  padding: 50px;
  background: var(--white);
  border-radius: 0 0 28px 28px;
}

#consultPopup .popup-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 24px;
}

#consultPopup .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#consultPopup .form-group label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-left: 2px;
}

#consultPopup .form-group input,
#consultPopup .form-group select,
#consultPopup .form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-appearance: none;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

#consultPopup .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231B2E4B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 48px;
}

#consultPopup .form-group input:focus,
#consultPopup .form-group select:focus,
#consultPopup .form-group textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 8px 20px rgba(29, 158, 117, 0.12), 0 0 0 1px var(--teal);
  transform: translateY(-2px);
}

#consultPopup .form-group input::placeholder,
#consultPopup .form-group textarea::placeholder {
  color: var(--text-light);
  opacity: 0.6;
  font-weight: 500;
}

#consultPopup .form-group.full {
  grid-column: 1 / -1;
}

#consultPopup textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

#consultPopup .popup-consent {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  grid-column: 1 / -1;
}

#consultPopup .popup-consent input[type="checkbox"] {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  accent-color: var(--teal);
  cursor: pointer;
}

#consultPopup .popup-consent label {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 500;
  cursor: pointer;
}

#consultPopup .popup-consent a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid rgba(29, 158, 117, 0.3);
  transition: border-color 0.2s;
}

#consultPopup .popup-consent a:hover {
  border-bottom-color: var(--teal);
}

#consultPopup .popup-submit-btn {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 18px 36px;
  border-radius: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(29, 158, 117, 0.25);
  position: relative;
  overflow: hidden;
}

#consultPopup .popup-submit-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: 0.5s;
}

#consultPopup .popup-submit-btn:hover::after {
  left: 150%;
}

#consultPopup .popup-submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(29, 158, 117, 0.4);
}

#consultPopup .popup-submit-btn:active {
  transform: translateY(0);
}

/* ===== PREMIUM THANK YOU POPUP ===== */
#thankYouPopup .thankyou-popup-card {
  max-width: 520px;
  width: 95%;
  text-align: center;
  padding: 64px 40px;
  border-radius: var(--radius-xl);
}

#thankYouPopup .thankyou-popup-card h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

#thankYouPopup .thankyou-popup-card p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

#thankYouPopup .thankyou-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

#thankYouPopup .thankyou-whatsapp-btn {
  background: #25D366;
  /* WhatsApp Green */
  color: white;
  border-radius: 100px;
  padding: 16px 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s var(--ease-out);
}

#thankYouPopup .thankyou-whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

#thankYouPopup .thankyou-close {
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: color 0.2s;
  border: none;
}

#thankYouPopup .thankyou-close:hover {
  color: var(--navy);
}

#thankYouPopup .popup-close-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}

#thankYouPopup .popup-close-icon:hover {
  background: var(--navy);
  color: white;
  transform: rotate(90deg);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  #consultPopup .consult-popup-card {
    border-radius: 20px;
  }

  #consultPopup .popup-title-bar {
    padding: 40px 24px 30px;
    border-radius: 20px 20px 0 0;
  }

  #consultPopup .popup-form {
    padding: 30px 24px;
    border-radius: 0 0 20px 20px;
  }

  #consultPopup .popup-close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  #consultPopup .popup-form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #consultPopup .popup-title {
    font-size: 1.75rem;
    text-align: left;
  }

  #consultPopup .popup-subtitle {
    font-size: 0.95rem;
    text-align: left;
  }

  #consultPopup .popup-submit-btn {
    margin-top: 28px;
  }
}


/* ================= HERO SECTION ================= */
.pp-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #0f2f2f;
}

/* Background Video */
.pp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pp-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay (IMPORTANT) */
.pp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(23, 122, 122, 0.6),
      rgba(30, 158, 158, 0.45));
}

/* Content Layout */
.pp-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.pp-hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.pp-hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: 28px;
}

/* Buttons */
.pp-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary-solid {
  background: #ffffff;
  color: #177A7A;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.btn-primary-solid:hover {
  background: #f1f1f1;
  transform: translateY(-2px);
}

.pp-btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  padding: 13px 24px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ================= STATS ================= */
.pp-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.pp-hero-stat {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.3s;
}

.pp-hero-stat:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.pp-hs-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.pp-hs-lbl {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ================= BREADCRUMB ================= */
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: #ffffff;
  opacity: 0.85;
}

.breadcrumb span {
  margin: 0 6px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .pp-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pp-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .pp-hero-actions {
    justify-content: center;
  }

  .pp-hero-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .pp-hero-stats {
    grid-template-columns: 1fr;
  }
}


/* Full image card */
.svc-card {
  padding: 0;
  /* remove old padding */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(27, 46, 75, 0.10);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  box-shadow:
    0 16px 40px rgba(17, 30, 50, 0.07),
    0 2px 8px rgba(17, 30, 50, 0.05);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
}

/* Image */
.svc-img-wrap {
  height: 190px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(27, 46, 75, 0.08);
}

.svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.7s var(--ease-out), filter 0.45s var(--ease-out);
}

/* Hover zoom */
.svc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(29, 158, 117, 0.22);
  box-shadow:
    0 28px 56px rgba(17, 30, 50, 0.14),
    0 10px 22px rgba(17, 30, 50, 0.08);
}

.svc-card:hover .svc-img-wrap img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.03);
}

.svc-card>.svc-name,
.svc-card>.svc-desc,
.svc-card>.svc-link {
  padding-left: 24px;
  padding-right: 24px;
}

.svc-card>.svc-name {
  margin-top: 18px;
  margin-bottom: 8px;
}

.svc-card>.svc-desc {
  margin-bottom: 18px;
}

.svc-card>.svc-link {
  margin-top: auto;
  padding-bottom: 24px;
}

/* Content */
.svc-content {
  padding: 20px 24px 24px;
}

/* Optional gradient overlay (premium look) */
.svc-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(8, 18, 34, 0) 35%,
      rgba(12, 27, 50, 0.12) 72%,
      rgba(27, 46, 75, 0.26) 100%);
}

.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.svc-name {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.svc-desc {
  font-size: 0.82rem;
  line-height: 1.72;
  color: #617086;
}

.svc-link {
  gap: 8px;
  font-size: 0.84rem;
  letter-spacing: -0.01em;
}

.svc-link svg {
  transition: transform 0.25s var(--ease-out);
}

.svc-card:hover .svc-link svg {
  transform: translateX(3px);
}


/* ===== PREMIUM WHY SECTION ===== */

.why-premium-section {
  padding: 110px 0;
  background: linear-gradient(to bottom, #F5F7F6, #ffffff);
}

.why-premium-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

/* IMAGE SIDE */
.why-premium-media {
  position: relative;
}

.why-premium-img {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.why-premium-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.why-premium-img:hover img {
  transform: scale(1.05);
}

/* FLOATING CARD */
.why-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #1B2E4B;
  color: white;
  padding: 20px 26px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.wf-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal);
}

.wf-text {
  font-size: 0.8rem;
  opacity: 0.7;
  font-weight: 700;
}

/* CONTENT SIDE */
.why-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1B2E4B;
  line-height: 1.2;
  margin-bottom: 16px;
}

.why-title span {
  color: var(--teal-dark);
}

.why-desc {
  color: #5A6678;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 700;
}

/* LIST */
.why-premium-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why-premium-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.icon-box {
  width: 38px;
  height: 38px;
  background: #E8F7F2;
  color: #1D9E75;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.icon-box svg {
  width: 20px;
  height: 20px;
  display: block;
}

.why-premium-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1B2E4B;
}

.why-premium-item p {
  font-size: 0.85rem;
  color: #5A6678;
  font-weight: 700;
}

/* CTA */
.why-cta {
  margin-top: 34px;
}

.btn-premium {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(29, 158, 117, 0.35);
  transition: all 0.3s ease;
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(29, 158, 117, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-premium-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-premium-img img {
    height: 380px;
  }

  .why-floating-card {
    left: 10px;
    bottom: -10px;
  }
}

.industry-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
  text-align: center;
}

.trust-item {
  background: linear-gradient(180deg, rgba(240, 250, 246, 0.88) 0%, rgba(255, 255, 255, 0.96) 100%);
  border: 1px solid rgba(29, 158, 117, 0.12);
  padding: 20px 16px;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.trust-item strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 6px;
}

.trust-item span {
  font-size: 0.76rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
}


/* ===== IMPACT SECTION ===== */
.impact-section {
  padding: 80px 0;
  position: relative;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* CARD */
.impact-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: all 0.35s var(--ease-out);
}

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* IMAGE */
.impact-img {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.impact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.impact-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.impact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(27, 46, 75, 0.9),
      rgba(27, 46, 75, 0.2));
}

/* CONTENT */
.impact-content {
  padding: 18px 18px 20px;
  text-align: center;
}

.impact-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.impact-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* HIGHLIGHT CARD */
.impact-card.highlight {
  border: 1px solid rgba(29, 158, 117, 0.35);
  background: linear-gradient(135deg,
      rgba(29, 158, 117, 0.12),
      rgba(255, 255, 255, 0.03));
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

/* GRID */
.pp-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* CARD */
.pp-related-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease-out);
}

.pp-related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* IMAGE */
.pp-rel-img {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.pp-rel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pp-related-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.pp-rel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(27, 46, 75, 0.65),
      rgba(27, 46, 75, 0.1));
}

/* BODY */
.pp-rel-body {
  padding: 18px 18px 20px;
}

.pp-rel-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.pp-rel-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

/* LINK */
.pp-rel-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  transition: all 0.2s;
}

.pp-related-card:hover .pp-rel-link {
  color: var(--teal-dark);
  letter-spacing: 0.02em;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pp-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pp-related-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION BASE */
.video-section {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(circle at 20% 30%,
      rgba(29, 158, 117, 0.18),
      transparent 40%),
    radial-gradient(circle at 80% 20%,
      rgba(29, 158, 117, 0.12),
      transparent 40%),
    linear-gradient(135deg, #1B2E4B 0%, #243d60 100%);
  overflow: hidden;
}

/* GRID PATTERN (SUBTLE) */
.video-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}

/* VIDEO WRAPPER CENTER */
.video-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  position: relative;
}

/* GLOW BEHIND VIDEO */
.video-wrapper::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 220px;
  background: radial-gradient(circle,
      rgba(29, 158, 117, 0.35),
      transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

/* VIDEO BOX */
.video-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* RESPONSIVE VIDEO */
.video-box iframe {
  width: 100%;
  height: 420px;
  display: block;
}

/* HEADER FIX */
.video-section .section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

/* MOBILE */
@media (max-width: 768px) {
  .video-box iframe {
    height: 220px;
  }

  .video-section {
    padding: 80px 0;
  }
}


/* === BACKGROUND DESIGN WRAPPER === */
.ab-sec-bg-wrap {
  position: relative;
  padding: 30px;
}

/* === PATTERN BEHIND IMAGE === */
.ab-sec-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: var(--radius-xl);

  background:
    radial-gradient(circle at 20% 20%, rgba(29, 158, 117, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(29, 158, 117, 0.10) 0%, transparent 45%),
    linear-gradient(rgba(26, 35, 50, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 35, 50, 0.03) 1px, transparent 1px);

  background-size: auto, auto, 42px 42px, 42px 42px;
}

/* === IMAGE CARD (ABOVE PATTERN) === */
.ab-sec-image-card {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: white;
}

.ab-sec-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.map-section {
  background: var(--bg);
  padding: 60px 0;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 20px;
}

.compliance-section {
  background: var(--bg);
}

/* Layout */
.compliance-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  margin-top: 40px;
}

/* ===== Timeline ===== */
.compliance-timeline {
  position: relative;
  padding-left: 30px;
}

.compliance-timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  position: relative;
}

.timeline-dot {
  min-width: 42px;
  height: 42px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.7rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--teal);
}

.timeline-item h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Right Card ===== */
.deadline-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.deadline-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}

.deadline-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--teal-faint);
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.deadline-item span {
  color: var(--text);
}

.deadline-item strong {
  color: var(--teal);
}

/* Responsive */
@media (max-width: 768px) {
  .compliance-grid {
    grid-template-columns: 1fr;
  }
}





.pp-overview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* keeps image nicely cropped */
}

/* Pamphlet Card */
.pp-pamphlet {
  position: absolute;
  bottom: 20px;
  left: 20px;
  max-width: 260px;

  background: #ffffff;
  padding: 18px 16px;
  border-radius: 14px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

.pp-pamphlet h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1B2E4B;
  margin-bottom: 6px;
}

.pp-pamphlet p {
  font-size: 0.78rem;
  color: #5A6678;
  margin-bottom: 10px;
}

.pp-pamphlet a {
  font-size: 0.78rem;
  font-weight: 600;
  color: #1D9E75;
}

/* Hover effect */
.pp-overview-img:hover .pp-pamphlet {
  transform: translateY(-6px);
}

/* =========================================================
   BLOG PAGE — PREMIUM STYLE (MATCHING YOUR THEME)
   ========================================================= */

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease-out);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* IMAGE */
.blog-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

/* TAG */
.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--teal);
  color: #fff;
  padding: 5px 12px;
  border-radius: 100px;
}

/* BODY */
.blog-body {
  padding: 22px;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 8px;
  display: block;
}

.blog-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* LINK */
.blog-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.blog-link:hover {
  gap: 10px;
  color: var(--teal-dark);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-img {
    height: 200px;
  }
}

/* =========================
   WEBINAR PAGE PREMIUM CSS
   ========================= */

/* GRID */
.webinar-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* LEFT CONTENT */
.webinar-points {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.webinar-points li {
  font-size: 0.9rem;
  color: var(--text);
  position: relative;
  padding-left: 26px;
}

.webinar-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal-light);
}

/* RIGHT CARD */
.webinar-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.webinar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: var(--navy);
}

/* INFO ROW */
.webinar-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.webinar-info .icon {
  width: 36px;
  height: 36px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SPEAKER */
.speaker-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
}

.speaker-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.speaker-name {
  margin-top: 14px;
  font-weight: 700;
  color: var(--navy);
}

.speaker-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* REGISTER */
.webinar-register {
  background: var(--navy);
  color: #fff;
}

.register-card {
  text-align: center;
  max-width: 500px;
}

.register-card h2 {
  color: #fff;
  margin-bottom: 10px;
}

.register-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

/* FORM */
.webinar-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.webinar-form input {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: none;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .webinar-grid {
    grid-template-columns: 1fr;
  }

  .speaker-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== WEBINAR ENHANCED ===== */

.webinar-points {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.webinar-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--bg);
  transition: all 0.25s ease;
}

.webinar-points li:hover {
  background: var(--teal-faint);
  transform: translateX(4px);
}

/* ICON */
.point-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}

/* CARD ENHANCED */
.webinar-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.webinar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* INFO */
.webinar-info {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.webinar-info .icon {
  width: 40px;
  height: 40px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.webinar-info strong {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

.webinar-info p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2px 0 0;
}

/* ===============================
   GALLERY FILTER
================================= */
.filter-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  transition: all 0.25s;
}

.filter-btn i {
  font-size: 0.75rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}


/* ===============================
   GALLERY GRID
================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}


/* ===============================
   CARD
================================= */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}


/* ===============================
   OVERLAY
================================= */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(27, 46, 75, 0.0) 0%,
      rgba(27, 46, 75, 0.85) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: 0.3s;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.gallery-content span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}


/* ICON */
.gallery-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.gallery-card:hover .gallery-icon {
  background: var(--teal);
}


/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SPEAKER ENHANCED ===== */

.speaker-content {
  display: flex;
  flex-direction: column;
}

/* NAME */
.speaker-name {
  margin-top: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}

.speaker-role {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 18px;
}

/* HIGHLIGHTS */
.speaker-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.speaker-highlights li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}

.speaker-highlights li:hover {
  background: var(--teal-faint);
  transform: translateX(4px);
  border-color: rgba(29, 158, 117, 0.2);
}

/* ICON */
.spk-icon {
  width: 26px;
  height: 26px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* IMAGE ENHANCE */
.speaker-img img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: transform 0.4s ease;
}

.speaker-img img:hover {
  transform: scale(1.03);
}


/* ===== WEBINAR AGENDA DARK ===== */

.webinar-agenda {
  background: #1B354D;
}

/* timeline container */
.agenda {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* vertical line */
.agenda::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.12);
}

/* row */
.agenda-row {
  display: grid;
  grid-template-columns: 100px 40px 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

/* time */
.agenda-time {
  font-size: 0.85rem;
  font-weight: 700;
  color: #4fd1c5;
  letter-spacing: 0.05em;
}

/* dot */
.agenda-track {
  display: flex;
  justify-content: center;
}

.dot {
  width: 10px;
  height: 10px;
  background: #4fd1c5;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(79, 209, 197, 0.15);
  position: relative;
}

/* pulse glow */
.dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(79, 209, 197, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* card */
.agenda-card {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

.agenda-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* icon */
.agenda-icon-min {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(79, 209, 197, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4fd1c5;
}

/* text */
.agenda-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.agenda-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* responsive */
@media (max-width: 768px) {
  .agenda::before {
    display: none;
  }

  .agenda-row {
    grid-template-columns: 1fr;
  }

  .agenda-track {
    display: none;
  }
}

/* =========================
   WHO SHOULD ATTEND — PREMIUM
   ========================= */

.webinar-attend {
  background: var(--white);
}

/* GRID */
.attend-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.attend-card {
  background: #f6f8f7;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: left;
  transition: all 0.3s var(--ease-out);
}

/* HOVER */
.attend-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(29, 158, 117, 0.2);
}

/* ICON */
.attend-icon {
  width: 42px;
  height: 42px;
  background: rgba(29, 158, 117, 0.12);
  color: var(--teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

/* TITLE */
.attend-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

/* TEXT */
.attend-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .attend-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .attend-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   KEY BENEFITS — IMAGE STYLE
   ========================= */

.webinar-benefits {
  background: var(--bg);
}

/* GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.benefit-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
}

/* IMAGE */
.benefit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* OVERLAY */
.benefit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.2));
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* TEXT */
.benefit-overlay h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.benefit-overlay p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* HOVER */
.benefit-card:hover img {
  transform: scale(1.08);
}

.benefit-card:hover .benefit-overlay {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.3));
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Awards Section ===== */

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.award-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  padding-bottom: 18px;
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.award-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.award-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Hover zoom */
.award-card:hover .award-image img {
  transform: scale(1.08);
}

/* TEXT */
.award-year {
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1D9E75;
}

.award-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 6px 0;
  color: #1a2a4a;
}

.award-card p {
  font-size: 0.82rem;
  color: #7a8fa6;
  font-weight: 700;
}

/* ===== Responsive ===== */

@media (max-width: 1024px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }
}

.pp-overview-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.pp-overview-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.pp-overview-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #1D9E75;
  font-weight: bold;
}

.pp-overview-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.pp-point {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #eef2f0;
  padding: 14px 18px;
  border-radius: 14px;
  position: relative;
  border-left: 4px solid #1D9E75;
  transition: all 0.25s ease;
}

.pp-point:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.pp-point-icon {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 2px solid #1D9E75;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1D9E75;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

.pp-point p {
  margin: 0;
  font-size: 0.9rem;
  color: #2c3e50;
  line-height: 1.6;
}

.popup-container {
  position: relative;
  /* IMPORTANT for positioning */
}

/* Close icon styling */
.popup-close-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f3f5f7;
  color: #1A2332;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Hover effect */
.popup-close-icon:hover {
  background: #1D9E75;
  color: #fff;
}


.industry-modern {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
}

/* GRID */
.ind-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.ind-modern-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.ind-modern-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FLOATING CARD */
.ind-floating-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #1B2E4B;
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ind-fc-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1D9E75;
}

.ind-fc-text {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* CONTENT */
.ind-modern-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.ind-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* SPLIT BOX */
.ind-split-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* COMMON BOX */
.ind-box {
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e6ecea;
  transition: all 0.3s ease;
}

.ind-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.ind-box h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.ind-box ul {
  padding-left: 16px;
}

.ind-box li {
  font-size: 0.82rem;
  margin-bottom: 8px;
  color: var(--text-muted);
}

/* COLOR VARIANTS */
.ind-box-red {
  border-left: 4px solid #ff6b6b;
  background: #fff6f6;
}

.ind-box-green {
  border-left: 4px solid #1D9E75;
  background: #f2fbf7;
}

/* CTA */
.ind-cta {
  margin-top: 24px;
  display: inline-block;
}

.ind-cta {
  background: #177A7A;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.ind-cta:hover {
  background: #136666;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(23, 122, 122, 0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ind-modern-grid {
    grid-template-columns: 1fr;
  }

  .ind-split-box {
    grid-template-columns: 1fr;
  }
}

/* ================================
   INDUSTRY MODERN SECTION
================================ */
.industry-modern {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
}

/* GRID LAYOUT */
.ind-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* ================================
   IMAGE SIDE (RIGHT)
================================ */
.ind-modern-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.ind-modern-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ind-modern-image:hover img {
  transform: scale(1.04);
}

/* FLOATING BADGE */
.ind-floating-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #1B2E4B;
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ind-fc-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1D9E75;
}

.ind-fc-text {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ================================
   CONTENT SIDE (LEFT)
================================ */
.ind-modern-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--navy);
}

.ind-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ================================
   SPLIT BOX (Challenges / Solutions)
================================ */
.ind-split-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* COMMON CARD */
.ind-box {
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e6ecea;
  transition: all 0.3s ease;
}

.ind-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.ind-box h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}

/* LIST STYLE */
.ind-box ul {
  padding-left: 0;
}

.ind-box li {
  list-style: none;
  position: relative;
  padding-left: 18px;
  font-size: 0.82rem;
  margin-bottom: 10px;
  color: var(--text-muted);
}

/* BULLET DOT */
.ind-box li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #1D9E75;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* COLOR VARIANTS */
.ind-box-red {
  border-left: 4px solid #ff6b6b;
  background: #fff6f6;
}

.ind-box-green {
  border-left: 4px solid #1D9E75;
  background: #f2fbf7;
}

/* ================================
   CTA BUTTON
================================ */
.ind-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #177A7A;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.ind-cta:hover {
  background: #136666;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(23, 122, 122, 0.3);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .ind-modern-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ind-modern-image {
    order: 2;
  }

  .ind-modern-content {
    order: 1;
  }

  .ind-split-box {
    grid-template-columns: 1fr;
  }
}

.ind-modern-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  /* content slightly bigger */
  gap: 60px;
  align-items: center;
}

/* SECTION */
.ind3-section {
  padding: 80px 0;
  background: #f3f6f5;
}

/* GRID */
.ind3-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.ind3-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.ind3-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BADGE */
.ind3-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: #1B2E4B;
  padding: 14px 18px;
  border-radius: 12px;
}

.ind3-badge-num {
  color: #1D9E75;
  font-size: 1.5rem;
  font-weight: 800;
}

.ind3-badge-text {
  color: #ffffff;
  font-size: 0.75rem;
  opacity: 0.7;
}

/* CONTENT */
.ind3-eyebrow {
  display: inline-block;
  background: #dff3ee;
  color: #1D9E75;
  font-size: 0.7rem;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}

.ind3-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1B2E4B;
  margin-bottom: 14px;
  line-height: 1.25;
}

.ind3-desc {
  font-size: 0.95rem;
  color: #5A6678;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* CARDS */
.ind3-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* CARD BASE */
.ind3-card {
  padding: 22px;
  border-radius: 16px;
  background: #ffffff;
}

.ind3-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1B2E4B;
}

.ind3-card ul {
  padding-left: 18px;
}

.ind3-card li {
  font-size: 0.82rem;
  color: #5A6678;
  margin-bottom: 10px;
}

/* RED CARD */
.ind3-card-red {
  background: #fff6f6;
  border-left: 4px solid #ff6b6b;
}

/* GREEN CARD */
.ind3-card-green {
  background: #f2fbf7;
  border-left: 4px solid #1D9E75;
}

/* BUTTON */
.ind3-btn {
  display: inline-block;
  margin-top: 26px;
  background: #177A7A;
  color: #fff;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ind3-grid {
    grid-template-columns: 1fr;
  }

  .ind3-cards {
    grid-template-columns: 1fr;
  }
}

/* ================================
   INDUSTRY SECTION MOBILE FIX
================================ */
@media (max-width: 768px) {

  .ind-modern-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  /* Ensure proper order (content first) */
  .ind-modern-content {
    order: 1;
  }

  .ind-modern-image {
    order: 2;
  }

  /* Fix heading spacing */
  .ind-modern-content h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .ind-desc {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* Stack challenge & solution cards */
  .ind-split-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .ind-box {
    padding: 18px 16px;
    border-radius: 14px;
  }

  .ind-box h4 {
    font-size: 0.95rem;
  }

  .ind-box ul li {
    font-size: 0.85rem;
  }

  /* Image styling */
  .ind-modern-image img {
    width: 100%;
    border-radius: 16px;
  }

  /* Floating card adjust */
  .ind-floating-card {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 10px 14px;
  }

  .ind-fc-num {
    font-size: 1rem;
  }

  .ind-fc-text {
    font-size: 0.7rem;
  }

  /* CTA full width */
  .ind-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 18px;
  }
}

/* ================================================================
   OUR COMPREHENSIVE SERVICES
================================================================ */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.cs-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 14px rgba(15, 30, 60, 0.07);
  border: 1px solid #e8edf5;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cs-card:hover {
  box-shadow: 0 8px 28px rgba(15, 30, 60, 0.13);
  transform: translateY(-4px);
  border-color: #1D9E75;
}

.cs-icon {
  width: 54px;
  height: 54px;
  background: #edf9f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.cs-card:hover .cs-icon {
  background: #d4f4e8;
}

.cs-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0F1E3C;
  margin: 0;
  line-height: 1.35;
}

.cs-card p {
  font-size: 0.8rem;
  color: #5a6a80;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1280px) {
  .cs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .cs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .cs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .cs-card {
    padding: 18px 16px;
  }
}

@media (max-width: 480px) {
  .cs-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SERVICES HOVER GRID ===== */
.services-hover-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* CARD */
.service-hover-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
}

/* ICON */
.service-hover-card .icon {
  font-size: 40px;
  color: var(--teal);
  margin-bottom: 20px;
}

/* TITLE */
.service-hover-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

/* HOVER CONTENT */
.service-hover-card .hover-content {
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  transition: bottom 0.4s ease;
}

/* HOVER EFFECT */
.service-hover-card:hover .hover-content {
  bottom: 0;
}

/* CARD LIFT */
.service-hover-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-hover-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-hover-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= LABOUR CODE TABLE ================= */

.lc-table-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}

.lc-table {
  display: flex;
  flex-direction: column;
}

.lc-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.lc-col {
  padding: 18px 16px;
  font-size: 0.9rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

/* Header */
.lc-head .lc-col {
  font-weight: 700;
  color: var(--teal-dark);
  font-size: 0.95rem;
}

.lc-head .left,
.lc-head .right {
  background: #2f9acb;
}

.lc-head .center {
  background: #444;
}

/* Body columns */
.lc-row .left {
  background: #eef2f6;
  font-weight: 600;
}

.lc-row .center {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.lc-row .center i {
  color: #2f9acb;
  font-size: 18px;
}

.lc-row .right {
  background: #eef2f6;
  font-weight: 600;
}

/* Footer */
.lc-note {
  background: var(--teal-dark);
  color: #fff;
  padding: 16px;
  font-size: 0.8rem;
  line-height: 1.6;
}

.lc-note span {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .lc-row {
    grid-template-columns: 1fr;
  }

  .lc-col {
    text-align: left;
  }
}

/* ================= CTA ================= */

.lc-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #243d60 100%);
  padding: 36px 28px;
  text-align: center;
}

.lc-cta-content h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.lc-cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  max-width: 520px;
  margin: 0 auto 22px;
  line-height: 1.6;
}

/* Buttons */
.lc-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lc-btn-primary {
  background: var(--teal);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: 0.25s;
}

.lc-btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(29, 158, 117, 0.3);
}

.lc-btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: 0.25s;
}

.lc-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

/* ===== Labour Code Resources ===== */
.lc-resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  transition: all 0.3s var(--ease-out);
  position: relative;
}

.lc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(29, 158, 117, 0.2);
}

.lc-icon {
  width: 64px;
  height: 64px;
  background: var(--teal-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 22px;
  color: var(--teal);
  transition: 0.3s;
}

.lc-card:hover .lc-icon {
  background: var(--teal);
  color: #fff;
}

.lc-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

/* responsive */
@media (max-width: 1024px) {
  .lc-resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .lc-resource-grid {
    grid-template-columns: 1fr;
  }
}

/* arrow icon */
.lc-card-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f4f7f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--navy);
  transition: all 0.3s var(--ease-out);
}

/* hover effect */
.lc-card:hover .lc-card-arrow {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px) scale(1.05);
}

/* optional subtle border */
.lc-card-arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--teal-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-eyebrow.light {
  background: rgba(29, 158, 117, 0.18);
}

/* =========================================================
   PREMIUM PROCESS FLOW
========================================================= */

.process-flow-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.process-line {
  position: absolute;
  top: 62px;
  left: 8%;
  right: 8%;
  height: 2px;
  background:
    linear-gradient(90deg,
      rgba(29, 158, 117, 0.10) 0%,
      rgba(29, 158, 117, 0.65) 50%,
      rgba(29, 158, 117, 0.10) 100%);
  z-index: 0;
}

.process-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 24px;
  padding: 28px;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(240, 250, 246, 0.92) 100%);

  border: 1px solid rgba(29, 158, 117, 0.12);

  box-shadow:
    0 10px 40px rgba(15, 30, 60, 0.08);

  transition:
    transform .35s cubic-bezier(.22, 1, .36, 1),
    box-shadow .35s cubic-bezier(.22, 1, .36, 1),
    border-color .35s ease;
}

.process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right,
      rgba(29, 158, 117, 0.12),
      transparent 40%);
  opacity: 0;
  transition: opacity .35s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(29, 158, 117, 0.28);

  box-shadow:
    0 20px 50px rgba(15, 30, 60, 0.14);
}

.process-card:hover::before {
  opacity: 1;
}

.process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.process-number {
  width: 48px;
  height: 48px;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--navy);

  color: #fff;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .08em;

  box-shadow:
    0 10px 24px rgba(27, 46, 75, 0.18);
}

.process-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--teal-light);

  color: var(--teal);

  border: 1px solid rgba(29, 158, 117, 0.12);

  transition:
    transform .3s ease,
    background .3s ease,
    color .3s ease;
}

.process-card:hover .process-icon {
  background: var(--teal);
  color: #fff;
  transform: rotate(-6deg) scale(1.06);
}

.process-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;

  color: var(--teal);

  margin-bottom: 14px;
}

.process-content h4 {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--navy);

  margin-bottom: 12px;
}

.process-content p {
  font-size: .84rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
  font-weight: 700;
}

/* Floating glow */
.process-card::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(29, 158, 117, 0.06);

  top: -70px;
  right: -70px;

  filter: blur(20px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1024px) {

  .process-flow-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-line {
    display: none;
  }
}

@media(max-width:768px) {

  .process-flow-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-card {
    padding: 24px;
    border-radius: 22px;
  }

  .process-top {
    margin-bottom: 22px;
  }
}

.section-eyebrow.light {
  background: rgba(29, 158, 117, 0.18);
  color: white;
}

.brand-logo-text {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.company-logo-img {
  height: 39px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-center-credit {
  text-align: center;
}

.footer-center-credit p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.footer-center-credit a {
  color: #1D9E75;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-center-credit a:hover {
  color: #ffffff;
}

.leadership-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.leadership-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 158, 117, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.leadership-head {
  margin-bottom: 60px;
}

/* Use project's standard eyebrow */
.leadership-head .section-eyebrow {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.leadership-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 1000;
  /* Matching project's .section-title */
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 800px;
}

.leadership-title span {
  color: var(--teal);
}

/* GRID */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

/* IMAGE SIDE */
.leadership-image {
  position: relative;
}

.leadership-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 0.85 / 1;
}

.leadership-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.leadership-image-wrap:hover img {
  transform: scale(1.05);
}

/* BADGE — Project Style */
.leadership-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-lg);
  z-index: 5;
}

.leadership-badge h4 {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.leadership-badge span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CONTENT SIDE */
.leadership-content {
  padding-top: 10px;
}

.leadership-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.leadership-role-sub {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 32px;
}

.leadership-content p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 22px;
  font-weight: 500;
}

/* STATS — Matching project grid cards */
.leadership-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
  max-width: 500px;
  /* Constrain width slightly */
}

.leader-stat-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg);
  padding: 16px 22px;
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease-out);
}

.leader-stat-card:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.leader-stat-card strong {
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.leader-stat-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
  line-height: 1.3;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .leadership-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .leadership-stats {
    grid-template-columns: 1fr;
  }

  .leadership-badge {
    left: 16px;
    bottom: 16px;
    right: 16px;
    padding: 16px;
  }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .leadership-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .leadership-content {
    text-align: center;
  }

  .leadership-role {
    margin-inline: auto;
  }

  .leadership-content h3 {
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .leadership-section {
    padding: 70px 0;
  }

  .leadership-head {
    margin-bottom: 50px;
    text-align: center;
  }

  .leadership-title {
    margin-inline: auto;
  }

  .leadership-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .leadership-image-wrap {
    border-radius: 30px;
  }

  .leadership-badge {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 16px;
  }

  .leader-stat-card {
    padding: 24px;
  }
}

@media (max-width: 768px) {

  .hero-ent-stats{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero-ent-stat:nth-child(3){
    margin: 0 auto;
  }

}

/* ===============================
   SERVICE NAVIGATION BAR
================================= */

.service-nav-bar {
  background: #f5f5f5;
  border-bottom: 1px solid #e4e7eb;
  padding: 14px 0;
}

.service-nav-inner {
  width: 100%;
}

/* IMPORTANT CHANGE */
.service-nav-links {
  display: flex;
  flex-wrap: wrap; /* allows 2nd line */
  justify-content: center;
  gap: 12px;

  min-width: 100%; /* remove max-content issue */
}

/* Pills */
.service-nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 22px;

  background: #f7f7f7;
  border: 1px solid #d9dee5;
  border-radius: 999px;

  color: #4c5d75;

  font-size: 14px;
  font-weight: 600;

  white-space: nowrap;

  transition: all 0.25s ease;
}

/* Hover */
/* .service-nav-links a:hover {
  background: #1D9E75;
  border-color: #1D9E75;
  color: #fff;
} */

/* Mobile */
@media (max-width: 768px) {

  .service-nav-links {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;

    scrollbar-width: none;
  }

  .service-nav-links::-webkit-scrollbar {
    display: none;
  }

  .service-nav-links a {
    flex-shrink: 0;
    font-size: 13px;
    padding: 10px 18px;
  }

}

/* ============================================================
   MPCB Consent Page — mpcb-consent.html
   ============================================================ */

/* ── Industry Category Cards ── */
.mpcb-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.mpcb-cat-card {
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  border: 1.5px solid transparent;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.mpcb-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mpcb-cat-card.red    { background: #FFF5F5; border-color: #FCA5A5; }
.mpcb-cat-card.orange { background: #FFF7ED; border-color: #FDBA74; }
.mpcb-cat-card.green  { background: #F0FDF4; border-color: #86EFAC; }
.mpcb-cat-card.white  { background: #F8FAFC; border-color: #CBD5E1; }

.mpcb-cat-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
}

.mpcb-cat-card.red    .mpcb-cat-dot { background: #EF4444; color: #fff; }
.mpcb-cat-card.orange .mpcb-cat-dot { background: #F97316; color: #fff; }
.mpcb-cat-card.green  .mpcb-cat-dot { background: #22C55E; color: #fff; }
.mpcb-cat-card.white  .mpcb-cat-dot { background: #94A3B8; color: #fff; }

.mpcb-cat-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.mpcb-cat-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .mpcb-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .mpcb-category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .mpcb-cat-card {
    padding: 14px 10px;
  }
}

/* ── Document Checklist Strip ── */
.mpcb-doc-strip {
  background: #F0FDF4;
  border: 1.5px solid #86EFAC;
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.mpcb-doc-strip h5 {
  width: 100%;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mpcb-doc-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--text);
  font-weight: 500;
}

.mpcb-doc-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .mpcb-doc-strip {
    padding: 16px;
    gap: 8px 14px;
  }
  .mpcb-doc-item {
    font-size: 0.74rem;
  }
}

/* ── MPCB page hero badge colour override (optional accent) ── */
.mpcb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(29, 158, 117, 0.14);
  color: var(--teal);
  border: 1px solid rgba(29, 158, 117, 0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 14px;
}

/* ── Regional office pills on MPCB page ── */
.mpcb-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mpcb-region-pill {
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.76rem;
  font-weight: 600;
  border: 1px solid rgba(29, 158, 117, 0.2);
  transition: background 0.18s;
}

.mpcb-region-pill:hover {
  background: var(--teal);
  color: #fff;
}

.pp-overview-img {
  position: relative;
  height: auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.pp-overview-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

