/* =============================================================================
   CESET Multiservices — clean professional design
   ============================================================================= */

:root {
  --brand: #434ea0;
  --brand-dark: #2f3780;
  --brand-deeper: #1e2558;
  --ink: #12163a;
  --accent: #e31e24;
  --accent-hover: #ff333a;
  --white: #ffffff;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --soft: rgba(255, 255, 255, 0.58);
  --line: rgba(255, 255, 255, 0.16);
  --gold: #e31e24;
  --gold-bright: #ff333a;
  --gold-dim: #c4181e;
  --black: #1e2558;
  --black-deep: #12163a;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-sans: "Manrope", system-ui, sans-serif;
  --nav-h: 4.25rem;
  --max: 1100px;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Remove old decorative chrome */
.bg-glow,
.frame-left,
.frame-right,
.gold-corner,
.cursor {
  display: none !important;
}

body.has-custom-cursor,
body.has-custom-cursor * {
  cursor: auto !important;
}

html {
  scroll-padding-top: calc(var(--nav-h) + 0.75rem);
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  background:
    radial-gradient(ellipse 100% 60% at 50% -20%, rgba(67, 78, 160, 0.55), transparent 60%),
    linear-gradient(180deg, #12163a 0%, #1e2558 45%, #2a3270 100%);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ========== NAV ========== */
.nav {
  height: var(--nav-h) !important;
  background: rgba(18, 22, 58, 0.88) !important;
  border-bottom: 1px solid transparent !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none !important;
}

.nav.scrolled {
  background: rgba(18, 22, 58, 0.97) !important;
  border-bottom-color: var(--line) !important;
}

.nav-inner {
  max-width: var(--max);
}

.nav-brand img {
  height: 2.5rem !important;
  max-width: 11.5rem !important;
  filter: none !important;
}

.nav-links {
  gap: 1.35rem !important;
}

.nav-links a {
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  color: var(--soft) !important;
}

.nav-links a::after {
  display: none !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white) !important;
}

.nav-cta.btn,
.nav .btn-sm {
  min-height: 2.4rem;
  padding: 0.55rem 1rem !important;
  border-radius: var(--radius) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
}

.nav-toggle {
  border: 1px solid var(--line) !important;
  color: var(--white) !important;
  border-radius: var(--radius);
}

.nav-mobile-panel {
  background: #161b45 !important;
}

.nav-mobile-links a {
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid var(--line);
  text-transform: none;
  letter-spacing: 0;
}

/* ========== BUTTONS ========== */
.btn {
  min-height: 3rem;
  padding: 0.8rem 1.35rem !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-sans) !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  border-width: 1px !important;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease !important;
  filter: none !important;
}

.btn:hover {
  filter: none !important;
}

.btn-primary,
.btn.btn-primary {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.btn-primary:hover,
.btn.btn-primary:hover {
  background: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
  transform: translateY(-1px) !important;
}

.btn-ghost,
.btn.btn-ghost {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #fff !important;
}

.btn-ghost:hover,
.btn.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #fff !important;
  transform: translateY(-1px) !important;
}

.btn-whatsapp {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #053018 !important;
}

/* ========== HERO ========== */
.hero {
  min-height: 92svh;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  padding: calc(var(--nav-h) + 3rem) clamp(1rem, 5vw, 3.5rem) 4rem !important;
}

.hero.is-content-left,
.hero.is-content-center,
.hero.is-content-right {
  justify-content: flex-start !important;
  text-align: left !important;
  padding-left: clamp(1rem, 5vw, 3.5rem) !important;
  padding-right: clamp(1rem, 4vw, 2.5rem) !important;
}

.hero-overlay {
  background:
    linear-gradient(100deg, rgba(18, 22, 58, 0.94) 0%, rgba(30, 37, 88, 0.78) 48%, rgba(30, 37, 88, 0.35) 100%),
    linear-gradient(180deg, rgba(18, 22, 58, 0.25) 0%, rgba(18, 22, 58, 0.75) 100%) !important;
}

.hero-content {
  width: min(100%, 38rem) !important;
  max-width: 38rem !important;
  margin: 0 !important;
}

.eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem !important;
  color: #ffb4b7 !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
}

.eyebrow::before,
.eyebrow::after {
  content: "" !important;
  width: 1.25rem !important;
  height: 2px !important;
  background: var(--accent) !important;
  opacity: 1 !important;
}

.hero h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(2.2rem, 5.5vw, 3.5rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.08 !important;
  margin-bottom: 1rem !important;
  text-shadow: none !important;
  max-width: none !important;
  color: #fff !important;
}

.hero h1 .accent,
.hero h1 .gold {
  color: #fff !important;
}

.hero-lede {
  color: var(--muted) !important;
  font-size: clamp(1rem, 2.2vw, 1.1rem) !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
  max-width: 34rem !important;
  margin: 0 0 1.25rem !important;
  text-shadow: none !important;
}

.hero.is-content-left .hero-lede,
.hero.is-content-center .hero-lede,
.hero.is-content-right .hero-lede {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.hero-trust li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}

.hero-actions {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.75rem !important;
  justify-content: flex-start !important;
}

.hero.is-content-left .hero-actions,
.hero.is-content-center .hero-actions,
.hero.is-content-right .hero-actions {
  justify-content: flex-start !important;
}

.hero-tagline {
  position: static !important;
  display: block;
  margin-top: 1.75rem !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  color: var(--soft) !important;
  text-align: left !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  max-width: 36rem;
}

.hero-dots {
  left: clamp(1rem, 5vw, 3.5rem) !important;
  right: auto !important;
  bottom: 1.25rem !important;
  justify-content: flex-start !important;
}

.hero-dots button {
  width: 1.5rem !important;
  height: 3px !important;
  border: none !important;
  border-radius: 2px !important;
  background: rgba(255, 255, 255, 0.3) !important;
  transform: none !important;
}

.hero-dots button[aria-selected="true"] {
  width: 2.25rem !important;
  background: var(--accent) !important;
  transform: none !important;
}

/* ========== SECTIONS ========== */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 !important;
}

.section-head {
  text-align: left !important;
  max-width: 40rem !important;
  margin: 0 0 2.25rem !important;
  margin-inline: 0 !important;
}

.section-head h2 {
  display: block !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #ff8f93 !important;
  margin-bottom: 0.65rem !important;
}

.section-head h2::before,
.section-head h2::after {
  display: none !important;
}

.section-head .title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.7rem, 3.8vw, 2.35rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.15 !important;
  color: #fff !important;
  margin-bottom: 0.65rem !important;
}

.section-head p {
  color: var(--muted) !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
}

/* ========== ABOUT (showcase layout) ========== */
.about-showcase {
  background: #f4f5f8 !important;
  color: var(--ink);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) !important;
}

.about-showcase .container.about-grid,
.about-showcase .about-grid {
  display: grid !important;
  gap: clamp(2rem, 4vw, 3.25rem) !important;
  align-items: center !important;
  max-width: 1120px;
}

@media (min-width: 900px) {
  .about-showcase .about-grid {
    grid-template-columns: 0.92fr 1.08fr !important;
    gap: 3.5rem !important;
  }
}

.about-visual {
  position: relative;
  margin: 0;
  min-height: 0 !important;
  display: block !important;
}

.about-showcase .about-photo {
  margin: 0 !important;
  border: none !important;
  overflow: hidden !important;
  background: #dfe3ec !important;
  border-radius: 22px !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  top: auto !important;
  width: 100% !important;
  justify-self: stretch !important;
  z-index: auto !important;
  box-shadow: 0 18px 40px rgba(18, 22, 58, 0.12);
}

.about-showcase .about-photo img,
.about-showcase .about-visual img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  border-radius: inherit !important;
  filter: none !important;
  transform: none !important;
  transition: transform 0.55s var(--ease);
}

.about-showcase .about-photo:hover img {
  transform: scale(1.03) !important;
  filter: none !important;
}

.about-showcase .about-photo-main {
  position: relative !important;
  aspect-ratio: 4 / 5 !important;
  max-height: 34rem !important;
  min-height: 22rem;
}

.about-award-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 7.25rem;
  height: 7.25rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 22, 58, 0.18);
  display: grid;
  place-items: center;
  z-index: 2;
}

.about-award-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: about-award-spin 18s linear infinite;
}

.about-award-ring text {
  fill: #1a1f3d;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-award-core {
  position: relative;
  z-index: 1;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
}

.about-award-core svg {
  width: 1.35rem;
  height: 1.35rem;
}

@keyframes about-award-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .about-award-ring {
    animation: none;
  }
}

.about-copy {
  color: var(--ink);
}

.about-copy .section-head {
  text-align: left !important;
  display: none;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: #ebecef;
  color: #5c6280;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-heading {
  margin: 0 0 1rem !important;
  color: var(--ink) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.85rem, 3.6vw, 2.65rem) !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.02em !important;
  max-width: 18ch;
}

.about-heading::before,
.about-heading::after {
  display: none !important;
}

.about-body {
  color: #5f6580 !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1.7 !important;
  margin-bottom: 1.35rem !important;
  max-width: 38rem;
}

.about-body p {
  color: inherit !important;
  margin: 0 0 0.85rem !important;
  font-weight: 500 !important;
}

.about-body p:last-child {
  margin-bottom: 0 !important;
}

.about-body strong {
  color: var(--ink) !important;
  font-weight: 700;
}

.about-mid {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .about-mid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
  }
}

.about-incluye {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  gap: 0.85rem !important;
}

.about-incluye-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.7rem !important;
  justify-content: flex-start !important;
  text-align: left !important;
  flex-direction: row !important;
}

.about-incluye-icon {
  flex: 0 0 auto;
  width: 1.35rem !important;
  height: 1.35rem !important;
  margin-top: 0.12rem;
  display: grid;
  place-items: center;
  color: var(--accent) !important;
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.about-incluye-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.about-incluye-text {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.about-incluye-text strong {
  color: var(--ink) !important;
  font-family: var(--font-sans) !important;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

.about-incluye-text span {
  display: none;
}

.about-showcase .about-photo-accent {
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  max-height: 12rem !important;
  min-height: 9rem;
  box-shadow: 0 14px 32px rgba(18, 22, 58, 0.1) !important;
}

.about-name {
  color: var(--ink) !important;
  font-size: 1.15rem !important;
  margin: 0 0 0.2rem !important;
}

.about-role {
  color: var(--accent) !important;
  margin-bottom: 1rem !important;
}

.about-role::before,
.about-role::after {
  background: var(--accent) !important;
}

.about-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0 !important;
}

.about-cta.btn,
.about-showcase .btn-accent {
  display: inline-flex !important;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem !important;
  border-radius: 999px !important;
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  box-shadow: 0 10px 24px rgba(227, 30, 36, 0.28);
}

.about-cta.btn:hover,
.about-showcase .btn-accent:hover {
  background: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
  color: #fff !important;
}

.about-cta svg {
  width: 1rem;
  height: 1rem;
}

.about-showcase .btn-ghost {
  border-radius: 999px !important;
  color: var(--ink) !important;
  border-color: rgba(18, 22, 58, 0.18) !important;
  background: transparent !important;
}

.about-showcase .btn-ghost:hover {
  border-color: var(--brand) !important;
  color: var(--brand) !important;
}

.about-awards {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.about-awards-label {
  color: #6a7088;
  font-size: 0.88rem;
  font-weight: 600;
}

.about-award-icons {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.about-award-icon {
  width: 2.35rem;
  height: 2.35rem;
  color: #2a314f;
  display: grid;
  place-items: center;
}

.about-award-icon svg {
  width: 100%;
  height: 100%;
}

/* Kill legacy absolute stacking from styles.css */
.about-showcase .about-photos,
.about-showcase .about-visual {
  position: relative !important;
  min-height: 0 !important;
  display: block !important;
  grid-template-columns: none !important;
}

@media (min-width: 800px) {
  .about-showcase .about-photo-main {
    width: 100% !important;
    justify-self: stretch !important;
    aspect-ratio: 4 / 5 !important;
    max-height: 34rem !important;
  }

  .about-showcase .about-photo-accent {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    width: 100% !important;
  }
}

@media (max-width: 639px) {
  .about-showcase .about-photo-main {
    max-height: 26rem !important;
    min-height: 18rem;
  }

  .about-award-badge {
    width: 5.75rem;
    height: 5.75rem;
  }

  .about-heading {
    max-width: none;
  }

  .about-showcase .about-photo-accent {
    max-height: none !important;
  }
}

/* ========== WHY US ========== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 900px) {
  .why-us-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
}

.why-item-icon {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
  display: grid;
  place-items: center;
}

.why-item-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.why-item h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 750;
  color: #fff;
  letter-spacing: -0.01em;
}

.why-item p {
  margin: 0;
  color: var(--soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ========== SERVICES ========== */
.services {
  background: transparent !important;
}

.services-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1.25rem !important;
}

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.service {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  transition: border-color 0.2s ease, transform 0.2s ease !important;
}

.service:hover {
  border-color: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-3px) !important;
}

.service-photo {
  aspect-ratio: 16 / 10 !important;
  border: none !important;
  margin: 0 !important;
  background: var(--brand-deeper) !important;
}

.service-photo img {
  filter: none !important;
  object-fit: cover;
}

.service:hover .service-photo img {
  filter: none !important;
}

.service-body {
  padding: 1.1rem 1.15rem 1.25rem !important;
  background: transparent !important;
}

.service h3,
.service-body h3 {
  font-size: 1.15rem !important;
  font-weight: 750 !important;
  letter-spacing: -0.015em !important;
  text-transform: none !important;
  color: #fff !important;
  margin: 0 0 0.4rem !important;
}

.service-body p {
  color: var(--muted) !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  margin: 0 !important;
}

.service-more {
  margin-top: 0.85rem !important;
  color: #ff9ea2 !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
}

/* ========== PROCESS ========== */
.process-showcase {
  background: #f4f5f8 !important;
  color: var(--ink);
  padding-block: clamp(3.5rem, 7vw, 5.25rem) !important;
}

.process-showcase .container {
  max-width: 1120px;
}

.process-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.process-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: #ebecef;
  color: #5c6280;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.process-heading {
  margin: 0 auto !important;
  max-width: 18ch;
  color: var(--ink) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.75rem, 3.4vw, 2.45rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
}

.process-heading::before,
.process-heading::after {
  display: none !important;
}

.process-track {
  position: relative;
  display: grid !important;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .process-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}

@media (min-width: 980px) {
  .process-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: start;
  }
}

.process-line {
  display: none;
}

@media (min-width: 980px) {
  .process-line {
    display: block;
    position: absolute;
    left: 9%;
    right: 9%;
    top: 3.55rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.35), rgba(227, 30, 36, 0.35), transparent);
    z-index: 0;
    pointer-events: none;
  }
}

.process-card {
  position: relative;
  z-index: 1;
  text-align: center;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  display: grid;
  gap: 1.1rem;
  justify-items: center;
}

.process-icon-wrap {
  position: relative;
  width: clamp(6.5rem, 8vw, 7.75rem);
  height: clamp(6.5rem, 8vw, 7.75rem);
}

.process-icon {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(18, 22, 58, 0.06);
  box-shadow:
    0 1px 2px rgba(18, 22, 58, 0.04),
    0 14px 36px rgba(18, 22, 58, 0.1);
  color: #151b3d;
  display: grid;
  place-items: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.25s ease, border-color 0.25s ease;
}

.process-card:hover .process-icon {
  transform: translateY(-5px);
  border-color: rgba(67, 78, 160, 0.22);
  box-shadow:
    0 1px 2px rgba(18, 22, 58, 0.04),
    0 20px 44px rgba(18, 22, 58, 0.14);
  color: var(--brand);
}

.process-icon svg {
  width: 58%;
  height: 58%;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-num {
  position: absolute;
  top: -0.45rem;
  right: -0.45rem;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(227, 30, 36, 0.38);
  z-index: 2;
  border: 2px solid #fff;
}

.process-card h3 {
  margin: 0;
  color: var(--ink) !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem) !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  max-width: 16ch;
}

.process-card p {
  margin: 0;
  color: #6a7088 !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  max-width: 24ch;
}

/* legacy selectors neutralized */
#process .process-list,
#process .process-grid,
.process-steps {
  display: contents;
}

#process article.step,
.process-step {
  background: transparent;
  border: none;
  padding: 0;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 44rem;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item-toggle {
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  flex-shrink: 0;
}

.faq-item-toggle::before,
.faq-item-toggle::after {
  content: "";
  position: absolute;
  background: var(--accent);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-item-toggle::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-item-toggle::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
}

.faq-item[open] .faq-item-toggle::after {
  opacity: 0;
}

.faq-item-answer {
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
  font-weight: 500;
}

/* ========== CONTACT ========== */
.contact-list a,
.contact-list li > span {
  border-radius: var(--radius);
}

.contact-icon {
  background: rgba(67, 78, 160, 0.45) !important;
  color: #fff !important;
  border-radius: 50%;
}

.estimate-box,
.phone-box {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  color: #fff !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(67, 78, 160, 0.3);
}

/* ========== GALLERY / COMMENTS ========== */
.gallery-filters button,
.gallery-nav button {
  border-radius: var(--radius) !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
  font-weight: 600 !important;
}

.gallery-filters button.is-active,
.gallery-nav button[aria-pressed="true"] {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}

/* ========== FOOTER ========== */
.footer {
  background: #0e1230 !important;
  border-top: 1px solid var(--line) !important;
  padding: 2.75rem 0 6.5rem !important;
}

.footer-tagline {
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem !important;
}

.footer-area {
  color: var(--soft) !important;
  margin-bottom: 1.25rem !important;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
}

.footer-links a {
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--soft) !important;
}

.footer-links a:hover {
  color: #fff !important;
}

.footer-legal {
  margin-top: 1.5rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 0.82rem;
}

/* ========== MOBILE ========== */
@media (max-width: 899px) {
  .mobile-dock {
    background: rgba(18, 22, 58, 0.96) !important;
    border: 1px solid var(--line) !important;
    border-radius: 14px !important;
    backdrop-filter: blur(12px);
  }

  .hero {
    min-height: auto !important;
    padding-top: calc(var(--nav-h) + 2rem) !important;
    padding-bottom: 3.5rem !important;
  }

  .about-includes {
    grid-template-columns: 1fr;
  }

  .nav-brand img {
    height: 2.25rem !important;
    max-width: 9.5rem !important;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== SERVICES SHOWCASE (carousel) ========== */
.services-showcase {
  background: #f4f5f8 !important;
  color: #15171f;
  border-top: none !important;
}

.services-showcase .container {
  max-width: 1180px;
}

.services-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.services-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #e8eaef;
  color: #3a3f4d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.services-heading {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #12141c;
}

.services-nav {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.services-nav-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  background: #171a24;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.services-nav-btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

.services-nav-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.services-track-wrap {
  margin-inline: calc(50% - 50vw);
  padding-left: max(1rem, calc(50vw - 590px));
  width: 100vw;
}

.services-track {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem 1rem 0.75rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.services-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  position: relative;
  flex: 0 0 min(78vw, 320px);
  height: min(62vw, 430px);
  border-radius: 22px;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  border: none;
  background: #d9dde7;
  box-shadow: 0 18px 40px rgba(18, 22, 40, 0.12);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

@media (min-width: 900px) {
  .service-card {
    flex-basis: 340px;
    height: 460px;
  }
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(18, 22, 40, 0.18);
  outline: none;
}

.service-card-media {
  position: absolute;
  inset: 0;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}

.service-card:hover .service-card-media img {
  transform: scale(1.05);
}

.service-card-panel {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 0.95rem 0.95rem 1.05rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(18, 22, 40, 0.14);
  opacity: 1;
  transform: none;
  transition: opacity 0.25s ease, transform 0.25s var(--ease);
}

.service-card:hover .service-card-panel,
.service-card:focus-visible .service-card-panel,
.service-card.is-active .service-card-panel {
  opacity: 1;
  transform: none;
}

/* Always show panel on touch devices */
@media (hover: none) {
  .service-card-panel {
    opacity: 1;
    transform: none;
  }
}

.service-card-copy {
  min-width: 0;
  flex: 1;
}

.service-card-cat {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.service-card-copy h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #15171f;
  line-height: 1.2;
}

.service-card-copy p {
  display: none;
}

.service-card-plus {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.service-card-plus svg {
  width: 1.1rem;
  height: 1.1rem;
}

/* Override old dark service styles inside showcase */
.services-showcase .services-grid,
.services-showcase .section-head {
  display: none;
}

@media (max-width: 720px) {
  .services-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-heading {
    max-width: 18ch;
  }

  .services-track-wrap {
    margin-inline: -1rem;
    padding-left: 1rem;
    width: auto;
  }

  .service-card {
    flex-basis: min(82vw, 300px);
    height: 400px;
  }
}
