/* =========================
   RESET
   ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* charcoal base */
  --bg: #1c1f26;
  --bg-2: #242831;

  /* panels (still slightly lifted from background) */
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);

  /* text */
  --text: #f1f5f9;
  --muted: #9aa3b2;
  --line: rgba(255, 255, 255, 0.12);

  /* accent (keep yours — it pops even harder now) */
  --accent: #ff2d7a;
  --accent-2: #7b2cff;
  --accent-soft: rgba(255, 45, 122, 0.12);

  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --max-width: 1240px;
}
body {
  font-family: Arial, Helvetica, sans-serif;

  background:
    radial-gradient(circle at top left, rgba(255, 45, 122, 0.08), transparent 35%),
    radial-gradient(circle at top right, rgba(123, 44, 255, 0.08), transparent 35%),
    linear-gradient(to bottom, #1c1f26 0%, #1f232b 55%, #242831 100%);

  color: var(--text);
  line-height: 1.6;
}
.summary-card,
.review-item,
.contact-panel,
.category-card,
.ba-item,
.process-item {
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
/* =========================
   LUXURY SMOKED SECTION PANELS
========================= */

.categories-section,
.services-summary-section,
.featured-section,
.about-section,
.about-process-section,
.reviews-section,
.cta-section {
  padding: 95px 0;
  position: relative;
}

/* softer luxury panel */
.categories-section > .container,
.services-summary-section > .container,
.featured-section > .container,
.about-section > .container,
.about-process-section > .container,
.reviews-section > .container,
.cta-section > .container {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border-radius: 36px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.72),
      rgba(235, 238, 245, 0.52)
    );

  border: 1px solid rgba(255, 255, 255, 0.38);

  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  opacity: 0;
  transform: translateY(70px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

/* visible on scroll */
.categories-section.section-slide-visible > .container,
.services-summary-section.section-slide-visible > .container,
.featured-section.section-slide-visible > .container,
.about-section.section-slide-visible > .container,
.about-process-section.section-slide-visible > .container,
.reviews-section.section-slide-visible > .container,
.cta-section.section-slide-visible > .container {
  opacity: 1;
  transform: translateY(0);
}

/* subtle luxury shine inside panel */
.categories-section > .container::before,
.services-summary-section > .container::before,
.featured-section > .container::before,
.about-section > .container::before,
.about-process-section > .container::before,
.reviews-section > .container::before,
.cta-section > .container::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 520px;
  height: 520px;
  background:
    radial-gradient(circle, rgba(255, 45, 122, 0.1), transparent 62%);
  pointer-events: none;
}

/* soft purple wash */
.categories-section > .container::after,
.services-summary-section > .container::after,
.featured-section > .container::after,
.about-section > .container::after,
.about-process-section > .container::after,
.reviews-section > .container::after,
.cta-section > .container::after {
  content: "";
  position: absolute;
  bottom: -35%;
  left: -18%;
  width: 520px;
  height: 520px;
  background:
    radial-gradient(circle, rgba(123, 44, 255, 0.08), transparent 64%);
  pointer-events: none;
}

/* keeps actual content above the glow */
.categories-section > .container > *,
.services-summary-section > .container > *,
.featured-section > .container > *,
.about-section > .container > *,
.about-process-section > .container > *,
.reviews-section > .container > *,
.cta-section > .container > * {
  position: relative;
  z-index: 2;
}

/* text colors inside soft panels */
.categories-section,
.services-summary-section,
.featured-section,
.about-section,
.about-process-section,
.reviews-section,
.cta-section {
  color: #111827;
}

.categories-section h2,
.services-summary-section h2,
.featured-section h2,
.about-section h2,
.about-process-section h2,
.reviews-section h2,
.cta-section h2,
.feature-copy h3,
.summary-card h3,
.process-item h3 {
  color: #111827;
}

.categories-copy p,
.feature-copy p,
.about-body > p,
.summary-card p,
.process-item p,
.review-item p {
  color: #4b5563;
}

/* cards inside panels */
.summary-card,
.review-item,
.process-item,
.category-card,
.ba-item {
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.74),
      rgba(255, 255, 255, 0.48)
    );
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

/* service pill buttons */
.categories-links a {
  background: rgba(17, 24, 39, 0.06);
  color: #111827;
  border: 1px solid rgba(17, 24, 39, 0.11);
}

.categories-links a:hover {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  border-color: transparent;
}

/* image card overlay stays premium */
.category-card::after,
.ba-item::after {
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.58),
    rgba(15, 23, 42, 0.06)
  );
}

/* alternating slide direction */
.services-summary-section > .container,
.about-section > .container,
.reviews-section > .container {
  transform: translateX(-70px);
}

.featured-section > .container,
.about-process-section > .container,
.cta-section > .container {
  transform: translateX(70px);
}

.services-summary-section.section-slide-visible > .container,
.about-section.section-slide-visible > .container,
.reviews-section.section-slide-visible > .container,
.featured-section.section-slide-visible > .container,
.about-process-section.section-slide-visible > .container,
.cta-section.section-slide-visible > .container {
  transform: translateX(0);
}

/* CTA correction */
.cta-section > .container.cta-box {
  display: flex;
  padding: 58px;
  border-radius: 36px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

/* mobile */
@media (max-width: 768px) {
  .categories-section,
  .services-summary-section,
  .featured-section,
  .about-section,
  .about-process-section,
  .reviews-section,
  .cta-section {
    padding: 44px 0;
  }

  .categories-section > .container,
  .services-summary-section > .container,
  .featured-section > .container,
  .about-section > .container,
  .about-process-section > .container,
  .reviews-section > .container,
  .cta-section > .container {
    padding: 30px 20px;
    border-radius: 26px;
    transform: translateY(48px);
  }

  .section-slide-visible > .container {
    transform: translateY(0) !important;
  }

  .cta-section > .container.cta-box {
    padding: 32px 22px;
    border-radius: 26px;
  }
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

/* =========================
   GLOBAL UI
   ========================= */

.eyebrow {
  display: inline-block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  margin-bottom: 18px;
}

.accent {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2,
.categories-copy h2,
.about-layout h2,
.cta-box h2,
.page-hero h1,
.contact-panel h2,
.service-feature-copy h2,
.about-story-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  border: none;
  box-shadow: 0 12px 26px rgba(123, 44, 255, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(123, 44, 255, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  border: 1px solid rgba(18, 24, 38, 0.12);
}

.btn-secondary:hover {
  border-color: rgba(123, 44, 255, 0.3);
  color: var(--accent-2);
  background: rgba(255, 255, 255, 0.9);
}

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

.read-link::after {
  content: "→";
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.2s ease;
}

.read-link:hover::after {
  transform: translateX(3px);
}

/* =========================
   HEADER
   ========================= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.topbar {
  width: 100%;
  background: rgba(8, 16, 30, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  min-height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.92);
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar-right a {
  color: rgba(255, 255, 255, 0.92);
  transition: opacity 0.2s ease;
}

.topbar-right a:hover {
  opacity: 0.8;
}

.social-icon {
  width: 32px;
  height: 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);

  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;

  backdrop-filter: blur(8px);

  transition: all 0.25s ease;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.social-icon:hover {
  transform: translateY(-2px) scale(1.05);

  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: #fff;
}

.main-nav-shell {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}
                                      /* Nav bare size control*/
.main-nav-wrap {
  width: min(100% - 180px, 1180px);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.main-nav {
  min-height: 86px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-solid img {
  height: 58px;
  width: auto;
}

.nav-solid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
}

.nav-solid a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-solid a:hover,
.nav-solid a.active {
  color: #ffffff;
}

.nav-solid a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-solid a:hover::after,
.nav-solid a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg picture,
.about-section-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-slider-shell picture,
.ba-slider picture,
.ba-before-wrap picture,
.category-card picture,
.about-story-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* 🔥 smooth cinematic feel */
  filter: brightness(0.7) contrast(1.05);
}
/* =========================
   HERO
   ========================= */

.hero-full {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 1;
}

.hero-bg picture {
  position: absolute;
  inset: 0;
}

.feature-slider-shell picture,
.ba-slider picture,
.ba-before-wrap picture {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
}

.hero-first-frame {
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.hero-bg video {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.hero-bg.is-playing video {
  opacity: 1;
}

.hero-bg.is-playing .hero-first-frame {
  opacity: 0;
}

.hero-bg video::-webkit-media-controls,
.hero-bg video::-webkit-media-controls-start-playback-button,
.hero-bg video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(9, 15, 28, 0.78) 0%,
      rgba(9, 15, 28, 0.42) 42%,
      rgba(9, 15, 28, 0.56) 100%
    ),
    linear-gradient(
      to top,
      rgba(9, 15, 28, 0.46) 0%,
      rgba(9, 15, 28, 0.08) 42%
    );
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 182px;
}

.hero .container {
  width: min(100% - 70px, 1320px);
}

.hero-copy {
  max-width: 720px;
  padding-top: 0;
  padding-bottom: 40px;
}

.hero h1 {
  max-width: 10.8ch;
  font-size: clamp(3.95rem, 5.6vw, 5.45rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
  color: #fff;
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.hero-line-one,
.hero h1 .accent {
  white-space: nowrap;
}

.hero-text {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.hero-note {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.hero-note span {
  position: relative;
  padding-left: 16px;
}

.hero-note span::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.hero-service-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-service-ribbon span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}


/*Inner Hero*/  /*Inner Hero*/
/*Inner Hero*/  /*Inner Hero*/
/*Inner Hero*/  /*Inner Hero*/
.page-hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(9, 15, 28, 0.78) 0%,
      rgba(9, 15, 28, 0.42) 42%,
      rgba(9, 15, 28, 0.56) 100%
    ),
    linear-gradient(
      to top,
      rgba(9, 15, 28, 0.5) 0%,
      rgba(9, 15, 28, 0.08) 42%
    );
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  color: #fff;
}

.page-hero h1 {
  color: #fff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.page-hero-text {
  color: rgba(255,255,255,0.85);
}
/* =========================
   INTRO BAND
   ========================= */

.intro-band {
  padding: 38px 0 24px;
}

.intro-band-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: end;
  padding: 28px 0;
  border-top: 1px solid rgba(18, 24, 38, 0.08);
  border-bottom: 1px solid rgba(18, 24, 38, 0.08);
}

.intro-band-inner p:first-child {
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  color: #1e293b;
  line-height: 1.55;
  max-width: 860px;
}

.intro-band-small {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 420px;
  justify-self: end;
}

/* =========================
   SECTIONS
   ========================= */

.categories-section,
.featured-section,
.about-section,
.reviews-section,
.cta-section,
.services-list-section,
.services-summary-section,
.about-story-section,
.about-values-section,
.about-process-section,
.contact-page-section {
  padding: 110px 0;
}

/* =========================
   CATEGORIES
   ========================= */

.categories-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.categories-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
  margin: 18px 0 30px;
}

.categories-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.categories-links a {
  border: 1px solid rgba(18, 24, 38, 0.1);
  color: #334155;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.6);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.categories-links a:hover {
  border-color: rgba(123, 44, 255, 0.26);
  color: var(--accent-2);
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.category-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 24, 38, 0.5), rgba(18, 24, 38, 0.04));
}

.category-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}
/*Underline Accent*//*Underline Accent*//*Underline Accent*//*Underline Accent*//*Underline Accent*/
/*Underline Accent*//*Underline Accent*//*Underline Accent*//*Underline Accent*/

.underline-accent {
  position: relative;
  display: inline-block;
}

/* underline */
.underline-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* space from text */
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

/* =========================
   OUTLINE ACCENT TEXT
   ========================= */

.outline-accent {
  color: transparent; /* removes fill */
  -webkit-text-stroke: 1.5px var(--accent); /* pink outline */
  text-stroke: 1.5px var(--accent);
}

/* =========================
   BORDER ACCENT (TRIM)
   ========================= */


.border-accent {
  color: #ffffff; /* 👈 keeps inside white */
  -webkit-text-stroke: 1.5px var(--accent);
  text-stroke: 1.5px var(--accent);
}

/* =========================
   FEATURED
   ========================= */

.feature-row {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 58px;
  align-items: center;
  margin-bottom: 86px;
}

.feature-row.reverse {
  grid-template-columns: 0.94fr 1.06fr;
}

.feature-row.reverse .feature-media {
  order: 2;
}

.feature-row.reverse .feature-copy {
  order: 1;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ba-item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 18px;
  background: var(--panel-strong);
  border: 1px solid rgba(18, 24, 38, 0.08);
  box-shadow: var(--shadow);
}

.ba-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 24, 38, 0.28), rgba(18, 24, 38, 0.04));
}

.ba-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 24, 38, 0.08);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.media-meta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #5f6b7a;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.media-meta span:first-child {
  flex: 1;
  height: 1px;
  background: rgba(18, 24, 38, 0.12);
}

.feature-copy h3 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.feature-copy h3 span {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.feature-copy h3 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 84%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s ease;
}

.reveal-line.is-visible h3 span::after {
  transform: scaleX(1);
}

.feature-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* =========================
   ABOUT SECTION
   ========================= */

.about-section {
  border-top: 1px solid rgba(18, 24, 38, 0.06);
  border-bottom: 1px solid rgba(18, 24, 38, 0.06);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: start;
}

.about-body > p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
  margin-bottom: 34px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-points div {
  padding: 22px 18px 20px 0;
  border-top: 1px solid rgba(18, 24, 38, 0.1);
}

.about-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.about-points span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =========================
   REVIEWS / CARDS
   ========================= */

.reviews-list,
.services-summary-grid,
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-item,
.summary-card,
.contact-panel {
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.review-item {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-item p,
.summary-card p {
  line-height: 1.8;
  color: var(--muted);
}

.review-item span {
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.summary-card h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
  color: var(--text);
}

/* =========================
   CTA
   ========================= */

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border-radius: 24px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  background:
    radial-gradient(circle at top right, rgba(123, 44, 255, 0.08), transparent 35%),
    radial-gradient(circle at bottom left, rgba(255, 45, 122, 0.08), transparent 35%),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

/* =========================
   PAGE HERO
   ========================= */

.page-hero {
  padding: 150px 0 86px;
  border-bottom: 1px solid rgba(18, 24, 38, 0.06);
}

.page-hero-inner {
  max-width: 900px;
}

.page-hero h1 {
  line-height: 0.95;
  margin-bottom: 20px;
}

.page-hero-text {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

/* =========================
   SERVICES PAGE
   ========================= */

.service-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}

.service-feature.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.service-feature.reverse .service-feature-media {
  order: 2;
}

.service-feature.reverse .service-feature-copy {
  order: 1;
}

.service-feature-media {
  height: 420px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.service-feature-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 24px;
}
/* FIX SERVICES SLIDER SIZE */
.editorial-service-media {
  position: relative;
  width: 100%;
  height: 260px; /* controls height on mobile */
  overflow: hidden;
}

.editorial-service-media .ba-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.editorial-service-media .ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-service-media .ba-before-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
}

.editorial-service-media .ba-before {
  width: 100%;
  max-width: none;
}


.ba-watermark {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;

  width: 110px;
  pointer-events: none;
}

.ba-watermark img {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

/* layer order */
.ba-after {
  z-index: 0;
}

.ba-watermark {
  z-index: 1;
}

.ba-before-wrap {
  z-index: 2;
}

.ba-divider {
  z-index: 4;
}

.ba-range {
  z-index: 5;
}
/* =========================
   ABOUT PAGE
   ========================= */

.about-story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.about-story-media {
  min-height: 520px;
  border-radius: 18px;
  background: var(--panel-strong);
  overflow: hidden;
  border: 1px solid rgba(18, 24, 38, 0.08);
  box-shadow: var(--shadow);
}

.about-story-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 18px;
}

.about-process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.about-process-list {
  display: grid;
  gap: 28px;
}

.process-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 24, 38, 0.1);
}

.process-item strong {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--accent-2);
}

.process-item h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.process-item p {
  color: var(--muted);
  line-height: 1.75;
}

/* =========================
   CONTACT PAGE
   ========================= */

.contact-hero {
  padding: 150px 0 80px;
}

.contact-page-section {
  padding-top: 26px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.contact-panel h2 {
  margin-bottom: 24px;
}

.contact-detail-list {
  display: grid;
  gap: 24px;
}

.contact-detail {
  padding-top: 16px;
  border-top: 1px solid rgba(18, 24, 38, 0.08);
}

.contact-label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.contact-link,
.contact-text,
.contact-link-btn {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.5;
}

.contact-detail .contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(18, 24, 38, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: #111827;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.contact-link-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.contact-link:hover,
.contact-link-btn:hover {
  color: var(--accent);
}

.contact-detail .contact-link:hover {
  transform: translateY(-1px);
  border-color: rgba(123, 44, 255, 0.24);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
}

.contact-form-modern {
  display: grid;
  gap: 18px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 10px;
}

.field label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form-modern input,
.contact-form-modern textarea {
  width: 100%;
  border: 1px solid rgba(18, 24, 38, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: #111827;
  padding: 16px;
  border-radius: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-modern input::placeholder,
.contact-form-modern textarea::placeholder {
  color: #8a94a4;
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
  border-color: rgba(123, 44, 255, 0.28);
  box-shadow: 0 0 0 4px rgba(123, 44, 255, 0.08);
}

.contact-form-modern textarea {
  min-height: 180px;
  resize: vertical;
}

/* =========================
   MODAL
   ========================= */

.call-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
}

.call-modal.active {
  display: flex;
}

.call-modal-box {
  width: min(100%, 420px);
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
}

.call-modal-box h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.call-modal-box p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.call-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  border-top: 1px solid rgba(18, 24, 38, 0.08);
  padding: 38px 0 54px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
}

.footer-brand {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-copy {
  max-width: 430px;
  color: var(--muted);
}

.footer-links {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.articles-hub-section {
  padding: 96px 0 84px;
}

.articles-hub-intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 52px;
}

.articles-hub-intro h2 {
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 560px;
}

.articles-hub-copy {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.articles-hub-copy p {
  color: rgba(241, 245, 249, 0.8);
  font-size: 1.02rem;
  line-height: 1.9;
}

.articles-hub-copy p + p {
  margin-top: 20px;
}

.articles-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.articles-topic-card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.articles-topic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 20, 0.18) 0%, rgba(7, 11, 20, 0.86) 100%);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
  z-index: 1;
}

.articles-topic-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 122, 0.24);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
}

.articles-topic-card:hover::before {
  opacity: 1;
}

.articles-topic-thumb {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
  z-index: 0;
}

.articles-topic-card:hover .articles-topic-thumb {
  opacity: 1;
  transform: scale(1);
}

.articles-topic-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) brightness(0.78);
}

.articles-topic-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  position: relative;
  z-index: 2;
}

.articles-topic-card h3 {
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: #f8fafc;
  position: relative;
  z-index: 2;
  transition: transform 0.28s ease;
}

.articles-topic-card p {
  color: rgba(241, 245, 249, 0.72);
  line-height: 1.8;
  position: relative;
  z-index: 2;
  max-width: 38ch;
  transition: color 0.28s ease, transform 0.28s ease;
}

.articles-topic-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: rgba(241, 245, 249, 0.56);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.28s ease, transform 0.28s ease;
  position: relative;
  z-index: 2;
}

.articles-topic-hint::after {
  content: "→";
  color: var(--accent);
  transition: transform 0.28s ease;
}

.articles-topic-card:hover .articles-topic-hint {
  color: rgba(241, 245, 249, 0.86);
  transform: translateX(3px);
}

.articles-topic-card:hover .articles-topic-hint::after {
  transform: translateX(2px);
}

.articles-topic-card:hover h3,
.articles-topic-card:hover p {
  transform: translateY(-2px);
}

.articles-topic-card:hover p {
  color: rgba(241, 245, 249, 0.86);
}

.articles-note-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(241, 245, 249, 0.82);
}

.articles-note-strip strong,
.articles-note-strip code {
  color: #fff;
}

.article-hero {
  min-height: 82vh;
}

.article-page-section {
  padding: 88px 0 72px;
}

.article-layout {
  max-width: 940px;
  margin: 0 auto;
}

.article-content-card {
  padding: 42px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-bottom: 24px;
  color: rgba(241, 245, 249, 0.58);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-lead {
  font-size: 1.14rem;
  line-height: 1.9;
  color: rgba(241, 245, 249, 0.9);
  margin-bottom: 28px;
}

.article-content-card h2 {
  font-size: 1.6rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 30px 0 12px;
  color: #fff;
}

.article-content-card p {
  color: rgba(241, 245, 249, 0.76);
  line-height: 1.88;
  font-size: 1rem;
}

.article-callout {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 3px solid var(--accent);
  background: linear-gradient(90deg, rgba(255, 45, 122, 0.08), rgba(123, 44, 255, 0.04));
  display: grid;
  gap: 8px;
}

.article-callout strong {
  color: #fff;
  font-size: 1rem;
}

.article-callout span {
  color: rgba(241, 245, 249, 0.8);
  line-height: 1.75;
}

.article-page-section + .cta-section {
  padding-top: 18px;
}

.article-page-section + .cta-section .cta-box {
  align-items: center;
  gap: 22px 32px;
  padding: 38px 42px;
}

.article-page-section + .cta-section .cta-box > div {
  max-width: 780px;
}

.article-page-section + .cta-section .cta-box h2 {
  max-width: 20ch;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.02;
}

.article-page-section + .cta-section .cta-box .btn {
  min-width: 260px;
  min-height: 60px;
  padding: 0 30px;
  box-shadow: 0 18px 36px rgba(123, 44, 255, 0.26);
}

.footer-info {
  text-align: right;
  color: #334155;
}

.footer-info p + p {
  margin-top: 8px;
}
/* =========================
   SERVICES EDITORIAL LAYOUT
   ========================= */

.services-editorial-section {
  padding: 110px 0 90px;
}

.editorial-service {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 120px;
}

.editorial-service-reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.editorial-service-reverse .editorial-service-copy {
  order: 2;
}

.editorial-service-reverse .editorial-service-media {
  order: 1;
}

.editorial-service-copy {
  position: relative;
  padding-left: 34px;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.editorial-service-reverse .editorial-service-copy {
  transform: translateX(40px);
}

.editorial-line {
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(255, 45, 122, 0.9), rgba(123, 44, 255, 0.15));
  border-radius: 999px;
}

.editorial-number {
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.editorial-service h2 {
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

.editorial-text {
  max-width: 520px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 26px;
}

.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid currentColor;
  padding-bottom: 4px;
}

.editorial-link::before {
  content: "↳";
  color: var(--accent);
  font-size: 1rem;
}

.editorial-points {
  list-style: none;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.editorial-points li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 22px;
}

.editorial-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.editorial-service-media {
  height: 760px;
  overflow: hidden;
  border-radius: 0;
  opacity: 0;
  transform: translateY(50px) scale(0.96);
  transition: opacity 0.9s ease, transform 0.9s ease;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
}

.editorial-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.reveal-editorial.is-visible .editorial-service-copy,
.reveal-editorial.is-visible .editorial-service-media {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

.reveal-editorial.is-visible .editorial-service-media img {
  transform: scale(1.02);
}

.ba-slider-card {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
  padding: 18px;
}

.gallery-section .container {
  max-width: 1280px;
}

.gallery-slider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.ba-slider {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--panel);
}

.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before-wrap {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.ba-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* fallback */
  height: 100%;
  object-fit: cover;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 5;
  cursor: ew-resize;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, #ff2d7a, #7b2cff);
  z-index: 4;
}

.ba-divider::before {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #0b1220;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.ba-label {
  position: absolute;
  top: 14px;
  z-index: 6;
  background: rgba(8,13,22,0.75);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ba-label-before {
  left: 14px;
}

.ba-label-after {
  right: 14px;
}

.ba-slider-card h3 {
  margin-top: 18px;
  font-size: 1.25rem;
}

.ba-slider-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .gallery-slider-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* =========================
   HOMEPAGE ADDED SECTIONS
   Premium but approachable
========================= */

/* Residential & Commercial cards */
.services-summary-section {
  position: relative;
}

.services-summary-section .section-heading {
  max-width: 820px;
}

.services-summary-grid {
  align-items: stretch;
}

.summary-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.summary-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 45, 122, 0.08), transparent 34%),
    radial-gradient(circle at bottom left, rgba(123, 44, 255, 0.07), transparent 36%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.summary-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123, 44, 255, 0.22);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.summary-card:hover::before {
  opacity: 1;
}

.summary-card h3 {
  position: relative;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  padding-bottom: 16px;
}

.summary-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.summary-card p {
  position: relative;
  font-size: 1rem;
}


/* Process section */
.about-process-section {
  position: relative;
  border-top: 1px solid rgba(18, 24, 38, 0.06);
  border-bottom: 1px solid rgba(18, 24, 38, 0.06);
  background:
    radial-gradient(circle at top left, rgba(255, 45, 122, 0.045), transparent 34%),
    radial-gradient(circle at bottom right, rgba(123, 44, 255, 0.055), transparent 38%);
}

.about-process-grid > div:first-child {
  position: sticky;
  top: 120px;
}

.about-process-grid h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.about-process-list {
  counter-reset: process;
}

.process-item {
  position: relative;
  padding: 26px 28px;
  border-radius: 20px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.process-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 122, 0.2);
  background: rgba(255, 255, 255, 0.86);
}

.process-item strong {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 26px rgba(123, 44, 255, 0.18);
}

.process-item h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.process-item p {
  max-width: 680px;
}


/* Better spacing for the added homepage sections */
.services-summary-section + .featured-section {
  padding-top: 70px;
}

.about-section + .services-summary-section {
  padding-top: 100px;
}


/* Mobile polish */
@media (max-width: 1150px) {
  .about-process-grid > div:first-child {
    position: static;
  }

  .process-item {
    grid-template-columns: 52px 1fr;
  }
}

@media (max-width: 640px) {
  .services-summary-section {
    padding: 76px 0;
  }

  .summary-card {
    padding: 24px;
  }

  .summary-card h3 {
    font-size: 1.2rem;
  }

  .about-process-section {
    padding: 76px 0;
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px;
  }

  .process-item strong {
    width: 44px;
    height: 44px;
  }
}
/* =========================
   RESPONSIVE
   ========================= */

.mobile-menu-toggle,
.mobile-cta,
.mobile-nav-panel {
  display: none;
}

@media (max-width: 1150px) {
  .editorial-service,
  .editorial-service-reverse,
  .categories-layout,
  .feature-row,
  .feature-row.reverse,
  .about-layout,
  .about-story-grid,
  .about-process-grid,
  .service-feature,
  .service-feature.reverse,
  .contact-page-grid,
  .cta-box,
  .footer-inner,
  .reviews-list,
  .services-summary-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .editorial-service {
    gap: 34px;
    margin-bottom: 90px;
  }

  .editorial-service-reverse .editorial-service-copy,
  .editorial-service-reverse .editorial-service-media,
  .feature-row.reverse .feature-media,
  .feature-row.reverse .feature-copy,
  .service-feature.reverse .service-feature-media,
  .service-feature.reverse .service-feature-copy {
    order: initial;
  }

  .editorial-service-copy,
  .editorial-service-reverse .editorial-service-copy {
    transform: translateY(30px);
  }

  .editorial-service-media {
    height: 520px;
  }

  .category-cards,
  .about-points,
  .articles-topic-grid,
  .articles-hub-intro {
    grid-template-columns: 1fr;
  }

  .footer-info {
    text-align: left;
  }

  .articles-hub-copy {
    padding-left: 0;
    border-left: none;
  }

  .article-hero {
    min-height: 70vh;
  }

  .article-page-section + .cta-section .cta-box {
    padding: 30px 28px;
  }

  .article-page-section + .cta-section .cta-box h2 {
    max-width: none;
  }
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .main-nav-shell {
    padding-top: 0;
  }

  .main-nav-wrap {
    width: 100%;
    border-left: none;
    border-right: none;
    border-radius: 0;
  }

  .main-nav {
    min-height: 78px;
    grid-template-columns: 44px 1fr 72px;
    gap: 12px;
    padding: 0 18px;
    position: relative;
  }

  .nav-solid,
  .desktop-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0;
    z-index: 1200;
    position: relative;
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    display: block;
  }

  .brand-solid {
    justify-self: center;
  }

  .brand-solid img {
    height: 48px;
    width: auto;
  }

  .mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    min-height: 40px;
    padding: 0 14px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-nav-panel {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(9, 15, 28, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1400;
  }

  .mobile-nav-panel.active {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-inner {
    width: min(100%, 420px);
    height: 100%;
    background: #f4f4f2;
    color: #111827;
    padding: 18px 22px 28px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .mobile-nav-panel.active .mobile-nav-inner {
    transform: translateX(0);
  }

  .mobile-menu-close {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, 0.18);
    background: transparent;
    color: #111827;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    margin-bottom: 18px;
  }

  .mobile-nav-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
  }

  .mobile-nav-brand img {
    height: 54px;
    width: auto;
  }

  .mobile-nav-links {
    display: grid;
    gap: 18px;
    margin-bottom: 32px;
  }

  .mobile-nav-links a {
    font-size: 1.15rem;
    font-weight: 600;
    color: #111827;
  }

  .mobile-nav-contact {
    display: grid;
    gap: 14px;
  }

  .mobile-nav-contact a {
    color: #374151;
    font-size: 0.98rem;
  }

}




@media (max-width: 680px) {
  .services-editorial-section {
    padding: 80px 0 60px;
  }

  .editorial-service {
    margin-bottom: 70px;
  }

  .editorial-service-copy {
    padding-left: 24px;
  }

  .editorial-number {
    font-size: 1.2rem;
  }

  .editorial-service-media {
    height: 340px;
  }

  .editorial-text,
  .editorial-points li {
    font-size: 0.96rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .hero h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .hero-text,
  .page-hero-text,
  .categories-copy p,
  .feature-copy p,
  .about-body > p,
  .service-feature-copy p:not(.eyebrow),
  .about-story-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .category-card {
    min-height: 300px;
  }

  .review-item {
    min-height: auto;
  }

  .articles-hub-section {
    padding: 72px 0 64px;
  }

  .articles-hub-intro {
    gap: 28px;
    margin-bottom: 34px;
  }

  .articles-hub-intro h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .articles-topic-card {
    padding: 22px;
  }

  .articles-topic-card h3 {
    font-size: 1.35rem;
  }

  .articles-topic-card p {
    max-width: none;
  }

  .articles-topic-thumb {
    position: relative;
    inset: auto;
    width: 100%;
    margin-bottom: 18px;
    opacity: 1;
    transform: none;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
  }

  .articles-topic-hint {
    margin-top: 14px;
  }

  .articles-note-strip {
    grid-template-columns: 1fr;
  }

  .article-page-section {
    padding: 58px 0 48px;
  }

  .article-content-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .article-meta-row {
    gap: 10px 16px;
    margin-bottom: 18px;
    font-size: 0.74rem;
  }

  .article-lead {
    font-size: 1.02rem;
    margin-bottom: 20px;
  }

  .article-content-card h2 {
    font-size: 1.28rem;
    margin: 24px 0 10px;
  }

  .article-content-card p {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .article-callout {
    padding: 16px 16px 16px 18px;
  }

  .article-page-section + .cta-section {
    padding-top: 10px;
  }

  .article-page-section + .cta-section .cta-box {
    padding: 24px 18px;
    gap: 16px;
  }

  .article-page-section + .cta-section .cta-box h2 {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
    line-height: 1.04;
  }

  .article-page-section + .cta-section .cta-box .btn {
    min-width: 0;
    min-height: 56px;
    width: 100%;
  }
}
/* =========================
   REAL MOBILE VIDEO FIX
   ZOOMS VIDEO TO REMOVE BLACK SPACE
========================= */

@media (max-width: 768px) {
  .hero.hero-full {
    position: relative !important;
    height: 100svh !important;
    min-height: 100svh !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: flex-end !important;
    background: #000 !important;
  }

  .hero.hero-full .hero-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    z-index: 0 !important;
  }

  .hero.hero-full .hero-bg video {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;

    transform: translate(-40%, -50%) scale(3.2) !important;
    transform-origin: center center !important;

    display: block !important;
  }

  .hero.hero-full .hero-bg .hero-first-frame {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: translate(-50%, -50%) scale(1.08) !important;
    transform-origin: center center !important;
    display: block !important;
  }

  .hero.hero-full .hero-bg .hero-first-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }

  .hero.hero-full .hero-bg::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.88)
    ) !important;
    z-index: 1 !important;
  }

  .hero.hero-full .container.hero-inner {
    position: relative !important;
    z-index: 2 !important;
    height: 100svh !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 20px 52px !important;

    display: flex !important;
    align-items: flex-end !important;
  }

  .hero.hero-full .hero-copy {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
  }

  .hero.hero-full .hero-note {
    display: none !important;
  }
}

/* =========================
   LUXURY HOMEPAGE ENHANCEMENTS
   ========================= */

:root {
  --gold: #f2d6a2;
  --champagne: #fff7ea;
  --ink: #0f172a;
}

html {
  scroll-behavior: smooth;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 78%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 3000;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--gold), var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(255, 45, 122, 0.4);
}

.site-header {
  transition: transform 0.35s ease, background 0.35s ease;
}

.site-header.is-scrolled .main-nav-wrap {
  background: rgba(10, 16, 28, 0.72);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}

.hero-full {
  isolation: isolate;
}

.hero-grid,
.hero-orb {
  position: absolute;
  pointer-events: none;
}

.hero-grid {
  inset: 0;
  z-index: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 130px 130px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 74%, transparent);
}

.hero-orb {
  width: 34vw;
  height: 34vw;
  max-width: 520px;
  max-height: 520px;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.85;
  transition: transform 0.25s ease;
}

.hero-orb-left {
  top: 12%;
  left: -8%;
  background: radial-gradient(circle, rgba(242, 214, 162, 0.28), rgba(255, 45, 122, 0.04) 62%, transparent 75%);
}

.hero-orb-right {
  right: -10%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(123, 44, 255, 0.22), rgba(255, 255, 255, 0.04) 60%, transparent 74%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 360px);
  gap: 34px;
  align-items: end;
}

.hero-copy,
.hero-sidecard {
  transition: transform 0.25s ease;
}

.hero-copy .eyebrow {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero h1 {
  max-width: 9ch;
}

.hero-text {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transition: left 0.55s ease;
}

.btn:hover::before {
  left: 150%;
}

.btn,
.nav-cta,
.mobile-cta,
.read-link {
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
  will-change: transform;
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-luxury-band {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
}

.hero-glass-chip,
.hero-sidecard,
.intro-metric-card {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.hero-glass-chip::before,
.hero-sidecard::before,
.intro-metric-card::before,
.category-card::before,
.summary-card::after,
.review-item::before,
.process-item::before,
.ba-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.24), transparent 42%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.hero-glass-chip:hover::before,
.hero-sidecard:hover::before,
.intro-metric-card:hover::before,
.category-card:hover::before,
.summary-card:hover::after,
.review-item:hover::before,
.process-item:hover::before,
.ba-item:hover::before {
  opacity: 1;
}

.hero-glass-chip {
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-glass-chip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
}

.hero-glass-chip span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  line-height: 1.7;
}

.hero-sidecard {
  z-index: 1;
  align-self: end;
  margin-bottom: 92px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(7, 12, 22, 0.78), rgba(12, 18, 32, 0.64)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-sidecard-label {
  margin-bottom: 14px;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.hero-sidecard h2 {
  color: #fff;
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-sidecard-list {
  display: grid;
  gap: 18px;
}

.hero-sidecard-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-sidecard-list strong {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f6bd63);
  color: var(--ink);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.hero-sidecard-list span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-size: 0.96rem;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 1;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.hero-scroll-line {
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(242, 214, 162, 0.95), rgba(255, 255, 255, 0.1));
  animation: scrollPulse 1.9s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.78); opacity: 0.62; }
  50% { transform: scaleY(1.08); opacity: 1; }
}

.intro-band {
  position: relative;
  margin-top: -18px;
  z-index: 2;
}

.intro-band-inner {
  padding: 34px 34px 30px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 238, 229, 0.78));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
}

.intro-band-inner p:first-child {
  color: #0f172a;
  font-weight: 600;
}

.intro-band-small {
  color: #5b6472;
}

.intro-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 20px 0 0;
}

.intro-metric-card {
  padding: 22px 22px 24px;
  border-radius: 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.84), rgba(245, 240, 231, 0.74));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.intro-metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px rgba(15, 23, 42, 0.12);
  border-color: rgba(242, 214, 162, 0.55);
}

.intro-metric-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-2);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro-metric-card strong {
  display: block;
  color: #182230;
  line-height: 1.6;
  font-size: 1rem;
}

.summary-card,
.review-item,
.contact-panel,
.category-card,
.ba-item,
.process-item,
.intro-metric-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-glass-chip,
.intro-metric-card,
.category-card,
.summary-card,
.ba-item,
.process-item,
.review-item {
  opacity: 0;
  transform: translateY(28px);
}

.hero-glass-chip.is-revealed,
.intro-metric-card.is-revealed,
.category-card.is-revealed,
.summary-card.is-revealed,
.ba-item.is-revealed,
.process-item.is-revealed,
.review-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s ease var(--reveal-delay, 0ms),
    transform 0.7s ease var(--reveal-delay, 0ms),
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.feature-media {
  position: relative;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: auto 0 -18px 0;
  height: 120px;
  background: radial-gradient(circle at center, rgba(242, 214, 162, 0.16), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.category-card:hover,
.ba-item:hover {
  box-shadow: 0 34px 72px rgba(15, 23, 42, 0.22);
}

.category-card img,
.ba-item img {
  transition: transform 0.8s ease, filter 0.35s ease;
}

.category-card:hover img,
.ba-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.02);
}

.section-heading h2,
.categories-copy h2,
.about-layout h2,
.cta-box h2,
.page-hero h1,
.contact-panel h2,
.service-feature-copy h2,
.about-story-copy h2,
.feature-copy h3 {
  text-wrap: balance;
}

.reviews-section .section-heading,
.about-section .section-heading,
.featured-section .section-heading {
  position: relative;
}

.cta-box {
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 214, 162, 0.22), transparent 66%);
  pointer-events: none;
}

.site-footer {
  background:
    linear-gradient(to top, rgba(8, 11, 18, 0.78), rgba(8, 11, 18, 0.48)),
    linear-gradient(90deg, rgba(255, 45, 122, 0.04), rgba(123, 44, 255, 0.05));
}

.footer-brand,
.footer-info {
  color: #f8fafc;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.64);
}

.legal-page-section {
  padding: 28px 0 90px;
}

.legal-layout {
  display: block;
}

.legal-card {
  padding: 36px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.legal-card h2 {
  font-size: 1.35rem;
  margin: 28px 0 12px;
  color: var(--text);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.legal-card ul {
  margin: 10px 0 0 20px;
}

.legal-card li + li {
  margin-top: 8px;
}

.legal-card a {
  color: var(--text);
}

.legal-card a:hover {
  color: var(--accent);
}


@media (max-width: 1150px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-sidecard {
    max-width: 520px;
    margin-bottom: 48px;
  }

  .intro-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-grid,
  .hero-orb,
  .hero-scroll-cue {
    display: none;
  }

  .hero-full .hero-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-luxury-band {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-service-ribbon {
    gap: 8px;
  }

  .hero-sidecard {
    margin-bottom: 0;
    padding: 22px;
    border-radius: 22px;
  }

  .intro-band {
    margin-top: 0;
  }

  .intro-band-inner {
    padding: 24px 20px;
    border-radius: 24px 24px 0 0;
  }
}

@media (max-width: 640px) {
  .hero-copy .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-service-ribbon span {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .hero-sidecard-list div {
    grid-template-columns: 36px 1fr;
  }
}

/* =========================
   REFINEMENT PASS
   same-size hero, no gold, stronger main content
   ========================= */

.scroll-progress span {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.hero-orb,
.hero-grid,
.hero-sidecard,
.hero-scroll-cue,
.hero-service-ribbon {
  display: none !important;
}

.hero-inner,
.hero.hero-full .container.hero-inner {
  display: block !important;
  height: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.hero-copy {
  max-width: 720px;
  padding-top: 0;
  padding-bottom: 40px;
  transform: none !important;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-luxury-band {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin-top: 14px;
}

.hero-glass-chip {
  padding: 14px 16px 15px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-glass-chip strong {
  margin-bottom: 5px;
  font-size: 0.77rem;
  letter-spacing: 0.14em;
  color: #fff;
}

.hero-glass-chip span {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
}

.btn-primary {
  box-shadow:
    0 14px 30px rgba(255, 45, 122, 0.18),
    0 8px 24px rgba(123, 44, 255, 0.22);
}

.btn-primary:hover {
  box-shadow:
    0 18px 36px rgba(255, 45, 122, 0.24),
    0 12px 32px rgba(123, 44, 255, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: #1f2937;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.btn-secondary:hover {
  color: var(--accent-2);
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.16),
    0 0 18px rgba(123, 44, 255, 0.1);
}

.intro-band {
  margin-top: 0;
}

.intro-band-inner {
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 252, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 24px 65px rgba(15, 23, 42, 0.12);
}

.intro-metrics {
  margin-top: 8px;
  gap: 20px;
}

.intro-metric-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(245, 247, 252, 0.8));
  border: 1px solid rgba(123, 44, 255, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.intro-metric-card:hover {
  border-color: rgba(255, 45, 122, 0.18);
  box-shadow: 0 28px 56px rgba(15, 23, 42, 0.14);
}

.categories-section > .container,
.services-summary-section > .container,
.featured-section > .container,
.about-section > .container,
.about-process-section > .container,
.reviews-section > .container,
.cta-section > .container {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(241, 244, 250, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.categories-section > .container::before,
.services-summary-section > .container::before,
.featured-section > .container::before,
.about-section > .container::before,
.about-process-section > .container::before,
.reviews-section > .container::before,
.cta-section > .container::before {
  background: radial-gradient(circle, rgba(255, 45, 122, 0.1), transparent 62%);
}

.categories-section > .container::after,
.services-summary-section > .container::after,
.featured-section > .container::after,
.about-section > .container::after,
.about-process-section > .container::after,
.reviews-section > .container::after,
.cta-section > .container::after {
  background: radial-gradient(circle, rgba(123, 44, 255, 0.1), transparent 64%);
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 12ch;
}

.categories-layout,
.about-layout,
.about-process-grid {
  gap: 72px;
}

.categories-copy h2,
.about-layout h2,
.about-process-grid h2,
.section-heading h2 {
  position: relative;
}

.categories-copy h2::after,
.about-layout h2::after,
.about-process-grid h2::after,
.section-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.category-card,
.summary-card,
.review-item,
.process-item,
.ba-item,
.intro-metric-card {
  border-radius: 24px;
}

.category-card {
  min-height: 420px;
}

.category-card span {
  left: 20px;
  bottom: 22px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.summary-card,
.review-item,
.process-item {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(243, 246, 251, 0.72));
  border: 1px solid rgba(123, 44, 255, 0.08);
}

.summary-card:hover,
.review-item:hover,
.process-item:hover {
  border-color: rgba(255, 45, 122, 0.18);
  box-shadow: 0 26px 56px rgba(15, 23, 42, 0.14);
}

.summary-card h3,
.process-item h3,
.review-item span {
  position: relative;
  z-index: 1;
}

.before-after {
  gap: 18px;
}

.ba-item {
  border-radius: 24px;
}

.feature-row {
  gap: 64px;
}

.feature-copy {
  padding-right: 16px;
}

.feature-copy p {
  font-size: 1.05rem;
}

.feature-media::after {
  background: radial-gradient(circle at center, rgba(123, 44, 255, 0.14), transparent 68%);
}

.about-points {
  gap: 20px;
}

.about-points div {
  padding: 24px 18px 22px 0;
  border-top: 1px solid rgba(123, 44, 255, 0.1);
}

.about-points strong {
  font-size: 1.08rem;
  color: #111827;
}

.process-item strong {
  box-shadow: 0 14px 26px rgba(123, 44, 255, 0.22);
}

.reviews-list {
  gap: 24px;
}

.review-item {
  min-height: 250px;
}

.review-item p {
  font-size: 1.02rem;
}

.cta-box {
  background:
    radial-gradient(circle at top right, rgba(123, 44, 255, 0.12), transparent 35%),
    radial-gradient(circle at bottom left, rgba(255, 45, 122, 0.12), transparent 35%),
    rgba(255, 255, 255, 0.78);
}

.cta-box::before {
  background: radial-gradient(circle, rgba(255, 45, 122, 0.18), transparent 66%);
}

@media (max-width: 980px) {
  .hero-full {
    min-height: 92svh;
    height: 92svh;
  }

  .hero-inner {
    padding-top: 156px;
  }

  .hero-copy {
    max-width: 640px;
    padding-bottom: 34px;
  }

  .hero h1 {
    max-width: 10.2ch;
    font-size: clamp(3.25rem, 6.2vw, 4.7rem);
  }
}

@media (max-width: 768px) {
  .hero-copy {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-luxury-band {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .intro-band-inner {
    border-radius: 24px;
  }

  .categories-layout,
  .about-layout,
  .about-process-grid,
  .feature-row {
    gap: 34px;
  }

  .category-card {
    min-height: 320px;
  }
}

/* =========================
   HERO TEXT LOCK
   Final override so the homepage headline matches the approved layout
   ========================= */

.hero .hero-copy h1 {
  max-width: none !important;
  width: auto !important;
  font-size: clamp(3.95rem, 5.6vw, 5.45rem) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.05em !important;
  margin-bottom: 22px !important;
}

.hero .hero-copy h1 .hero-line {
  display: block;
  white-space: nowrap;
}

.hero .hero-copy h1 .hero-line-one .accent {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .hero .hero-copy h1 {
    font-size: clamp(3.25rem, 6.2vw, 4.7rem) !important;
  }
}

@media (max-width: 768px) {
  .hero.hero-full {
    height: auto !important;
    min-height: 100svh !important;
    display: block !important;
  }

  .hero.hero-full .container.hero-inner {
    display: block !important;
    height: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 108px 20px 28px !important;
  }

  .hero.hero-full .hero-copy {
    max-width: 100% !important;
    padding: 0 !important;
  }

  .hero.hero-full .hero-copy .eyebrow {
    margin-bottom: 14px !important;
    font-size: 0.64rem !important;
    letter-spacing: 0.14em !important;
    padding: 9px 14px !important;
  }

  .hero .hero-copy h1 {
    font-size: clamp(2.55rem, 10.8vw, 3.55rem) !important;
    line-height: 0.94 !important;
    margin-bottom: 14px !important;
  }

  .hero .hero-copy h1 .hero-line {
    white-space: nowrap !important;
  }

  .hero-text {
    max-width: 100% !important;
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    margin-bottom: 18px !important;
  }

  .hero-actions {
    gap: 10px !important;
    max-width: none !important;
  }

  .hero-actions .btn {
    width: auto !important;
    min-height: 42px !important;
    padding: 0 14px !important;
    font-size: 0.69rem !important;
    letter-spacing: 0.08em !important;
    border-radius: 16px !important;
  }

  .hero-luxury-band {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 12px !important;
    max-width: 100% !important;
  }

  .hero-glass-chip {
    padding: 14px 14px 15px !important;
    border-radius: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .hero-glass-chip strong {
    font-size: 0.74rem !important;
    color: rgba(255, 255, 255, 0.96) !important;
  }

  .hero-glass-chip span {
    font-size: 0.84rem !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.72) !important;
  }

  .hero-glass-chip::before {
    opacity: 1 !important;
    background: linear-gradient(90deg, rgba(255, 45, 122, 0.92), rgba(123, 44, 255, 0.92)) top left / 100% 3px no-repeat !important;
  }

  .hero-glass-chip::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 1px !important;
    background: rgba(255, 255, 255, 0.1) !important;
  }
}

/* =========================
   HOMEPAGE BODY REFINEMENT
   ========================= */

.intro-band {
  padding: 54px 0 32px;
}

.intro-band-inner {
  position: relative;
  overflow: hidden;
  padding: 36px 38px 34px;
  border-radius: 30px;
}

.intro-band-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.intro-metrics {
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 22px;
}

.intro-metric-card {
  position: relative;
  padding: 24px 24px 26px;
}

.intro-metric-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.75;
}

.categories-section > .container,
.services-summary-section > .container,
.featured-section > .container,
.about-section > .container,
.about-process-section > .container,
.reviews-section > .container,
.cta-section > .container {
  padding: 64px;
  border-radius: 40px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 52px;
}

.section-heading h2,
.categories-copy h2,
.about-layout h2,
.about-process-grid h2 {
  max-width: 11ch;
}

.categories-layout {
  grid-template-columns: 0.88fr 1.12fr;
  gap: 72px;
}

.categories-copy p {
  max-width: 520px;
}

.categories-links {
  gap: 14px;
}

.categories-links a {
  padding: 13px 18px;
  font-weight: 600;
}

.category-cards {
  grid-template-columns: 1.05fr 0.95fr 0.88fr;
  gap: 18px;
}

.category-card {
  min-height: 420px;
  border-radius: 24px;
}

.category-card:nth-child(2) {
  transform: translateY(28px);
}

.category-card:nth-child(3) {
  min-height: 360px;
  transform: translateY(64px);
}

.category-card span {
  left: 20px;
  bottom: 20px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.46);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.services-summary-grid {
  gap: 24px;
}

.summary-card {
  padding: 32px 30px 30px;
  border-radius: 24px;
}

.summary-card h3 {
  font-size: 1.42rem;
}

.summary-card p {
  font-size: 1rem;
}

.featured-section .section-heading,
.reviews-section .section-heading {
  max-width: 720px;
}

.feature-row {
  grid-template-columns: 1.02fr 0.98fr;
  gap: 70px;
  margin-bottom: 98px;
}

.before-after {
  gap: 16px;
}

.ba-item {
  border-radius: 22px;
}

.ba-tag {
  background: rgba(255, 255, 255, 0.94);
  color: #1f2937;
}

.feature-copy {
  position: relative;
  padding-left: 28px;
}

.feature-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--accent), rgba(123, 44, 255, 0.16));
}

.feature-copy p {
  max-width: 520px;
}

.about-layout {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 76px;
}

.about-body > p {
  margin-bottom: 40px;
}

.about-points {
  gap: 20px;
}

.about-points div {
  padding: 22px 18px 20px;
  border-top: 0;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.58), rgba(245, 247, 252, 0.38));
  border: 1px solid rgba(123, 44, 255, 0.08);
}

.about-points strong {
  color: #111827;
  font-size: 1.08rem;
}

.about-points span {
  color: #5b6472;
}

.about-process-grid {
  grid-template-columns: 0.74fr 1.26fr;
  gap: 76px;
}

.about-process-list {
  gap: 20px;
}

.process-item {
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 28px 30px;
  border-radius: 24px;
}

.process-item p {
  max-width: 560px;
}

.reviews-list {
  gap: 24px;
}

.review-item {
  position: relative;
  min-height: 260px;
  padding: 34px 30px 28px;
  border-radius: 24px;
}

.review-item::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(123, 44, 255, 0.08);
}

.review-item p {
  font-size: 1.02rem;
}

.cta-box {
  align-items: end;
  padding: 52px 54px;
  border-radius: 32px;
}

.cta-box h2 {
  max-width: 11ch;
}

.cta-box .btn {
  min-width: 220px;
}

@media (max-width: 1150px) {
  .categories-layout,
  .feature-row,
  .about-layout,
  .about-process-grid {
    gap: 38px;
  }

  .category-card:nth-child(2),
  .category-card:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 768px) {
  .intro-band {
    padding: 38px 0 24px;
  }

  .intro-band-inner {
    padding: 28px 22px 24px;
  }

  .intro-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .categories-section > .container,
  .services-summary-section > .container,
  .featured-section > .container,
  .about-section > .container,
  .about-process-section > .container,
  .reviews-section > .container,
  .cta-section > .container {
    padding: 34px 22px;
    border-radius: 28px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

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

  .category-card {
    min-height: 300px;
  }

  .feature-copy {
    padding-left: 20px;
  }

  .summary-card,
  .review-item,
  .process-item {
    padding: 24px 22px;
    border-radius: 20px;
  }

  .cta-box {
    padding: 34px 24px;
    align-items: start;
  }

  .cta-box .btn {
      min-width: 0;
      width: 100%;
  }
}

/* =========================
   BODY REFINEMENT V2
   Keep Featured Services styling; simplify everything else
   ========================= */

.categories-section > .container,
.services-summary-section > .container,
.about-section > .container,
.about-process-section > .container,
.reviews-section > .container,
.cta-section > .container {
  opacity: 1 !important;
  transform: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.categories-section > .container::before,
.services-summary-section > .container::before,
.about-section > .container::before,
.about-process-section > .container::before,
.reviews-section > .container::before,
.cta-section > .container::before {
  display: none !important;
}

.categories-section > .container::after,
.services-summary-section > .container::after,
.about-section > .container::after,
.about-process-section > .container::after,
.reviews-section > .container::after,
.cta-section > .container::after {
  display: none !important;
}

.categories-section,
.services-summary-section,
.about-section,
.about-process-section,
.reviews-section,
.cta-section,
.categories-section h2,
.services-summary-section h2,
.about-section h2,
.about-process-section h2,
.reviews-section h2,
.cta-section h2,
.categories-copy p,
.about-body > p,
.summary-card p,
.process-item p,
.review-item p {
  color: #f8fafc !important;
}

.intro-band-inner {
  background:
    linear-gradient(160deg, rgba(16, 20, 30, 0.9), rgba(22, 26, 38, 0.82)) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22) !important;
}

.intro-band-inner p:first-child,
.intro-band-small,
.intro-metric-card strong,
.intro-metric-kicker {
  color: #f8fafc !important;
}

.intro-metric-card {
  background: transparent !important;
  border: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 20px 0 0 !important;
}

.intro-metric-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

.category-card,
.summary-card,
.review-item,
.process-item,
.about-points div {
  opacity: 1 !important;
  transform: none !important;
}

.category-card,
.summary-card,
.review-item,
.process-item {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.summary-card:hover,
.review-item:hover,
.process-item:hover,
.category-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

.summary-card::before,
.summary-card::after,
.review-item::before,
.review-item::after,
.process-item::before,
.category-card::before {
  display: none !important;
}

.summary-card h3,
.process-item h3,
.review-item span,
.about-points strong {
  color: #ffffff !important;
}

.summary-card,
.review-item,
.process-item {
  position: relative !important;
  padding: 0 0 0 22px !important;
  border-left: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 0 !important;
}

.summary-card::before,
.review-item::before,
.process-item::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -1px !important;
  width: 2px !important;
  height: 58px !important;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2)) !important;
  opacity: 1 !important;
}

.summary-card p,
.process-item p,
.review-item p,
.about-points span {
  color: rgba(241, 245, 249, 0.74) !important;
}

.about-points div {
  background: transparent !important;
  border: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 0 !important;
  padding: 22px 0 0 !important;
}

.process-item strong {
  box-shadow: none !important;
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  padding-top: 2px !important;
  color: var(--accent) !important;
}

.category-card:nth-child(2),
.category-card:nth-child(3) {
  transform: none !important;
}

.category-card {
  min-height: 350px !important;
}

.category-card span {
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  padding: 14px 0 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.cta-box {
  background:
    linear-gradient(160deg, rgba(16, 20, 30, 0.95), rgba(22, 26, 38, 0.9)) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.cta-box::before {
  opacity: 0.55 !important;
}

@media (max-width: 768px) {
  .categories-section > .container,
  .services-summary-section > .container,
  .about-section > .container,
  .about-process-section > .container,
  .reviews-section > .container,
  .cta-section > .container {
    padding: 0 !important;
  }

  .summary-card,
  .review-item,
  .process-item {
    padding-left: 18px !important;
  }
}

/* restore hero glass boxes after body effect cleanup */
.hero-glass-chip {
  opacity: 1 !important;
  transform: none !important;
}

/* keep Featured Services media visible after removing broad stagger effects */
.featured-section .ba-item,
.featured-section .feature-copy {
  opacity: 1 !important;
  transform: none !important;
}

/* intro band redesign inspired by editorial dark layout */
.intro-band {
  position: relative;
  padding: 72px 0 44px !important;
}

.intro-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.45;
  pointer-events: none;
}

.intro-band .container {
  position: relative;
  z-index: 1;
}

.intro-band-inner {
  display: grid !important;
  grid-template-columns: minmax(640px, 1.14fr) minmax(0, 0.86fr) !important;
  gap: 48px !important;
  align-items: start !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.intro-band-inner::before {
  display: none !important;
}

.intro-band-heading {
  grid-column: 1;
  grid-row: 1;
  padding-left: 14px;
  padding-right: 0;
  max-width: 760px;
}

.intro-band-heading .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem !important;
  letter-spacing: 0.24em !important;
  padding-left: 0;
  white-space: nowrap;
  overflow: visible;
}

.intro-band-heading h2 {
  max-width: none;
  margin: 0;
  color: #f8fafc !important;
  font-size: clamp(2.45rem, 3.05vw, 3.2rem) !important;
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 700;
  text-wrap: initial;
}

.intro-band-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.intro-band-copy {
  grid-column: 2;
  grid-row: 1;
  max-width: 720px;
  display: grid;
  gap: 16px;
  padding-top: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 28px;
}

.intro-band-copy p {
  margin: 0;
}

.intro-band-copy > p:first-child {
  color: rgba(248, 250, 252, 0.92) !important;
  font-size: 1.02rem !important;
  line-height: 1.75;
}

.intro-band-small {
  color: rgba(241, 245, 249, 0.68) !important;
  font-size: 0.95rem !important;
  line-height: 1.74;
  max-width: 620px !important;
}

.intro-metrics {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px !important;
  margin-top: 34px !important;
  padding-top: 0 !important;
}

.intro-metric-card {
  position: relative;
  padding: 18px 18px 18px 20px !important;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-left: 0 !important;
  border-radius: 18px !important;
  box-shadow: none !important;
}

.intro-metric-card::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 2px;
  height: calc(100% - 36px);
  background: linear-gradient(to bottom, var(--accent), var(--accent-2));
  border-radius: 999px;
}

.intro-metric-card::after {
  display: none !important;
}

.intro-metric-kicker {
  display: block;
  margin-bottom: 8px !important;
  color: #ffffff !important;
  font-size: 0.92rem !important;
  font-weight: 700;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
}

.intro-metric-kicker::after {
  display: none;
}

.intro-metric-card strong {
  color: rgba(241, 245, 249, 0.74) !important;
  font-size: 0.93rem !important;
  line-height: 1.66;
  font-weight: 500;
}

@media (max-width: 980px) {
  .intro-band-inner {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .intro-band-heading,
  .intro-band-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .intro-band-copy {
    max-width: 100%;
    gap: 14px;
    padding-top: 0;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 768px) {
  .intro-band {
    padding: 52px 0 28px !important;
  }

  .intro-band-heading h2 {
    font-size: clamp(2rem, 8.1vw, 2.7rem) !important;
    max-width: none;
  }

  .intro-band-heading h2::after {
    margin-top: 18px;
  }

  .intro-band-copy > p:first-child,
  .intro-band-small {
    font-size: 0.98rem !important;
    line-height: 1.7;
  }

  .intro-metrics {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-top: 24px !important;
  }

  .intro-metric-card {
    padding-left: 18px !important;
  }
}

/* homepage featured services slider + darker section treatment */
.featured-section {
  color: #f8fafc;
}

.featured-section > .container {
  background:
    linear-gradient(160deg, rgba(14, 18, 28, 0.94), rgba(22, 26, 38, 0.88)) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.featured-section h2,
.featured-section .feature-copy h3,
.featured-section .media-meta,
.featured-section .read-link {
  color: #f8fafc !important;
}

.featured-section .feature-copy p {
  color: rgba(241, 245, 249, 0.72) !important;
}

.featured-section .media-meta span:first-child {
  background: rgba(255, 255, 255, 0.12);
}

.feature-slider-shell {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

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

.feature-slider-shell .ba-before-wrap {
  width: 50%;
}

.feature-slider-shell .ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
}

.feature-slider-shell .ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2));
  z-index: 4;
}

.feature-slider-shell .ba-divider::before {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1rem;
  background: rgba(11, 18, 32, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-slider-shell .ba-label {
  position: absolute;
  top: 14px;
  z-index: 6;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(8, 13, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-slider-shell .ba-label-before {
  left: 14px;
}

.feature-slider-shell .ba-label-after {
  right: 14px;
}

@media (max-width: 768px) {
  .feature-slider-shell {
    border-radius: 18px;
  }
}

/* localized background image treatment for Why Next Level only */
.about-section {
  position: relative;
  isolation: isolate;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.about-section-bg {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 50%;
  width: min(100% - 28px, 1800px);
  transform: translateX(-50%);
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.98) brightness(0.82);
}

.about-section::before {
  display: none;
}

.about-section > .container {
  position: relative;
  z-index: 2;
  padding: 92px 74px !important;
}

.about-layout > div:first-child,
.about-body {
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.about-layout > div:first-child {
  align-self: start;
}

.about-body {
  display: grid;
  gap: 22px;
}

.about-layout > div:first-child > *,
.about-body > * {
  position: relative;
  z-index: 1;
}

.about-layout > div:first-child::before,
.about-body::before {
  content: "";
  position: absolute;
  inset: -16px -18px;
  background: rgba(14, 18, 28, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  mask: linear-gradient(#000 0 0);
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.about-layout > div:first-child::before {
  inset: -18px -22px -18px -22px;
}

.about-body::before {
  inset: -18px -22px;
}

.about-section .eyebrow,
.about-section h2,
.about-section p,
.about-section strong,
.about-section span {
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.24);
}

@media (max-width: 768px) {
  .about-section-bg {
    top: 12px;
    bottom: 12px;
    width: calc(100% - 20px);
  }

  .about-section::before {
    display: none;
  }

  .about-section > .container {
    padding: 42px 18px !important;
  }

  .about-layout > div:first-child,
  .about-body {
    padding: 0;
  }

  .about-layout > div:first-child::before,
  .about-body::before {
    inset: -10px -12px;
  }
}

/* featured services editorial refresh */
.featured-section {
  position: relative;
  isolation: isolate;
  padding: 112px 0 118px !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 45, 122, 0.08), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(123, 44, 255, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(12, 15, 24, 0.96), rgba(19, 23, 35, 0.98));
}

.featured-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 118px 118px;
  opacity: 0.34;
  pointer-events: none;
}

.featured-section > .container {
  position: relative;
  z-index: 1;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.featured-section > .container::before,
.featured-section > .container::after {
  display: none !important;
}

.featured-section .section-heading {
  max-width: 780px;
  margin-bottom: 58px;
}

.featured-section .section-heading .eyebrow {
  margin-bottom: 14px;
}

.featured-section .section-heading h2 {
  max-width: 10ch;
  color: #f8fafc !important;
}

.feature-row {
  position: relative;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 78px;
  align-items: center;
  margin-bottom: 112px;
  padding-bottom: 18px;
}

.feature-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
}

.feature-row:last-child::after {
  display: none;
}

.feature-media {
  position: relative;
}

.feature-media::before {
  content: "";
  position: absolute;
  inset: -22px -18px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 45, 122, 0.16), transparent 68%);
  pointer-events: none;
  filter: blur(12px);
  opacity: 0.75;
}

.feature-slider-shell {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feature-slider-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(8, 11, 18, 0.34), transparent);
  pointer-events: none;
  z-index: 1;
}

.feature-slider-shell .ba-divider::before {
  content: "<>";
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.media-meta {
  margin-top: 18px;
  color: rgba(241, 245, 249, 0.78);
}

.media-meta span:first-child {
  background: rgba(255, 255, 255, 0.1) !important;
}

.feature-copy {
  position: relative;
  padding-left: 0;
  isolation: isolate;
}

.feature-copy > * {
  position: relative;
  z-index: 1;
}

.feature-copy::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 10px;
  width: 2px;
  height: 132px;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2));
}

.feature-copy::after {
  display: none;
}

.feature-row:nth-of-type(1) .feature-copy::after {
  content: "01";
}

.feature-row:nth-of-type(2) .feature-copy::after {
  content: "02";
}

.feature-row:nth-of-type(3) .feature-copy::after {
  content: "03";
}

.feature-copy h3 {
  color: #f8fafc !important;
  font-size: clamp(2.7rem, 4.4vw, 4.35rem);
  line-height: 0.94;
  margin-bottom: 22px;
}

.feature-copy h3 span {
  padding-bottom: 14px;
}

.feature-copy h3 span::after {
  width: 96px;
  transform: scaleX(1);
}

.feature-copy p {
  max-width: 540px;
  color: rgba(241, 245, 249, 0.72) !important;
  font-size: 1.02rem;
  line-height: 1.82;
}

.read-link {
  color: #ffffff !important;
}

@media (max-width: 1150px) {
  .feature-row {
    gap: 44px;
    margin-bottom: 82px;
  }

  .feature-copy::before {
    left: -24px;
  }

  .feature-copy::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .featured-section {
    padding: 76px 0 82px !important;
  }

  .featured-section .section-heading {
    margin-bottom: 36px;
  }

  .feature-row {
    gap: 30px;
    margin-bottom: 66px;
    padding-bottom: 0;
  }

  .feature-row::after {
    bottom: -22px;
  }

  .feature-slider-shell {
    border-radius: 22px;
  }

  .feature-copy {
    padding-left: 18px;
  }

  .feature-copy::before {
    left: 0;
    top: 6px;
    height: 92px;
  }

  .feature-copy::after {
    display: none;
  }

  .feature-copy h3 {
    font-size: clamp(2.15rem, 8.2vw, 3rem);
  }
}

.word-reveal {
  overflow: visible;
}

.word-reveal-word {
  display: inline-block;
  opacity: 0.06;
  filter: blur(10px);
  transform: translate3d(0, 0.8em, 0);
  will-change: opacity, transform, filter;
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.word-reveal.is-visible .word-reveal-word {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.word-reveal-soft .word-reveal-word {
  opacity: 0.02;
  filter: blur(8px);
  transform: translate3d(0, 0.55em, 0);
}

.word-reveal-linebreak {
  display: block;
  width: 100%;
  height: 0;
}

.services-editorial-section .editorial-service-copy,
.services-editorial-section .editorial-service-media {
  opacity: 1 !important;
  transform: none !important;
}

.services-editorial-section .editorial-link {
  transition: color 0.25s ease, transform 0.25s ease, letter-spacing 0.25s ease;
}

.services-editorial-section .editorial-link::before {
  transition: color 0.25s ease, transform 0.25s ease;
}

.services-editorial-section .editorial-link:hover {
  color: #ffffff;
  transform: translateX(6px);
  letter-spacing: 0.08em;
}

.services-editorial-section .editorial-link:hover::before {
  color: var(--accent-2);
  transform: translateX(4px);
}

/* services page layout refresh */
.services-editorial-section {
  position: relative;
  padding: 76px 0 56px !important;
}

.services-editorial-section > .container {
  display: grid;
  gap: 30px;
}

.services-editorial-section .editorial-service,
.services-editorial-section .editorial-service.editorial-service-reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) !important;
  gap: 34px !important;
  align-items: stretch;
  margin-bottom: 0 !important;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(16, 20, 30, 0.9), rgba(24, 29, 42, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.services-editorial-section .editorial-service-copy,
.services-editorial-section .editorial-service-reverse .editorial-service-copy {
  order: 1 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0 8px 28px;
  transform: none !important;
}

.services-editorial-section .editorial-service-media,
.services-editorial-section .editorial-service-reverse .editorial-service-media {
  order: 2 !important;
  height: 420px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
}

.services-editorial-section .editorial-line {
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(to bottom, rgba(255, 45, 122, 0.95), rgba(123, 44, 255, 0.3));
}

.services-editorial-section .editorial-number {
  margin-bottom: 12px;
  font-size: clamp(1rem, 1.4vw, 1.24rem);
  letter-spacing: 0.01em;
}

.services-editorial-section .editorial-service h2 {
  font-size: clamp(2.1rem, 3vw, 3.25rem);
  line-height: 0.94;
  margin-bottom: 16px;
}

.services-editorial-section .editorial-text {
  max-width: 42ch;
  font-size: 0.98rem;
  line-height: 1.72;
  margin-bottom: 20px;
}

.services-editorial-section .editorial-link {
  margin-bottom: 22px;
}

.services-editorial-section .editorial-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 14px;
}

.services-editorial-section .editorial-points li {
  font-size: 0.92rem;
  line-height: 1.45;
  padding: 0 0 0 18px;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.services-editorial-section .editorial-points li::before {
  top: 1.05rem;
  width: 6px;
  height: 6px;
}

@media (max-width: 1150px) {
  .services-editorial-section .editorial-service,
  .services-editorial-section .editorial-service.editorial-service-reverse {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    padding: 22px;
  }

  .services-editorial-section .editorial-service-copy,
  .services-editorial-section .editorial-service-reverse .editorial-service-copy,
  .services-editorial-section .editorial-service-media,
  .services-editorial-section .editorial-service-reverse .editorial-service-media {
    order: initial !important;
  }

  .services-editorial-section .editorial-service-copy,
  .services-editorial-section .editorial-service-reverse .editorial-service-copy {
    padding: 6px 0 0 24px;
  }

  .services-editorial-section .editorial-service-media {
    height: 360px;
  }

  .services-editorial-section .editorial-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .services-editorial-section {
    padding: 56px 0 38px !important;
  }

  .services-editorial-section > .container {
    gap: 22px;
  }

  .services-editorial-section .editorial-service,
  .services-editorial-section .editorial-service.editorial-service-reverse {
    padding: 18px;
    border-radius: 22px;
  }

  .services-editorial-section .editorial-service-copy,
  .services-editorial-section .editorial-service-reverse .editorial-service-copy {
    padding-left: 20px;
  }

  .services-editorial-section .editorial-service-media {
    height: 290px;
    border-radius: 18px;
  }
}

/* services page compact info sections */
.service-detail-section {
  padding: 44px 0 24px !important;
}

.service-detail-section + .service-detail-section {
  padding-top: 20px !important;
}

.service-detail-section > .container {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.service-detail-section > .container::before,
.service-detail-section > .container::after {
  display: none !important;
}

.service-detail-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: end;
  gap: 24px;
  margin-bottom: 18px !important;
}

.service-detail-section .section-heading .eyebrow {
  margin-bottom: 10px;
}

.service-detail-section .section-heading h2 {
  max-width: none;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 0.96;
}

.service-detail-section .services-summary-grid {
  gap: 14px !important;
}

.service-detail-section .summary-card {
  min-height: 0;
  padding: 22px 20px 20px !important;
  border-radius: 18px !important;
  box-shadow: none !important;
  transform: none !important;
}

.service-detail-section .summary-card:hover {
  transform: none !important;
}

.service-detail-section .summary-card h3 {
  font-size: 1.1rem !important;
  margin-bottom: 10px;
  padding-bottom: 12px;
}

.service-detail-section .summary-card h3::after {
  width: 42px;
  height: 2px;
}

.service-detail-section .summary-card p {
  font-size: 0.95rem !important;
  line-height: 1.65;
}

.service-detail-section-clean .summary-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.service-detail-section-work .services-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.service-detail-section-work .summary-card {
  background: transparent !important;
  border: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 0 !important;
  padding: 18px 10px 8px 0 !important;
}

.service-detail-section-work .summary-card h3::after {
  width: 0;
}

.service-detail-section-popular .services-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.service-detail-section-popular .summary-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  padding-left: 58px !important;
}

.service-detail-section-popular .summary-card::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0.95;
}

.service-detail-section-popular .summary-card::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 30px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

@media (max-width: 980px) {
  .service-detail-section {
    padding: 36px 0 20px !important;
  }

  .service-detail-section .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .service-detail-section {
    padding: 30px 0 14px !important;
  }

  .service-detail-section .services-summary-grid,
  .service-detail-section-work .services-summary-grid,
  .service-detail-section-popular .services-summary-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .service-detail-section .summary-card,
  .service-detail-section-work .summary-card,
  .service-detail-section-popular .summary-card {
    padding: 18px 16px !important;
  }

  .service-detail-section-popular .summary-card {
    padding-left: 52px !important;
  }

  .service-detail-section-popular .summary-card::before {
    left: 16px;
    top: 18px;
  }

.service-detail-section-popular .summary-card::after {
    left: 24px;
    top: 26px;
  }
}

/* homepage mobile content cleanup only */
@media (max-width: 768px) {
  .intro-band {
    padding: 34px 0 18px !important;
  }

  .intro-band .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .intro-band::before {
    opacity: 0.22;
  }

  .intro-band-inner {
    gap: 14px !important;
  }

  .intro-band-heading {
    padding-left: 0 !important;
    margin-left: 0 !important;
    max-width: none !important;
    overflow: visible !important;
  }

  .intro-band-heading .eyebrow {
    display: block !important;
    margin-bottom: 10px !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.18em !important;
    padding-left: 0 !important;
    overflow: visible !important;
  }

  .intro-band-heading h2 {
    font-size: clamp(1.9rem, 8vw, 2.45rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.04em !important;
    overflow: visible !important;
  }

  .intro-band-heading h2::after {
    width: 56px !important;
    margin-top: 14px !important;
  }

  .intro-band-copy > p:first-child,
  .intro-band-small {
    font-size: 0.94rem !important;
    line-height: 1.62 !important;
  }

  .intro-metrics {
    gap: 12px !important;
    margin-top: 18px !important;
  }

  .intro-metric-card {
    padding: 12px 0 0 14px !important;
  }

  .intro-metric-kicker {
    margin-bottom: 5px !important;
    font-size: 0.78rem !important;
  }

  .intro-metric-card strong {
    font-size: 0.92rem !important;
    line-height: 1.48 !important;
  }

  .featured-section {
    padding: 56px 0 60px !important;
  }

  .featured-section .section-heading {
    margin-bottom: 18px !important;
  }

  .featured-section .section-heading h2 {
    max-width: none !important;
    font-size: clamp(2rem, 8vw, 2.6rem) !important;
  }

  .feature-row {
    gap: 18px !important;
    margin-bottom: 34px !important;
    padding: 18px 0 16px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr !important;
  }

  .feature-row .feature-media,
  .feature-row .feature-copy,
  .feature-row.reverse .feature-media,
  .feature-row.reverse .feature-copy {
    order: initial !important;
  }

  .feature-row::after {
    bottom: 0 !important;
  }

  .feature-slider-shell {
    aspect-ratio: 1 / 1.02 !important;
    border-radius: 22px !important;
  }

  .media-meta {
    margin-top: 8px !important;
    gap: 12px !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.12em !important;
    justify-content: flex-end !important;
  }

  .feature-copy {
    padding-left: 12px !important;
  }

  .feature-copy::before {
    left: 0 !important;
    top: 4px !important;
    width: 2px !important;
    height: 62px !important;
  }

  .feature-copy h3 {
    font-size: clamp(2.05rem, 8vw, 2.7rem) !important;
    line-height: 0.96 !important;
    margin-bottom: 12px !important;
  }

  .feature-copy h3 span {
    padding-bottom: 8px !important;
  }

  .feature-copy h3 span::after {
    width: 58px !important;
    height: 2px !important;
  }

  .feature-copy p {
    font-size: 0.94rem !important;
    line-height: 1.62 !important;
    margin-bottom: 14px !important;
  }

  .feature-copy .read-link {
    margin-top: 2px !important;
    font-size: 0.88rem !important;
    letter-spacing: 0.08em !important;
  }

  .feature-slider-shell .ba-label {
    top: 12px !important;
    padding: 8px 12px !important;
    border-radius: 999px !important;
    background: rgba(31, 37, 50, 0.92) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.14em !important;
  }

  .feature-slider-shell .ba-label-before {
    left: 12px !important;
  }

  .feature-slider-shell .ba-label-after {
    right: 12px !important;
  }

  .feature-slider-shell .ba-divider::before {
    width: 40px !important;
    height: 40px !important;
    font-size: 0.72rem !important;
    background: rgba(15, 20, 32, 0.96) !important;
  }

  .feature-media::before {
    display: none !important;
  }

  .services-summary-section,
  .about-process-section,
  .reviews-section,
  .cta-section {
    padding: 34px 0 !important;
  }

  .services-summary-section .section-heading,
  .about-process-section .section-heading,
  .reviews-section .section-heading {
    margin-bottom: 22px !important;
  }

  .services-summary-section .section-heading h2,
  .about-process-grid h2,
  .reviews-section .section-heading h2,
  .cta-box h2 {
    max-width: none !important;
    font-size: clamp(1.95rem, 8vw, 2.55rem) !important;
  }

  .services-summary-grid,
  .reviews-list {
    gap: 12px !important;
  }

  .summary-card,
  .review-item {
    padding: 18px 16px !important;
    border-radius: 18px !important;
  }

  .summary-card h3,
  .review-item p {
    font-size: 1rem !important;
  }

  .summary-card p,
  .review-item p,
  .process-item p,
  .about-body > p,
  .about-points span {
    font-size: 0.93rem !important;
    line-height: 1.6 !important;
  }

  .about-section-bg {
    width: calc(100% - 12px) !important;
    top: 8px !important;
    bottom: 8px !important;
  }

  .about-section > .container {
    padding: 30px 14px !important;
  }

  .about-layout {
    gap: 18px !important;
  }

  .about-layout > div:first-child::before,
  .about-body::before {
    inset: -8px -8px !important;
  }

  .about-body {
    gap: 16px !important;
  }

  .about-points {
    gap: 10px !important;
  }

  .about-points div {
    padding: 12px 0 0 !important;
  }

  .about-process-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .about-process-list {
    gap: 14px !important;
  }

  .process-item {
    grid-template-columns: 42px 1fr !important;
    padding: 18px 16px !important;
    border-radius: 18px !important;
    gap: 12px !important;
    align-items: start !important;
  }

  .process-item strong {
    width: 40px !important;
    height: 40px !important;
    font-size: 0.74rem !important;
  }

  .process-item > div {
    min-width: 0 !important;
  }

  .process-item h3 {
    font-size: 1.05rem !important;
    margin-bottom: 6px !important;
    line-height: 1.2 !important;
    max-width: none !important;
  }

  .cta-box {
    padding: 24px 0 0 !important;
    gap: 18px !important;
  }

  .cta-box .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .legal-card {
    padding: 24px;
    border-radius: 20px;
  }

  .legal-card h2 {
    font-size: 1.2rem;
  }

}
