/* ========================================
   Omega Digitizing Experts — Global Styles
   Main: #143e8e | Secondary: #000000
   Font: Poppins
======================================== */

:root {
  --primary: #143e8e;
  --secondary: #000000;
  --white: #ffffff;
  --text-muted: #6b7280;
  --glass: rgba(0, 0, 0, 0.45);
  --glass-border: rgba(255, 255, 255, 0.12);
  --font: "Poppins", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--secondary);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   Top Utility Bar
======================================== */

.top-bar {
  background: var(--secondary);
  color: var(--white);
  font-size: 0.8125rem;
  padding: 0.55rem 1.5rem;
}

.top-bar__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar__left,
.top-bar__right,
.top-bar__center {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.top-bar a:hover {
  color: #c7d2fe;
}

.top-bar__center {
  font-weight: 500;
}

.top-bar__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ========================================
   Main Header / Nav
======================================== */

.header {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
}

.logo__tag {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.nav > a,
.nav-dropdown__trigger {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  padding: 0.4rem 0.55rem;
  position: relative;
  transition: color 0.2s ease;
}

.nav > a:hover,
.nav > a.active,
.nav-dropdown__trigger:hover,
.nav-dropdown:hover .nav-dropdown__trigger {
  color: var(--primary);
}

.nav > a.active::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown__trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown__trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
  padding: 0.45rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1100;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: #374151;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown__menu a:hover {
  background: rgba(20, 62, 142, 0.08);
  color: var(--primary);
}

.mobile-nav__dropdown {
  border-bottom: 1px solid #f3f4f6;
}

.mobile-nav__dropdown-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  text-align: left;
}

.mobile-nav__dropdown-trigger svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.mobile-nav__dropdown.is-open .mobile-nav__dropdown-trigger {
  color: var(--primary);
}

.mobile-nav__dropdown.is-open .mobile-nav__dropdown-trigger svg {
  transform: rotate(180deg);
}

.mobile-nav__dropdown-menu {
  display: none;
  padding: 0 0.5rem 0.65rem 0.85rem;
}

.mobile-nav__dropdown.is-open .mobile-nav__dropdown-menu {
  display: block;
}

.mobile-nav__dropdown-menu a {
  display: block;
  padding: 0.55rem 0.35rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #6b7280;
  border-bottom: none;
}

.mobile-nav__dropdown-menu a:hover {
  color: var(--primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.social-links a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.social-links a svg {
  width: 18px;
  height: 18px;
}

.social-links .wa {
  color: var(--primary);
}

.social-links .ig {
  color: #e1306c;
}

.social-links .fb {
  color: #1877f2;
}

.auth-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #374151;
}

.auth-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s ease;
}

.auth-links a:hover {
  color: var(--primary);
}

.auth-links svg {
  width: 14px;
  height: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
}

.btn--primary:hover {
  background: #0f3170;
  box-shadow: 0 8px 20px rgba(20, 62, 142, 0.35);
}

.btn--hero-primary {
  background: var(--primary);
  color: var(--white);
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
}

.btn--hero-primary:hover {
  background: #0f3170;
  box-shadow: 0 8px 20px rgba(20, 62, 142, 0.35);
}

.btn--hero-secondary {
  background: var(--secondary);
  color: var(--white);
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--hero-secondary:hover {
  background: #1a1a1a;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  background: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.menu-toggle:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.menu-toggle__open {
  display: block;
}

.menu-toggle__close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close {
  display: block;
}

.menu-toggle[aria-expanded="true"] {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ========================================
   Hero Section
======================================== */

.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  display: flex;
  flex-direction: column;
  color: var(--white);
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 2rem;
}

/* --- Infinite sliding service boxes --- */

.service-marquee {
  overflow: hidden;
  width: 100%;
  margin-bottom: 2.5rem;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 4%,
    black 96%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 4%,
    black 96%,
    transparent
  );
}

.service-marquee__track {
  display: flex;
  width: max-content;
  gap: 0.85rem;
  animation: marquee-scroll 40s linear infinite;
}

.service-marquee:hover .service-marquee__track {
  animation-play-state: paused;
}

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

.service-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 0.65rem 1rem 0.65rem 0.65rem;
  min-width: 210px;
  flex-shrink: 0;
}

.service-card__img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--secondary);
}

.service-card__title {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}

.service-card__sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.15rem;
}

/* --- Hero main body --- */

.hero__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 0 2rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.65rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
}

.trust-badge__stars {
  color: #fbbf24;
  letter-spacing: 0.05em;
}

.trust-badge__sep {
  color: rgba(255, 255, 255, 0.35);
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.hero__title-line {
  display: block;
  color: var(--white);
}

.hero__title-accent {
  display: block;
  color: var(--primary);
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero__checks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

.hero__checks span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero__checks .check {
  color: var(--primary);
  font-weight: 700;
}

/* --- Stats grid --- */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
  width: 100%;
  margin-top: auto;
}

.stat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 1.15rem 0.75rem;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.stat-card:hover {
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.22);
}

.stat-card__icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 0.65rem;
  color: rgba(255, 255, 255, 0.9);
}

.stat-card__icon svg {
  width: 100%;
  height: 100%;
}

.stat-card__value {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.stat-card__label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

/* ========================================
   Floating Action Buttons
======================================== */

.float-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.float-quote {
  background: var(--white);
  color: var(--secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.float-wa {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(20, 62, 142, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-wa:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 28px rgba(20, 62, 142, 0.5);
}

.float-wa svg {
  width: 26px;
  height: 26px;
}

/* ========================================
   Mobile Nav Drawer
======================================== */

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--white);
  padding: 1.25rem;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
}

.mobile-nav.open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__close {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-bottom: 1rem;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav__links a {
  padding: 0.75rem 0.5rem;
  font-weight: 500;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}

.mobile-nav__links a.active,
.mobile-nav__links a:hover {
  color: var(--primary);
}

.mobile-nav__cta {
  margin-top: 1.25rem;
  width: 100%;
}

/* ========================================
   Stats Counter Section
======================================== */

.stats-section {
  position: relative;
  background: #f5f7fb;
  color: var(--secondary);
  padding: 5rem 1.5rem;
  overflow: hidden;
  border-top: 4px solid var(--primary);
}

.stats-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.stats-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.stats-section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(20, 62, 142, 0.25);
  border-radius: 999px;
  background: rgba(20, 62, 142, 0.08);
}

.stats-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  color: var(--secondary);
}

.stats-section__subtitle {
  font-size: 1rem;
  color: #5b6472;
  line-height: 1.6;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(20, 62, 142, 0.06);
}

.counter-item {
  text-align: center;
  padding: 2.25rem 1.25rem;
  border-right: 1px solid #e2e8f0;
  transition: background 0.25s ease;
}

.counter-item:last-child {
  border-right: none;
}

.counter-item:hover {
  background: rgba(20, 62, 142, 0.05);
}

.counter-item__icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.counter-item__icon svg {
  width: 100%;
  height: 100%;
}

.counter-item__value {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-bottom: 0.4rem;
  font-variant-numeric: tabular-nums;
}

.counter-item__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #5b6472;
  line-height: 1.35;
}

/* ========================================
   Services Slider Section
======================================== */

.services-section {
  background: #f5f7fb;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}

.services-section__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.75rem;
}

.services-section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(20, 62, 142, 0.25);
  border-radius: 999px;
  background: rgba(20, 62, 142, 0.08);
}

.services-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--secondary);
  margin-bottom: 0.85rem;
}

.services-section__subtitle {
  font-size: 1rem;
  color: #5b6472;
  line-height: 1.6;
}

.services-slider {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.services-slider__viewport {
  overflow: hidden;
  width: 100%;
  padding: 0.25rem 0 0.5rem;
}

.services-slider__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.svc-card {
  position: relative;
  /* ~4.5 cards across viewport → side cards half-cut */
  flex: 0 0 calc((100vw - 4rem) / 4.5);
  max-width: calc((100vw - 4rem) / 4.5);
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  background: var(--secondary);
  isolation: isolate;
}

.svc-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svc-card:hover .svc-card__img {
  transform: scale(1.06);
}

.svc-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 1;
}

.svc-card__badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.svc-card__badge svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.svc-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.25rem 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.svc-card__title {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.svc-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.svc-card__btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.services-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.75rem;
}

.services-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c5cdd8;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.services-slider__dot.is-active {
  width: 28px;
  background: var(--primary);
}

.services-slider__dot:hover:not(.is-active) {
  background: #9aa6b5;
}

/* ========================================
   Features Section
======================================== */

.features-section {
  background: #ffffff;
  padding: 5rem 1.5rem;
}

.features-section__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.features-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.features-section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(20, 62, 142, 0.25);
  border-radius: 999px;
  background: rgba(20, 62, 142, 0.08);
}

.features-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--secondary);
  margin-bottom: 0.85rem;
}

.features-section__subtitle {
  font-size: 1rem;
  color: #5b6472;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  --accent: var(--primary);
  --accent-soft: rgba(20, 62, 142, 0.1);
  background: #f8fafc;
  border: 1px solid #e8eef5;
  border-radius: 18px;
  padding: 1.6rem 1.5rem 1.7rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-card:hover {
  border-color: rgba(20, 62, 142, 0.3);
  box-shadow: 0 14px 36px rgba(20, 62, 142, 0.08);
  transform: translateY(-3px);
}

.feature-card--blue {
  --accent: #143e8e;
  --accent-soft: rgba(20, 62, 142, 0.12);
}

.feature-card--navy {
  --accent: #0b2a63;
  --accent-soft: rgba(11, 42, 99, 0.12);
}

.feature-card--slate {
  --accent: #334155;
  --accent-soft: rgba(51, 65, 85, 0.12);
}

.feature-card--indigo {
  --accent: #1e3a8a;
  --accent-soft: rgba(30, 58, 138, 0.12);
}

.feature-card--steel {
  --accent: #1d4f91;
  --accent-soft: rgba(29, 79, 145, 0.12);
}

.feature-card--dark {
  --accent: #000000;
  --accent-soft: rgba(0, 0, 0, 0.08);
}

.feature-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
}

.feature-card__badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  padding-top: 0.2rem;
}

.feature-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 0.55rem;
}

.feature-card__text {
  font-size: 0.9rem;
  color: #5b6472;
  line-height: 1.65;
}

/* ========================================
   About / Before & After Section
======================================== */

.about-section {
  background: #f5f7fb;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.about-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.about-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.about-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-section__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.about-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
}

.about-section__title-dark {
  display: block;
  color: var(--secondary);
}

.about-section__title-accent {
  display: block;
  color: var(--primary);
}

.about-panel {
  background: rgba(20, 62, 142, 0.05);
  border: 1px solid rgba(20, 62, 142, 0.1);
  border-radius: 18px;
  padding: 1.5rem 1.4rem;
}

.about-panel__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.15rem;
}

.about-panel__list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.about-panel__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.about-panel__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid #e2e8f0;
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.about-panel__icon svg {
  width: 18px;
  height: 18px;
}

.about-panel__item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.2rem;
}

.about-panel__item p {
  font-size: 0.84rem;
  color: #5b6472;
  line-height: 1.55;
}

/* Before / After compare */
.ba-compare {
  width: 100%;
}

.ba-compare__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(20, 62, 142, 0.12);
  border: 1px solid #e8eef5;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}

.ba-compare__frame.is-dragging {
  cursor: grabbing;
}

.ba-compare__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-compare__before-wrap {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.ba-compare__img--before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left center;
}

.ba-compare__label {
  position: absolute;
  top: 1rem;
  z-index: 4;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  pointer-events: none;
}

.ba-compare__label--before {
  left: 1rem;
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
}

.ba-compare__label--after {
  right: 1rem;
  background: var(--primary);
  color: var(--white);
}

.ba-compare__slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 5;
  width: 44px;
  margin-left: -22px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.ba-compare__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: var(--white);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

.ba-compare__handle {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: var(--primary);
}

.ba-compare__handle svg {
  width: 14px;
  height: 14px;
}

.ba-compare__handle svg:first-child {
  margin-right: -3px;
}

.ba-compare__handle svg:last-child {
  margin-left: -3px;
}

/* ========================================
   Process Section
======================================== */

.process-section {
  background: var(--white);
  padding: 5rem 1.5rem;
}

.process-section__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.process-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.25rem;
}

.process-section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(20, 62, 142, 0.25);
  border-radius: 999px;
  background: rgba(20, 62, 142, 0.08);
}

.process-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--secondary);
  margin-bottom: 0.85rem;
}

.process-section__subtitle {
  font-size: 1rem;
  color: #5b6472;
  line-height: 1.6;
}

.process-flow {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: none;
  margin-bottom: 2.75rem;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 0.65rem;
}

.process-step__rail {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  margin-bottom: 1.35rem;
}

.process-step__num {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 6px rgba(20, 62, 142, 0.12);
}

.process-step__line {
  position: absolute;
  top: 50%;
  left: calc(50% + 26px);
  right: calc(-50% + 26px);
  height: 3px;
  background: #d7e0ef;
  transform: translateY(-50%);
  z-index: 1;
}

.process-step__line::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--primary);
  border-top: 2px solid var(--primary);
  transform: translateY(-50%) rotate(45deg);
}

.process-step:last-child .process-step__line {
  display: none;
}

.process-step__card {
  background: #f5f7fb;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1.5rem 1.25rem 1.6rem;
  text-align: center;
  height: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.process-step:hover .process-step__card {
  border-color: rgba(20, 62, 142, 0.35);
  box-shadow: 0 14px 32px rgba(20, 62, 142, 0.08);
  transform: translateY(-4px);
}

.process-step:hover .process-step__num {
  background: var(--secondary);
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.08);
}

.process-step__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #e2e8f0;
  color: var(--primary);
  display: grid;
  place-items: center;
}

.process-step__icon svg {
  width: 22px;
  height: 22px;
}

.process-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.55rem;
  letter-spacing: -0.015em;
}

.process-step__text {
  font-size: 0.88rem;
  color: #5b6472;
  line-height: 1.6;
}

.process-section__cta {
  text-align: center;
}

.process-section__btn {
  padding: 0.9rem 1.75rem;
  font-size: 0.95rem;
}

.process-section__btn svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   Testimonials Section
======================================== */

.testimonials-section {
  background: #f5f7fb;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.testimonials-section__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.75rem;
}

.testimonials-section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(20, 62, 142, 0.25);
  border-radius: 999px;
  background: rgba(20, 62, 142, 0.08);
}

.testimonials-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--secondary);
  margin-bottom: 0.85rem;
}

.testimonials-section__subtitle {
  font-size: 1rem;
  color: #5b6472;
  line-height: 1.6;
}

.testimonials-slider__viewport {
  overflow: hidden;
}

.testimonials-slider__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  border-color: rgba(20, 62, 142, 0.3);
  box-shadow: 0 14px 34px rgba(20, 62, 142, 0.08);
}

.testimonial-card__stars {
  color: var(--primary);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #334155;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px solid #eef2f7;
}

.testimonial-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.3;
}

.testimonial-card__author span {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 0.15rem;
  line-height: 1.35;
}

.testimonials-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.75rem;
}

.testimonials-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c5cdd8;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.testimonials-slider__dot.is-active {
  width: 28px;
  background: var(--primary);
}

.testimonials-slider__dot:hover:not(.is-active) {
  background: #9aa6b5;
}

/* ========================================
   FAQ Section
======================================== */

.faq-section {
  background: var(--white);
  padding: 5rem 1.5rem;
}

.faq-section__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.faq-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.75rem;
}

.faq-section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(20, 62, 142, 0.25);
  border-radius: 999px;
  background: rgba(20, 62, 142, 0.08);
}

.faq-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--secondary);
  margin-bottom: 0.85rem;
}

.faq-section__subtitle {
  font-size: 1rem;
  color: #5b6472;
  line-height: 1.6;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  align-items: start;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #f5f7fb;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover,
.faq-item.is-open {
  border-color: rgba(20, 62, 142, 0.3);
}

.faq-item.is-open {
  background: var(--white);
  box-shadow: 0 10px 28px rgba(20, 62, 142, 0.06);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.4;
  cursor: pointer;
}

.faq-item__question:hover {
  color: var(--primary);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(20, 62, 142, 0.1);
  color: var(--primary);
  flex-shrink: 0;
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-item__icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-item__icon {
  background: var(--primary);
  color: var(--white);
}

.faq-item.is-open .faq-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.25rem;
  font-size: 0.9rem;
  color: #5b6472;
  line-height: 1.65;
  min-height: 0;
}

.faq-item.is-open .faq-item__answer > p {
  padding-bottom: 1.2rem;
}

/* ========================================
   CTA Section
======================================== */

.cta-section {
  background: var(--primary);
  color: var(--white);
  padding: 4.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.06);
  top: -140px;
  right: -100px;
  pointer-events: none;
}

.cta-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 28px solid rgba(255, 255, 255, 0.05);
  bottom: -120px;
  left: -80px;
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.cta-section__title {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 auto 1rem;
  max-width: 18ch;
}

.cta-section__text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 42ch;
  margin: 0 auto 1.75rem;
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.cta-section__btn {
  padding: 0.95rem 1.7rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
}

.cta-section__btn--primary {
  background: var(--white);
  color: var(--primary);
}

.cta-section__btn--primary:hover {
  background: #f0f4fa;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.cta-section__btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.cta-section__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.cta-section__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  list-style: none;
  justify-content: center;
}

.cta-section__perks li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.cta-section__perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
}

/* ========================================
   Portfolio Gallery Section
======================================== */

.gallery-section {
  background: #ffffff;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}

.gallery-section__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gallery-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.75rem;
}

.gallery-section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(20, 62, 142, 0.25);
  border-radius: 999px;
  background: rgba(20, 62, 142, 0.08);
}

.gallery-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--secondary);
  margin-bottom: 0.85rem;
}

.gallery-section__subtitle {
  font-size: 1rem;
  color: #5b6472;
  line-height: 1.6;
}

.gallery-card.svc-card {
  aspect-ratio: auto;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.gallery-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background: #e8edf5;
}

.gallery-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-card__title {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-align: center;
  padding: 0 0.25rem;
}

/* ========================================
   Apparel Page
======================================== */

.apparel-section {
  background: #ffffff;
  padding: 4.5rem 0 5rem;
}

.apparel-section__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.apparel-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.75rem;
}

.apparel-section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(20, 62, 142, 0.25);
  border-radius: 999px;
  background: rgba(20, 62, 142, 0.08);
}

.apparel-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--secondary);
  margin-bottom: 0.85rem;
}

.apparel-section__subtitle {
  font-size: 1rem;
  color: #5b6472;
  line-height: 1.6;
}

.apparel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem 1.35rem;
}

.apparel-item {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.apparel-item__media {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background: #e8edf5;
}

.apparel-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.apparel-item:hover .apparel-item__img {
  transform: scale(1.04);
}

.apparel-item__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

@media (max-width: 1200px) {
  .apparel-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .apparel-section {
    padding: 3.5rem 0 3.5rem;
  }

  .apparel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.35rem 1rem;
  }
}

@media (max-width: 480px) {
  .apparel-section__header {
    margin-bottom: 2rem;
  }

  .apparel-item__name {
    font-size: 0.9375rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .apparel-item__img {
    transition: none;
  }
}

/* ========================================
   Blog Listing
======================================== */

.blog-section {
  background: #ffffff;
  padding: 4.5rem 0 5rem;
}

.blog-section__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.blog-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.75rem;
}

.blog-section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(20, 62, 142, 0.25);
  border-radius: 999px;
  background: rgba(20, 62, 142, 0.08);
}

.blog-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--secondary);
  margin-bottom: 0.85rem;
}

.blog-section__subtitle {
  font-size: 1rem;
  color: #5b6472;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e8eef5;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 62, 142, 0.06);
}

.blog-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8edf5;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.04);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem 1.25rem 1.5rem;
  flex: 1;
}

.blog-card__date {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6b7280;
}

.blog-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--secondary);
}

.blog-card__title a:hover {
  color: var(--primary);
}

.blog-card__excerpt {
  font-size: 0.9375rem;
  color: #5b6472;
  line-height: 1.6;
  flex: 1;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.blog-card__link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ========================================
   Blog Detail
======================================== */

.blog-detail {
  background: #ffffff;
  padding: 3.5rem 0 5rem;
}

.blog-detail__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.blog-detail__meta {
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.blog-detail__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #e8edf5;
  margin-bottom: 2rem;
}

.blog-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail__body {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.blog-detail__body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #374151;
}

.blog-detail__back {
  display: inline-flex;
  margin-top: 2.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
}

.blog-detail__back:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 3.5rem 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-detail {
    padding: 2.75rem 0 3.5rem;
  }

  .blog-detail__body p {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-card__img {
    transition: none;
  }
}

/* ========================================
   Pricing Page
======================================== */

.pricing-section {
  background: #f5f7fb;
  padding: 4.5rem 0 5rem;
}

.pricing-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pricing-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.75rem;
}

.pricing-section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(20, 62, 142, 0.25);
  border-radius: 999px;
  background: rgba(20, 62, 142, 0.08);
}

.pricing-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--secondary);
  margin-bottom: 0.85rem;
}

.pricing-section__subtitle {
  font-size: 1rem;
  color: #5b6472;
  line-height: 1.6;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing-card {
  --pricing-accent: var(--primary);
  --pricing-accent-soft: rgba(20, 62, 142, 0.08);
  --pricing-accent-border: rgba(20, 62, 142, 0.18);
  background: var(--white);
  border: 1px solid #e5eaf2;
  border-top: 4px solid var(--pricing-accent);
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: 0 12px 36px rgba(20, 62, 142, 0.07);
}

.pricing-card--blue {
  --pricing-accent: #143e8e;
  --pricing-accent-soft: rgba(20, 62, 142, 0.08);
  --pricing-accent-border: rgba(20, 62, 142, 0.18);
}

.pricing-card--navy {
  --pricing-accent: #0f2d6b;
  --pricing-accent-soft: rgba(15, 45, 107, 0.08);
  --pricing-accent-border: rgba(15, 45, 107, 0.18);
}

.pricing-card--slate {
  --pricing-accent: #334155;
  --pricing-accent-soft: rgba(51, 65, 85, 0.08);
  --pricing-accent-border: rgba(51, 65, 85, 0.18);
}

.pricing-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #eef2f7;
}

.pricing-card__intro {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.pricing-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--pricing-accent);
  color: var(--white);
}

.pricing-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.pricing-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--secondary);
  line-height: 1.25;
}

.pricing-card__subtitle {
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.pricing-card__cta {
  flex-shrink: 0;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  padding: 0.75rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.15s ease, transform 0.15s ease;
}

.pricing-card__cta:hover {
  background: #0f3170;
  transform: translateY(-1px);
}

.pricing-card__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.pricing-tier {
  padding: 0.35rem 1.15rem 0.85rem;
  text-align: left;
}

.pricing-tier + .pricing-tier {
  border-left: 1px solid #eef2f7;
}

.pricing-tier__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pricing-accent);
  background: var(--pricing-accent-soft);
  border: 1px solid var(--pricing-accent-border);
  margin-bottom: 0.85rem;
}

.pricing-tier__price {
  font-size: clamp(1.65rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--secondary);
  line-height: 1.1;
  margin-bottom: 0.45rem;
}

.pricing-tier__price span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280;
  margin-left: 0.2rem;
}

.pricing-tier__detail {
  font-size: 0.9rem;
  color: #5b6472;
  line-height: 1.45;
  margin-bottom: 0.9rem;
  min-height: 2.6em;
}

.pricing-tier__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pricing-tier__rush,
.pricing-tier__time {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}

.pricing-tier__rush {
  color: #166534;
  background: #dcfce7;
}

.pricing-tier__time {
  color: #4b5563;
  background: #f3f4f6;
}

.pricing-card__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid #eef2f7;
}

.pricing-card__perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pricing-accent);
  background: var(--pricing-accent-soft);
  border: 1px solid var(--pricing-accent-border);
}

.pricing-card__perks li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--pricing-accent);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .pricing-card__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-card__cta {
    width: 100%;
    justify-content: center;
  }

  .pricing-card__tiers {
    grid-template-columns: 1fr;
  }

  .pricing-tier {
    padding: 1rem 0;
  }

  .pricing-tier + .pricing-tier {
    border-left: none;
    border-top: 1px solid #eef2f7;
  }

  .pricing-tier__detail {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 3.5rem 0;
  }

  .pricing-card {
    padding: 1.25rem 1.1rem 1.1rem;
  }

  .pricing-card__title {
    font-size: 1.1rem;
  }
}

/* ========================================
   Page Banner / Breadcrumb
======================================== */

.page-banner {
  background: var(--primary);
  color: var(--white);
  padding: 2.75rem 1.5rem;
  text-align: center;
}

.page-banner__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.page-banner__title {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
  color: var(--white);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumb__current {
  color: var(--white);
}

.about-static-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(20, 62, 142, 0.12);
  border: 1px solid #e8eef5;
}

.about-static-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section--alt {
  background: var(--white);
}

.about-section__grid--reverse {
  direction: rtl;
}

.about-section__grid--reverse > * {
  direction: ltr;
}

.nav-dropdown__menu a.is-current {
  background: rgba(20, 62, 142, 0.08);
  color: var(--primary);
}

.nav-dropdown__trigger.active {
  color: var(--primary);
}

/* ========================================
   Contact Page
======================================== */

.contact-info-section {
  background: #f5f7fb;
  padding: 4.5rem 1.5rem;
}

.contact-info-section__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

.contact-info-section__eyebrow,
.contact-form-section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(20, 62, 142, 0.25);
  border-radius: 999px;
  background: rgba(20, 62, 142, 0.08);
}

.contact-info-section__title,
.contact-form-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--secondary);
  margin-bottom: 0.85rem;
}

.contact-info-section__subtitle,
.contact-form-section__subtitle {
  font-size: 1rem;
  color: #5b6472;
  line-height: 1.6;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1.85rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

a.contact-card:hover {
  border-color: rgba(20, 62, 142, 0.35);
  box-shadow: 0 14px 34px rgba(20, 62, 142, 0.1);
  transform: translateY(-4px);
}

.contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(20, 62, 142, 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
}

.contact-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.45rem;
}

.contact-card__text {
  font-size: 0.92rem;
  color: #5b6472;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.contact-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.contact-form-section {
  background: var(--white);
  padding: 4.5rem 1.5rem 5rem;
}

.contact-form-section__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-section__perks {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-form-section__perks li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
}

.contact-form-section__perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.contact-form {
  background: #f5f7fb;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1.75rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form__field {
  margin-bottom: 1rem;
}

.contact-form__field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--secondary);
  background: var(--white);
  border: 1px solid #d5dde8;
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 62, 142, 0.12);
}

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

.contact-form__submit {
  width: 100%;
  padding: 0.9rem 1.5rem;
  margin-top: 0.35rem;
}

/* ========================================
   Footer
======================================== */

.footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.78);
  padding: 4.25rem 1.5rem 0;
}

.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1.1fr 1.1fr;
  gap: 2.5rem 2rem;
  padding-bottom: 3rem;
}

.logo--footer .logo__name {
  color: var(--white);
}

.logo--footer .logo__tag {
  color: #93b0e0;
}

.footer__about {
  margin-top: 1.15rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 34ch;
}

.footer__heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.15rem;
  letter-spacing: -0.01em;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer__links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.35rem;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer__contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--primary);
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer__contact a:hover {
  color: var(--white);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer__social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer__social a svg {
  width: 16px;
  height: 16px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem 1.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 1200px) {
  .nav {
    display: none;
  }

  .auth-links {
    display: none;
  }

  .social-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: block;
  }

  body.menu-open {
    overflow: hidden;
  }

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

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

  .counter-item:nth-child(3n) {
    border-right: none;
  }

  .counter-item:nth-child(n + 4) {
    border-top: 1px solid #e2e8f0;
  }

  .svc-card {
    flex: 0 0 calc((100vw - 3rem) / 3.4);
    max-width: calc((100vw - 3rem) / 3.4);
  }

  .gallery-section {
    padding: 4rem 0 3.5rem;
  }

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

  .about-section__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-section__grid--reverse {
    direction: ltr;
  }

  .about-section__media {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .process-flow {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }

  .process-step:nth-child(2) .process-step__line {
    display: none;
  }

  .process-step:nth-child(2n) .process-step__line {
    display: none;
  }

  .process-step:nth-child(odd) .process-step__line {
    display: block;
  }

  .process-step:last-child .process-step__line {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 1.25rem) / 2);
  }
}

@media (max-width: 768px) {
  .top-bar__center {
    order: -1;
    width: 100%;
    justify-content: center;
    font-size: 0.75rem;
  }

  .top-bar__inner {
    justify-content: center;
  }

  .header__quote-btn {
    display: none;
  }

  .header__inner {
    padding: 0.65rem 1rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero__content {
    padding: 1rem 1rem 1.5rem;
  }

  .service-marquee {
    margin-bottom: 1.75rem;
  }

  .hero__title {
    margin-bottom: 1.25rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .stat-card {
    padding: 0.9rem 0.5rem;
  }

  .stat-card__value {
    font-size: 1.15rem;
  }

  .float-quote {
    display: none;
  }

  .stats-section {
    padding: 3.5rem 1rem;
  }

  .stats-section__header {
    margin-bottom: 2.25rem;
  }

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

  .counter-item {
    padding: 1.75rem 1rem;
  }

  .counter-item:nth-child(3n) {
    border-right: 1px solid #e2e8f0;
  }

  .counter-item:nth-child(2n) {
    border-right: none;
  }

  .counter-item:nth-child(n + 3) {
    border-top: 1px solid #e2e8f0;
  }

  .services-section {
    padding: 3.5rem 0 3rem;
  }

  .services-section__header {
    margin-bottom: 2rem;
  }

  .gallery-section {
    padding: 3.5rem 0 3rem;
  }

  .gallery-section__header {
    margin-bottom: 2rem;
  }

  .svc-card {
    flex: 0 0 calc((100vw - 2rem) / 2.35);
    max-width: calc((100vw - 2rem) / 2.35);
  }

  .features-section {
    padding: 3.5rem 1rem;
  }

  .features-section__header {
    margin-bottom: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-section {
    padding: 3.5rem 1rem;
  }

  .about-section__title {
    margin-bottom: 1.35rem;
  }

  .about-panel {
    padding: 1.25rem 1.1rem;
  }

  .process-section {
    padding: 3.5rem 1rem;
  }

  .process-section__header {
    margin-bottom: 2.25rem;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    padding: 0;
    padding-left: 0.25rem;
  }

  .process-step__rail {
    justify-content: flex-start;
    height: auto;
    min-height: 52px;
    margin-bottom: 0.85rem;
  }

  .process-step__line {
    left: 26px;
    right: auto;
    top: 52px;
    bottom: -0.85rem;
    width: 3px;
    height: auto;
    transform: none;
  }

  .process-step__line::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(-50%) rotate(135deg);
  }

  .process-step:nth-child(odd) .process-step__line,
  .process-step:nth-child(2n) .process-step__line {
    display: block;
  }

  .process-step:last-child .process-step__line {
    display: none;
  }

  .process-step__card {
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon title"
      "text text";
    column-gap: 0.85rem;
    row-gap: 0.35rem;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .process-step:last-child .process-step__card {
    margin-bottom: 0;
  }

  .process-step__icon {
    grid-area: icon;
    margin: 0;
    width: 44px;
    height: 44px;
  }

  .process-step__title {
    grid-area: title;
    align-self: center;
    margin-bottom: 0;
  }

  .process-step__text {
    grid-area: text;
  }

  .process-step:hover .process-step__card {
    transform: none;
  }

  .testimonials-section {
    padding: 3.5rem 1rem;
  }

  .testimonials-section__header {
    margin-bottom: 2rem;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-height: 0;
  }

  .faq-section {
    padding: 3.5rem 1rem;
  }

  .faq-section__header {
    margin-bottom: 2rem;
  }

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

  .cta-section {
    padding: 3.5rem 1rem;
  }

  .cta-section__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .page-banner {
    padding: 2rem 1rem;
  }

  .contact-info-section,
  .contact-form-section {
    padding: 3.25rem 1rem;
  }

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

  .contact-form-section__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer {
    padding: 3.25rem 1rem 0;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__about {
    max-width: none;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .trust-badge {
    border-radius: 14px;
    font-size: 0.75rem;
  }

  .svc-card {
    flex: 0 0 calc((100vw - 1rem) / 1.35);
    max-width: calc((100vw - 1rem) / 1.35);
  }

  .svc-card__title {
    font-size: 1.05rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-marquee__track {
    animation: none;
  }

  .services-slider__track,
  .testimonials-slider__track {
    transition: none;
  }

  .gallery-card__img {
    transition: none;
  }

  .quote-popup,
  .quote-popup__dialog {
    transition: none;
  }
}

/* ========================================
   Homepage Quote Popup
======================================== */

body.quote-popup-open {
  overflow: hidden;
}

.quote-popup {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.quote-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.quote-popup[hidden] {
  display: none !important;
}

.quote-popup.is-open[hidden] {
  display: flex !important;
}

.quote-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.quote-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  background: var(--white);
  border-radius: 22px;
  padding: 2.25rem 1.75rem 1.75rem;
  text-align: center;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.28s ease;
}

.quote-popup.is-open .quote-popup__dialog {
  transform: translateY(0) scale(1);
}

.quote-popup__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}

.quote-popup__close:hover {
  color: #4b5563;
  background: #f3f4f6;
}

.quote-popup__close svg {
  width: 18px;
  height: 18px;
}

.quote-popup__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
}

.quote-popup__icon svg {
  width: 100%;
  height: 100%;
}

.quote-popup__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.quote-popup__text {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #6b7280;
  margin: 0 auto 1.5rem;
  max-width: 20rem;
}

.quote-popup__text strong {
  color: #374151;
  font-weight: 700;
}

.quote-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quote-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 3.15rem;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  transition: background 0.15s ease, transform 0.15s ease;
}

.quote-popup__btn:hover {
  transform: translateY(-1px);
}

.quote-popup__btn--primary {
  background: var(--primary);
}

.quote-popup__btn--primary:hover {
  background: #0f3170;
}

.quote-popup__btn--whatsapp {
  background: #25d366;
}

.quote-popup__btn--whatsapp:hover {
  background: #1ebe57;
}

.quote-popup__whatsapp-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.quote-popup__dismiss {
  margin-top: 1.15rem;
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.quote-popup__dismiss:hover {
  color: #6b7280;
}

@media (max-width: 480px) {
  .quote-popup__dialog {
    padding: 2rem 1.25rem 1.5rem;
    border-radius: 18px;
  }

  .quote-popup__title {
    font-size: 1.35rem;
  }
}
