/* ==========================================================================
   Davidson Smart Solutions - Editorial Luxury Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Color Palette - Warm Architectural Canvas */
  --bg-canvas: #f8f7f4;
  --bg-surface: #ffffff;
  --bg-subtle: #f1f0eb;
  --bg-dark: #181818;

  --text-primary: #001621;
  --text-secondary: #333333;
  --text-muted: #737373;
  --text-inverse: #f8f7f4;

  /* Vibrant Accent Gradient Colors (#C5A059 -> #C5A059) */
  --color-accent: #C5A059;
  --color-accent-hover: #C5A059;
  --color-accent-light: rgba(197, 160, 89, 0.08);
  --color-accent-gradient: linear-gradient(135deg, #C5A059 0%, #C5A059 100%);

  --border-subtle: rgba(24, 24, 24, 0.12);
  --border-strong: rgba(24, 24, 24, 0.25);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing & Structure */
  --max-width: 1320px;
  --header-height: 90px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition-fast: 0.25s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-canvas);
  color: var(--text-secondary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  color: var(--text-primary);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.section-statement h1,
.hero-title,
.hero h1 {
  font-family: var(--font-serif);
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}

h4 {
  font-size: 1.35rem;
  font-family: var(--font-sans);
  font-weight: 700;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.container.--full {
  max-width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 247, 244, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-fast);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-brand-logo-img {
  height: 80px;
  width: auto;
  max-width: 380px;
  object-fit: contain;
  display: block;
  transition: height 0.2s ease, max-width 0.2s ease;
}

@media (max-width: 900px) {
  .nav-brand-logo-img {
    height: 68px;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .nav-brand-logo-img {
    height: 62px;
    max-width: 270px;
  }
}

.brand-logo-text {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.01em;
  line-height: 1;
  user-select: none;
}

.brand-logo-text .accent-s {
  color: #C5A059;
}

body.business-portal .brand-logo-text .accent-s {
  color: #61709e !important;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  padding: 0.5rem 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition-fast);
}

.nav-link.active::after {
  width: 100%;
}

@media (min-width: 901px) {
  .main-nav {
    height: 100%;
    align-self: stretch;
  }

  .has-dropdown {
    height: 100%;
    display: inline-flex;
    align-items: center;
    align-self: stretch;
  }

  .nav-link {
    height: 100%;
    display: inline-flex;
    align-items: center;
    padding: 0 0.25rem;
    position: relative;
    align-self: stretch;
  }

  .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1;
    pointer-events: auto;
  }

  .nav-link::after {
    bottom: calc(50% - 0.95rem);
    left: 0;
    z-index: 2;
  }

  .nav-link:hover::after {
    width: 100%;
  }

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

.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition-fast);
  z-index: 100;
}

.dropdown-item {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--bg-canvas);
  color: var(--color-accent);
  padding-left: 1.5rem;
}

/* Desktop Visual Cards Mega Dropdown (Osmo Concept - Desktop Only) */
@media (min-width: 901px) {
  .has-mega-dropdown {
    position: static !important;
  }

  .site-header {
    position: sticky;
  }

  .site-header .header-inner {
    position: relative;
  }

  .has-mega-dropdown .mega-dropdown-menu {
    position: absolute;
    top: 100%;
    margin-top: 0.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    width: min(96vw, 1260px);
    min-width: 0;
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.08));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
    z-index: 1100;
  }

  /* Compact width for Industry Professionals mega dropdown */
  .has-mega-dropdown .mega-dropdown-menu.pro-mega-dropdown-menu {
    width: min(92vw, 760px);
  }

  .pro-mega-dropdown-menu .about-mega-container {
    grid-template-columns: 310px 1fr;
    gap: 1.25rem;
  }

  /* Invisible hover bridge spanning between navbar bottom edge and mega dropdown card */
  .has-mega-dropdown .mega-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -0.75rem;
    left: 0;
    width: 100%;
    height: 0.75rem;
    background: transparent;
    pointer-events: auto;
  }

  .has-mega-dropdown:hover .mega-dropdown-menu,
  .has-mega-dropdown .mega-dropdown-menu:hover,
  .mega-dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .mobile-dropdown-list {
    display: none !important;
  }

  .mega-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .mega-cards-grid {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent, #0066cc) rgba(0, 0, 0, 0.06);
    -webkit-overflow-scrolling: touch;
  }

  .mega-cards-grid::-webkit-scrollbar {
    height: 6px;
  }

  .mega-cards-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
  }

  .mega-cards-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
  }

  .mega-cards-grid::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent, #0066cc);
  }

  .mega-card-item {
    position: relative;
    flex: 0 0 270px;
    width: 270px;
    height: 190px;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  }

  .mega-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mega-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0.08) 100%);
    transition: background 0.35s ease;
  }

  .mega-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .mega-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.01em;
  }

  .mega-card-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  }

  .mega-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(158, 139, 125, 0.4);
  }

  .mega-card-item:hover .mega-card-bg {
    transform: scale(1.07);
  }

  .mega-card-item:hover .mega-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.38) 55%, rgba(0, 0, 0, 0.12) 100%);
  }

  .mega-card-item:hover .mega-card-arrow {
    background: var(--color-accent, #C5A059);
    border-color: var(--color-accent, #C5A059);
    color: #ffffff;
    transform: translateX(3px);
  }

  .mega-dropdown-footer {
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.08));
  }

  .mega-footer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    background: var(--bg-canvas, #f8f7f4);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.92rem;
    font-weight: 500;
    transition: background 0.25s ease;
  }

  .mega-footer-link:hover {
    background: rgba(158, 139, 125, 0.06);
  }

  /* About Mega Dropdown Layout (Featured Spotlight Image + Structured Text Link Grid) */
  .about-mega-container {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 1.5rem;
    align-items: stretch;
  }

  .about-mega-feature {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 280px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
  }

  .about-feature-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .about-mega-feature:hover .about-feature-bg {
    transform: scale(1.05);
  }

  .about-feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.5) 60%, rgba(15, 23, 42, 0.15) 100%);
  }

  .about-feature-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
  }

  .about-feature-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    margin-bottom: 0.6rem;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .about-feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.4rem;
    color: #ffffff;
    letter-spacing: -0.01em;
  }

  .about-feature-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .about-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
  }

  .about-mega-feature:hover .about-feature-link {
    gap: 0.65rem;
    color: var(--color-accent, #C5A059);
  }

  .about-mega-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem 1.5rem;
    align-content: center;
    padding: 0.5rem 0;
  }

  .pro-mega-links-single {
    grid-template-columns: 1fr !important;
  }

  .about-link-item {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .about-link-item:hover {
    background: rgba(241, 245, 249, 0.7);
    transform: translateX(4px);
    box-shadow: none;
  }

  .about-link-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(158, 139, 125, 0.08);
    color: var(--color-accent, #C5A059);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  }

  .about-link-item:hover .about-link-icon {
    background: var(--color-accent, #C5A059);
    color: #ffffff;
    transform: scale(1.06);
  }

  .about-link-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .about-link-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary, #0f172a);
    line-height: 1.3;
    transition: color 0.2s ease;
  }

  .about-link-item:hover .about-link-title {
    color: var(--color-accent, #C5A059);
  }

  .about-link-desc {
    font-size: 0.86rem;
    color: var(--text-secondary, #64748b);
    line-height: 1.35;
    margin-top: 0.25rem;
  }

  .about-link-arrow {
    font-size: 0.85rem;
    color: #cbd5e1;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .about-link-item:hover .about-link-arrow {
    color: var(--color-accent, #C5A059);
    transform: translateX(4px);
  }
}

/* Mobile View Fallback */
@media (max-width: 900px) {

  .mega-cards-container,
  .about-mega-container {
    display: none !important;
  }

  .mobile-dropdown-list {
    display: block !important;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
}

.mobile-actions-wrapper {
  display: none;
}

/* Editorial Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #C5A059 0%, #C5A059 100%);
  background-size: 160% 160%;
  border: none;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(158, 139, 125, 0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  background-position: 100% 0;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(137, 120, 108, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  background: var(--text-primary);
  color: var(--text-inverse);
  border-color: var(--text-primary);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  border-bottom: 1.5px solid var(--text-primary);
  padding-bottom: 0.2rem;
  transition: var(--transition-fast);
}

.link-arrow i {
  transition: transform 0.25s ease;
  color: var(--color-accent);
}

.link-arrow:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.link-arrow:hover i {
  transform: translateX(5px);
}

/*   Davidson Smart Solutions - Editorial Luxury Design System
 *   ========================================================================== */

/* Editorial Full-Screen Hero Sections */
.hero-editorial,
.hero-editorial-business,
.hero-editorial-about,
.hero-editorial-automation,
.hero-editorial-contact,
.hero-editorial-portfolio,
.hero-editorial-blog,
.hero-editorial-pro {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  height: calc(100vh - var(--header-height));
  width: 100%;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-subtle);
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  overflow: hidden;
}

.hero-editorial {
  align-items: flex-start !important;
  padding-top: 140px !important;
  overflow: hidden;
  position: relative;
}

.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url('/assets/Davidson-House-Main.jpg');
  background-position: center var(--hero-bg-y, 10%);
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(var(--hero-bg-scale, 1));
  transform-origin: center top;
  will-change: transform;
  pointer-events: none;
}

.hero-bg-layer::after {
  display: none !important;
}

.hero-editorial-business {
  position: relative;
  overflow: hidden;
  background-image: none !important;
}

.hero-editorial-business .hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url('/assets/Business-Hero.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(var(--hero-bg-scale, 1));
  transform-origin: center center;
  will-change: transform;
  pointer-events: none;
}

.hero-editorial-about {
  background-image: url('/assets/images/about_hero_background.jpg');
}

.hero-editorial-automation {
  background-image: url('/assets/images/pro_hero_white_grey.jpg');
}

.hero-editorial-contact {
  background-image: url('/assets/images/contact_hero_white_grey.jpg');
}

.hero-editorial-portfolio {
  background-image: url('/assets/images/portfolio_hero_white_grey.jpg');
}

.hero-editorial-blog {
  background-image: url('/assets/images/blog_hero_white_grey.jpg');
}

.hero-editorial-pro {
  background-image: url('/assets/images/pro_hero_white_grey.jpg');
}

/* White Veil Overlay for Home, Business, About & Automation Hero Sections */
.hero-editorial::before,
.hero-editorial-business::before,
.hero-editorial-about::before,
.hero-editorial-automation::before,
.hero-editorial-contact::before,
.hero-editorial-portfolio::before,
.hero-editorial-blog::before,
.hero-editorial-pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(248, 247, 244, 0.82);
  pointer-events: none;
  z-index: 1;
}

/* /* Index Hero Overlay */
.hero-editorial::before {
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}

/* Business Hero Slight Dark Overlay for Premium Contrast */
.hero-editorial-business::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
  z-index: 1;
  display: block !important;
  opacity: 1 !important;
}

.hero-editorial-pro::before {
  background: linear-gradient(to right, rgba(248, 247, 244, 0.93) 0%, rgba(248, 247, 244, 0.82) 65%, rgba(248, 247, 244, 0.68) 100%);
}

/* Blinking Camera Status LED Indicator */
.hero-camera-dot {
  display: none !important;
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #10b981;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 4px #10b981, 0 0 8px rgba(16, 185, 129, 0.8);
  animation: cameraBlink 2s infinite steps(1, start);
}

@keyframes cameraBlink {

  0%,
  49.9% {
    opacity: 1;
    box-shadow: 0 0 4px #10b981, 0 0 8px rgba(16, 185, 129, 0.85);
  }

  50%,
  100% {
    opacity: 0;
    box-shadow: none;
  }
}

.hero-editorial-contact::before,
.hero-editorial-portfolio::before,
.hero-editorial-blog::before {
  background: linear-gradient(to right, rgba(248, 247, 244, 0.85) 0%, rgba(248, 247, 244, 0.55) 60%, rgba(248, 247, 244, 0.35) 100%);
}

.hero-editorial-about::before {
  background: linear-gradient(to right, rgba(248, 247, 244, 0.93) 0%, rgba(248, 247, 244, 0.82) 65%, rgba(248, 247, 244, 0.68) 100%);
}

.hero-editorial .container,
.hero-editorial-business .container,
.hero-editorial-about .container,
.hero-editorial-automation .container,
.hero-editorial-contact .container,
.hero-editorial-portfolio .container,
.hero-editorial-blog .container,
.hero-editorial-pro .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-editorial .container {
  margin-top: 0;
}

.hero-editorial-contact .container,
.hero-editorial-portfolio .container,
.hero-editorial-blog .container {
  margin-top: -3.5rem;
}

.hero-editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: flex-end;
}

.hero-display-title {
  font-family: var(--font-sans);
  font-weight: 900;
  letter-spacing: -0.035em;
  font-size: clamp(3.5rem, 6.5vw, 6.2rem);
  line-height: 1.05;
  color: var(--text-primary);
}

.hero-display-title em {
  font-style: italic;
  color: var(--color-accent, #C5A059);
  -webkit-text-fill-color: var(--color-accent, #C5A059);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  display: inline-block;
  padding-right: 0.15em;
  padding-bottom: 0.25em;
  margin-bottom: -0.25em;
}

/* Hero Title Line-by-Line Bottom-Up Reveal Animation */
.hero-title-line-mask {
  display: block;
  overflow: hidden;
  padding-bottom: 0.25em;
  margin-bottom: -0.25em;
  padding-right: 0.25em;
  margin-right: -0.25em;
}

.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(115%);
  animation: heroLineReveal 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
  padding-right: 0.25em;
  padding-bottom: 0.25em;
  margin-bottom: -0.25em;
}

.hero-title-line-mask:nth-child(1) .hero-title-line {
  animation-delay: 0.12s;
}

.hero-title-line-mask:nth-child(2) .hero-title-line {
  animation-delay: 0.32s;
}

.hero-title-line-mask:nth-child(3) .hero-title-line {
  animation-delay: 0.52s;
}

.hero-title-line-mask:nth-child(4) .hero-title-line {
  animation-delay: 0.72s;
}

/* Desktop Full-Width Single-Line Hero Title */
@media (min-width: 992px) {
  .hero-editorial .hero-editorial-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    justify-items: center;
  }

  .hero-editorial .hero-display-title {
    font-size: clamp(3.4rem, 5.8vw, 7rem);
    font-weight: 900;
    white-space: nowrap;
    text-align: center;
  }

  .hero-editorial .hero-display-title em {
    color: #D4AF37 !important;
    -webkit-text-fill-color: #D4AF37 !important;
    padding-right: 0;
  }

  .hero-editorial .hero-title-line-mask {
    display: inline-block;
    margin-right: 0;
    padding-right: 0;
    vertical-align: bottom;
  }

  .hero-editorial .hero-title-line {
    display: inline-block;
    padding-right: 0;
  }
}

@keyframes heroLineReveal {
  0% {
    opacity: 0;
    transform: translateY(115%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

.hero-text-block {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-left: 3px solid var(--color-accent) !important;
  border-radius: 0 !important;
  padding: 0.25rem 0 0.25rem 1.75rem !important;
  box-shadow: none !important;
  position: relative;
}

.hero-text-block>*,
.hero-sub-content>* {
  opacity: 0;
  transform: translateX(-100%);
  animation: slideInFromRedLine 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
}

.hero-text-block .hero-subtitle,
.hero-sub-content .hero-subtitle {
  font-size: 1.18rem;
  line-height: 1.65;
  color: #111111;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation-delay: 0.65s;
}

.hero-text-block>div,
.hero-sub-content>div {
  animation-delay: 0.85s;
}

@keyframes slideInFromRedLine {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-scroll-label {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  font-weight: 700;
  z-index: 2;
}

/* General Section Utility */
.section {
  padding: 6.5rem 0;
}

/* Statement Section */
.section-statement {
  position: relative;
  padding: 6.5rem 0;
  text-align: center;
  border-bottom: none;
  overflow: hidden;
}

.section-statement-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.section-statement-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.52);
  z-index: 2;
  pointer-events: none;
}

.section-statement-dark {
  background-color: #0b0f19;
}

.section-statement-dark .statement-title {
  color: #ffffff;
}

.section-statement-dark .scroll-word {
  color: rgba(255, 255, 255, 0.18) !important;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.3s ease;
}

.section-statement-dark .scroll-word.active {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.section-statement .container {
  position: relative;
  z-index: 3;
}

/* New Reference Layout for Business Statement & Video Section */
.section-statement-layout {
  padding: 5.5rem 0 4.5rem 0;
  background: var(--bg-body, #ffffff);
}

.statement-layout-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.statement-layout-label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #111111;
  display: inline-block;
  padding-top: 0.4rem;
}

.statement-layout-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 500;
  line-height: 1.25;
  color: #001621;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Scroll-reveal text contrast on white background */
.statement-layout-title .scroll-word {
  color: rgba(0, 22, 33, 0.18);
  transition: color 0.35s ease, opacity 0.35s ease;
}

.statement-layout-title .scroll-word.active {
  color: #001621;
}

/* Video Wrapper */
.statement-layout-video-wrap {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  aspect-ratio: 16 / 9;
  max-height: 560px;
  background: #000;
}

.statement-layout-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 868px) {
  .statement-layout-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .statement-layout-title {
    font-size: 1.8rem;
  }

  .statement-layout-video-wrap {
    aspect-ratio: 3 / 4;
    max-height: 580px;
    border-radius: 14px;
  }
}

/* Home Portal Split-Screen Statement & Video Layout */
.section-home-split {
  padding: 6.5rem 0;
  background: var(--bg-body, #ffffff);
}

.home-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.home-split-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.home-split-text-col .statement-layout-label {
  padding-top: 0;
}

.home-split-text-col .statement-layout-title {
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  line-height: 1.28;
}

.home-split-video-col {
  width: 100%;
}

.home-split-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
  background: #000;
}

.home-split-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .home-split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .home-split-video-wrap {
    aspect-ratio: 16 / 10;
    border-radius: 14px;
  }
}

/* Founder Quote Feature Section */
.founder-quote-section {
  color: #111111;
  padding: 5.5rem 0 0 0;
  overflow: visible;
  position: relative;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.founder-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-end;
}

.founder-quote-content {
  padding-bottom: 5.5rem;
  padding-right: 1rem;
}

.founder-quote-text {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  font-weight: 400;
  line-height: 1.45;
  color: #111111;
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
}

.founder-quote-author {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.founder-quote-name {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.01em;
}

.founder-quote-role {
  font-size: 0.95rem;
  color: #4b5563;
  font-weight: 600;
  line-height: 1.4;
}

.founder-quote-portrait {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  z-index: 2;
}

.founder-quote-portrait-img {
  width: 100%;
  max-width: 680px;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  object-position: bottom center;
  transform: scale(1.15);
  transform-origin: bottom center;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

@media (max-width: 960px) {
  .founder-quote-section {
    padding: 3.5rem 0 0 0;
    overflow: hidden;
  }

  .founder-quote-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .founder-quote-content {
    padding-bottom: 1.5rem;
    padding-right: 0;
  }

  .founder-quote-portrait {
    height: auto;
    max-height: 440px;
    overflow: hidden;
    margin-bottom: 0;
  }

  .founder-quote-portrait-img {
    height: auto;
    max-height: 420px;
    width: 100%;
    object-fit: contain;
    object-position: bottom center;
    transform: none;
    margin-bottom: 0;
  }
}

.eyebrow-label,
.section-statement .section-subtitle {
  display: none !important;
}

.statement-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  max-width: 960px;
  margin: 0 auto;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.title-accent-grey {
  color: var(--color-accent) !important;
  font-weight: 400 !important;
}

/* Faded-to-Full Color Left-to-Right Wipe Reveal Animation (Artifact-Free) */
.title-color-wipe {
  display: block;
}

.title-color-wipe-dark {
  background: linear-gradient(90deg, #001621 50%, rgba(0, 22, 33, 0.22) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 2.2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: background-position;
  display: inline;
}

.title-color-wipe-red {
  background: linear-gradient(90deg, #C5A059 0%, #C5A059 50%, rgba(197, 160, 89, 0.28) 50%, rgba(197, 160, 89, 0.28) 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 2.2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: background-position;
  display: inline;
  font-weight: inherit;
}

.title-color-wipe.revealed .title-color-wipe-dark,
.title-color-wipe.revealed .title-color-wipe-red {
  background-position: 0 0;
}

/* Scroll-Driven Word Writing Reveal Effect */
.scroll-text-reveal {
  display: block;
}

.scroll-word {
  display: inline;
  color: rgba(0, 22, 33, 0.18);
  transition: color 0.35s ease, opacity 0.35s ease;
  white-space: pre-wrap;
}

.scroll-word.active {
  color: var(--text-primary);
}

/* Preserve custom accent colors (Red/Grey) in scroll reveal animations */
.scroll-text-reveal [style*="color: var(--color-accent)"] .scroll-word,
.scroll-text-reveal [style*="color:#e63946"] .scroll-word,
.scroll-text-reveal [style*="color: #e63946"] .scroll-word {
  color: rgba(230, 57, 70, 0.25);
}

.scroll-text-reveal [style*="color: var(--color-accent)"] .scroll-word.active,
.scroll-text-reveal [style*="color:#e63946"] .scroll-word.active,
.scroll-text-reveal [style*="color: #e63946"] .scroll-word.active {
  color: var(--color-accent) !important;
}

/* Reusable Light Grey Dots Gradient Background */
.pastel-dots-bg,
.showcase-editorial {
  background-color: #f4f4f6;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.9) 1.5px, transparent 1.5px),
    linear-gradient(135deg, #e8e8e9 0%, #f4f4f6 50%, #dfdfe1 100%);
  background-size: 14px 14px, 100% 100%;
}

.stats-editorial {
  padding: 7rem 0 8rem 0;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-canvas);
}

.stats-staggered-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.stats-narrative {
  padding-right: 2rem;
}

.red-dot {
  width: 10px;
  height: 10px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 3rem;
}

.stats-narrative p {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* Staggered Dual Column Grid */
.staggered-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

.staggered-col-left {
  display: flex;
  flex-direction: column;
}

.staggered-col-right {
  display: flex;
  flex-direction: column;
  margin-top: 4.5rem;
}

@keyframes staggeredColParallax {
  from {
    transform: translateY(130px);
  }

  to {
    transform: translateY(-130px);
  }
}

@media (min-width: 901px) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    .staggered-cards-container {
      view-timeline: --stats-scroll block;
    }

    .staggered-col-right {
      animation: staggeredColParallax linear both;
      animation-timeline: --stats-scroll;
      animation-range: entry 0% exit 100%;
      will-change: transform;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .staggered-col-right {
    animation: none !important;
    transform: none !important;
  }
}

.editorial-stat-box {
  background: var(--bg-canvas);
  border: 1px solid var(--border-subtle);
  margin-top: -1px;
  margin-left: -1px;
  padding: 3rem 2.25rem 2.25rem 2.25rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.editorial-stat-box:hover {
  z-index: 10;
  border-color: var(--color-accent);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.editorial-stat-number {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 4.5vw, 4.5rem);
  font-weight: 400;
  color: var(--color-accent);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.editorial-stat-label {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

/* Showcase Section */
.showcase-editorial {
  padding: 6.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.showcase-tabs {
  display: flex;
  gap: 1.8rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 3rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) transparent;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.showcase-tabs::-webkit-scrollbar {
  height: 4px;
}

.showcase-tabs::-webkit-scrollbar-thumb {
  background-color: var(--color-accent);
  border-radius: 4px;
}

.tab-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 0.85rem 0;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
  color: var(--color-accent);
}

.tab-btn.active::after {
  width: 100%;
}

.showcase-panel {
  display: none !important;
}

.showcase-panel.active {
  display: block !important;
}

/* Full-Bleed Visual Service Banner Slider (Matching User Reference Screenshot) */
.service-banner-card {
  position: relative;
  width: 100%;
  min-height: 520px;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover !important;
  background-position: center center !important;
  display: flex;
  align-items: center;
  padding: 4.5rem 5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transition: var(--transition-normal);
}

.service-banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.88) 0%, rgba(18, 18, 18, 0.65) 45%, rgba(18, 18, 18, 0.15) 100%);
  z-index: 1;
}

.service-banner-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  color: #ffffff;
}

.service-banner-title {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.service-banner-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin-bottom: 2.25rem;
  line-height: 1.6;
}

.service-banner-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-pill-white {
  background: #ffffff;
  color: #181818 !important;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-pill-white:hover {
  background: #f1f0eb;
  transform: translateY(-2px);
}

.btn-pill-accent {
  background: linear-gradient(135deg, #C5A059 0%, #C5A059 100%);
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(158, 139, 125, 0.3);
}

.btn-pill-accent:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(158, 139, 125, 0.4);
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #181818;
}

.slider-arrow.--prev {
  left: 1.5rem;
}

.slider-arrow.--next {
  right: 1.5rem;
}

.slider-dots-container {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.6rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  width: 24px;
  background: #ffffff;
}

/* Estimator Section */
.estimator-editorial {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 4rem 3.5rem;
  margin: 4rem 0;
  border-radius: var(--radius-sm);
}

.option-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.chip-btn {
  background: var(--bg-canvas);
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.chip-btn:hover,
.chip-btn.active {
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
}

/* Form Controls */
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-canvas);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-accent);
  background: var(--bg-surface);
}

/* Site Footer */
.site-footer {
  background: var(--bg-dark);
  color: #a3a3a3;
  padding: 5rem 0 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #d4d4d4;
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
}

/* Responsive Queries & Mobile Navigation Drawer */
@media (max-width: 900px) {

  .hero-editorial,
  .hero-editorial-business,
  .hero-editorial-about,
  .hero-editorial-automation,
  .hero-editorial-contact,
  .hero-editorial-portfolio,
  .hero-editorial-blog,
  .hero-editorial-pro {
    height: auto;
    min-height: 80vh;
  }

  .hero-editorial-contact .container,
  .hero-editorial-portfolio .container,
  .hero-editorial-blog .container {
    margin-top: 0;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    width: 40px;
    height: 40px;
    z-index: 1001;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .hamburger-box {
    width: 24px;
    height: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary, #ffffff);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
    transform-origin: center;
  }

  .mobile-toggle.active .line-top {
    transform: translateY(6px) rotate(45deg);
    background-color: var(--color-accent, #C5A059);
  }

  .mobile-toggle.active .line-bottom {
    transform: translateY(-6px) rotate(-45deg);
    background-color: var(--color-accent, #C5A059);
  }

  .main-nav {
    display: flex !important;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-15px);
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
  }

  .main-nav.mobile-active {
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    transform: translateY(0) !important;
    padding: 2.25rem 2rem !important;
    pointer-events: auto !important;
  }

  /* Mobile Nav Links Staggered Left-to-Right Reveal */
  .main-nav>* {
    opacity: 0;
    transform: translateX(-35px);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }

  .main-nav.mobile-active>* {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

  .main-nav.mobile-active>*:nth-child(1) {
    transition-delay: 0.08s;
  }

  .main-nav.mobile-active>*:nth-child(2) {
    transition-delay: 0.15s;
  }

  .main-nav.mobile-active>*:nth-child(3) {
    transition-delay: 0.22s;
  }

  .main-nav.mobile-active>*:nth-child(4) {
    transition-delay: 0.29s;
  }

  .main-nav.mobile-active>*:nth-child(5) {
    transition-delay: 0.36s;
  }

  .main-nav.mobile-active>*:nth-child(6) {
    transition-delay: 0.43s;
  }

  .main-nav.mobile-active>*:nth-child(7) {
    transition-delay: 0.50s;
  }

  .main-nav.mobile-active>*:nth-child(8) {
    transition-delay: 0.57s;
  }

  .main-nav .has-dropdown {
    width: 100%;
  }

  .main-nav .dropdown-menu {
    position: static;
    display: block !important;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transform: translateY(-8px);
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
    background: transparent;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, transform 0.35s ease, padding 0.35s ease, visibility 0.35s ease;
  }

  .main-nav .has-dropdown.dropdown-open .dropdown-menu {
    max-height: 450px !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    padding: 0.75rem 0 0.5rem 1rem !important;
  }

  .main-nav .has-dropdown>.nav-link {
    transition: color 0.3s ease;
  }

  .main-nav .has-dropdown.dropdown-open>.nav-link {
    color: var(--color-accent) !important;
  }

  .main-nav .has-dropdown.dropdown-open>.nav-link::after {
    width: 100% !important;
  }

  .main-nav .has-dropdown:not(.dropdown-open)>.nav-link:not(.active) {
    color: var(--text-primary) !important;
  }

  .main-nav .has-dropdown:not(.dropdown-open)>.nav-link:not(.active)::after {
    width: 0% !important;
  }

  .main-nav .has-dropdown .fa-chevron-down {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .main-nav .has-dropdown.dropdown-open .fa-chevron-down {
    transform: rotate(180deg);
  }

  .mobile-actions-wrapper {
    display: flex !important;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
  }

  .hero-editorial-grid,
  .stats-staggered-layout,
  .showcase-panel.active {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-banner-card {
    padding: 3rem 2rem;
    min-height: 440px;
  }

  .staggered-col-right {
    margin-top: 2.5rem;
    transform: none !important;
    animation: none !important;
  }

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

@media (max-width: 768px) {
  body.business-portal .brand-logo picture img {
    transform: scale(1.2);
    transform-origin: left center;
  }

  .staggered-cards-container {
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
  }

  .staggered-col-right {
    margin-top: 2.5rem !important;
  }

  .editorial-stat-box {
    padding: 1.75rem 1.25rem !important;
    min-height: 170px !important;
  }

  .editorial-stat-number {
    font-size: clamp(2.4rem, 7vw, 3.2rem) !important;
  }

  .editorial-stat-label {
    font-size: 0.82rem !important;
  }

  .footer-grid,
  .showcase-details-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive Grid & Form Card Utilities */
.form-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 4rem;
  border-radius: var(--radius-sm);
}

.form-inputs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

/* Comprehensive Mobile Responsiveness Fixes (< 900px) */
@media (max-width: 900px) {
  .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .form-card-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    padding: 2.5rem 1.5rem !important;
  }

  .form-inputs-row {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* Force all inline multi-column grids and large section paddings to stack on mobile */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: 1.2fr 0.8fr"],
  [style*="grid-template-columns: repeat(2, 1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"],
  [style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .section,
  .section-statement {
    padding: 4.5rem 0 !important;
  }

  [style*="padding: 4rem"],
  [style*="padding: 3.5rem"],
  [style*="padding: 3rem"] {
    padding: 2rem 1.25rem !important;
  }

  /* Main Mobile Hero Section Layout & Typography Fixes */
  .hero-editorial {
    padding-top: 2.5rem !important;
    align-items: flex-start !important;
    min-height: calc(100vh - var(--header-height));
  }

  .hero-bg-layer {
    background-position: center top !important;
  }

  .hero-editorial .container {
    margin-top: 0 !important;
  }

  .hero-editorial-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    padding: 0 !important;
    text-align: center !important;
    justify-items: center !important;
  }

  .hero-editorial .hero-display-title,
  .hero-editorial-about .hero-display-title,
  .hero-editorial-automation .hero-display-title,
  .hero-editorial-portfolio .hero-display-title,
  .hero-editorial-blog .hero-display-title,
  .hero-editorial-pro .hero-display-title {
    font-size: clamp(3rem, 10.5vw, 4.5rem) !important;
    line-height: 1.05 !important;
    white-space: normal !important;
    text-align: center !important;
    margin-bottom: 0.85rem !important;
    word-break: break-word !important;
  }

  .hero-editorial .hero-title-line-mask {
    display: block !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    text-align: center !important;
  }

  .hero-editorial .hero-title-line {
    display: block !important;
    padding-right: 0 !important;
    width: 100% !important;
    text-align: center !important;
  }

  .hero-editorial .hero-subtitle {
    white-space: normal !important;
    font-size: 1.05rem !important;
    line-height: 1.5 !important;
    max-width: 90% !important;
    color: #1e293b !important;
    font-weight: 600 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 1.25rem !important;
  }

  .hero-text-block {
    margin-top: 1rem !important;
    padding: 1.5rem !important;
  }

  /* Business Portal Specific Mobile Hero Spacing */
  .hero-editorial-business .hero-editorial-grid {
    gap: 1.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .hero-editorial-business .hero-display-title {
    font-size: clamp(3rem, 10vw, 4.5rem) !important;
    margin-bottom: 1.25rem !important;
  }

  .hero-editorial-business .hero-text-block {
    margin-top: 0 !important;
    padding-left: 1.25rem !important;
  }

  .hero-editorial-business .hero-text-block .hero-subtitle {
    margin-bottom: 1.25rem !important;
  }

  h1 {
    font-size: clamp(2.4rem, 8.5vw, 3.8rem) !important;
    margin-bottom: 2rem !important;
  }

  h2,
  .statement-title,
  .statement-layout-title,
  .rewired-left-title,
  .designer-ideas-heading,
  .stacked-service-main-title,
  .section-title {
    font-size: clamp(2.1rem, 7.8vw, 3.2rem) !important;
    margin-bottom: 2rem !important;
  }

  .slider-arrow {
    display: none !important;
  }
}

/* 2-Column Split List Layout (User Requested Layout for Gradient Background Sections) */
.rewired-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: flex-start;
}

.rewired-left-title {
  font-family: var(--font-sans);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-accent);
  margin-bottom: 2rem;
}

.rewired-left-title .sub-title {
  display: block;
  color: #001621;
  font-weight: 400;
}

.rewired-left-title .accent-title {
  display: block;
  color: var(--color-accent);
  font-weight: 700;
}

.btn-pill-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #111111;
  color: #ffffff !important;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-pill-dark:hover {
  background: #2a2a2a;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.rewired-right-header {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.rewired-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.12));
}

.rewired-list-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.12));
  align-items: baseline;
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.rewired-list-item.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.rewired-list-item:nth-child(1) {
  transition-delay: 0.1s;
}

.rewired-list-item:nth-child(2) {
  transition-delay: 0.25s;
}

.rewired-list-item:nth-child(3) {
  transition-delay: 0.4s;
}

.rewired-list-item:nth-child(4) {
  transition-delay: 0.55s;
}

.rewired-list-item:nth-child(5) {
  transition-delay: 0.7s;
}

.rewired-list-item:nth-child(6) {
  transition-delay: 0.85s;
}

.rewired-item-num {
  font-size: 1rem;
  font-weight: 600;
  color: #a0a0a0;
  font-family: var(--font-sans);
}

.rewired-item-content {
  font-size: 1.2rem;
  line-height: 1.55;
  color: #666666;
}

.rewired-item-title {
  font-weight: 700;
  color: #111111;
  margin-right: 0.35rem;
}

@media (max-width: 900px) {
  .rewired-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .rewired-list-item {
    grid-template-columns: 2.5rem 1fr !important;
    padding: 1.5rem 0 !important;
  }

  .rewired-item-content {
    font-size: 1.1rem !important;
  }
}

/* Interactive Regional Service Map & Floating Tooltip (User Requested Feature) */
.map-interactive-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 3rem 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.map-svg-element {
  width: 100%;
  height: auto;
  display: block;
}

.map-region-path {
  fill: #f4f4f6;
  stroke: #ffffff;
  stroke-width: 3;
  transition: fill 0.3s ease, stroke 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.map-region-path:hover,
.map-region-path.active {
  fill: rgba(230, 57, 70, 0.12);
  stroke: var(--color-accent);
  stroke-width: 3.5;
}

.map-pin-group {
  cursor: pointer;
}

.map-pin-pulse {
  animation: mapPulse 2s infinite ease-out;
  transform-origin: center;
}

@keyframes mapPulse {
  0% {
    r: 6px;
    opacity: 0.8;
  }

  100% {
    r: 22px;
    opacity: 0;
  }
}

/* Floating White Tooltip Card (Matching Image 3) */
.map-tooltip-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
  width: 280px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
}

.map-tooltip-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.map-tooltip-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.2rem;
  color: #111111;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.map-tooltip-desc {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.map-tooltip-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  background: rgba(230, 57, 70, 0.08);
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .map-interactive-wrapper {
    padding: 1.5rem 1rem !important;
  }

  .map-tooltip-card {
    width: 240px !important;
    padding: 1rem !important;
  }
}

.map-picture-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  height: 560px;
  background-image: url('/assets/images/service_area_map_bg.jpg');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  overflow: visible;
}

.map-picture-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(ellipse at center, transparent 65%, rgba(255, 255, 255, 0.35) 85%, rgba(255, 255, 255, 0.88) 98%);
  pointer-events: none;
  z-index: 2;
}

/* Picture Map Overlay Pins & Hover Tooltip */
.map-picture-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 20 !important;
}

.pin-pulse-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.45);
  animation: mapPulseRing 2s infinite ease-out;
  pointer-events: none;
}

@keyframes mapPulseRing {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.pin-red-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #61709e;
  border: 2.5px solid #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: transform 0.2s ease;
}

.map-picture-pin:hover .pin-red-dot {
  transform: scale(1.35);
}

.pin-inner-black {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #111111;
}

.pin-label-tag {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  color: #111111;
  background: #ffffff;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-subtle);
  pointer-events: none;
}

/* Mobile Responsiveness & Horizontal Overflow Prevention (User Requested Fix) */
html,
body {
  overflow-x: clip;
}

#service-area-map {
  overflow: hidden;
}

.two-col-grid,
.about-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (max-width: 850px) {

  .two-col-grid,
  .about-reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  #service-area-map .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .service-area-header {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .map-picture-wrapper {
    height: 380px !important;
    width: 100% !important;
    border-radius: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .map-picture-wrapper::before {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
  }

  .pin-label-tag {
    font-size: 0.65rem !important;
    padding: 1px 4px !important;
  }
}

/* Client Reviews Slider / Carousel Component */
.reviews-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 55px;
}

.reviews-slider-track-wrapper {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.reviews-slider-track {
  display: flex;
  gap: 1.75rem;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.review-slide-card {
  flex: 0 0 calc((100% - 3.5rem) / 3);
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 2.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
}

.reviews-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
  z-index: 10;
}

.reviews-slider-arrow:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.reviews-slider-arrow.prev {
  left: 0;
}

.reviews-slider-arrow.next {
  right: 0;
}

.reviews-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

/* Responsive Head Office Card */
.head-office-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 3rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
}

.head-office-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.05rem;
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  .head-office-card {
    padding: 1.5rem 1.25rem;
    margin-top: 2rem;
  }

  .head-office-item {
    font-size: 0.95rem;
    align-items: flex-start;
  }
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.review-dot.active {
  background: var(--color-accent);
  width: 24px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .reviews-slider-container {
    padding: 0 40px;
  }

  .review-slide-card {
    flex: 0 0 100% !important;
    padding: 2rem 1.5rem !important;
  }

  .reviews-slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}

/* Team Showcase Section (Hover Reveal Matching Reference Image) */
.team-section {
  padding: 6rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  position: relative;
  height: 520px;
  background: #eaeaea;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Portrait Image fills full card */
.team-portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%) contrast(108%);
  transition: transform 0.4s ease, filter 0.4s ease;
  z-index: 1;
}

.team-card:hover .team-portrait-img {
  transform: scale(1.03);
}

/* Hover Header Overlay - Text appears on Hover */
.team-card-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  background: linear-gradient(to bottom, rgba(234, 234, 234, 0.95) 0%, rgba(234, 234, 234, 0.8) 70%, transparent 100%);
  z-index: 2;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.team-card:hover .team-card-header,
.team-card.touch-active .team-card-header {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.team-role {
  font-size: 0.92rem;
  color: #555555;
  font-weight: 500;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.team-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.team-linkedin-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  padding: 4px 12px;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-size: 0.75rem;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
  transition: all 0.2s ease;
}

.team-linkedin-badge:hover {
  background: #111111;
  color: #ffffff;
}

.team-red-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent, #C5A059);
  display: inline-block;
}

@media (max-width: 850px) {
  .team-grid {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 1.25rem !important;
    padding-bottom: 1.25rem !important;
    margin-left: -1rem !important;
    margin-right: -1rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    scrollbar-width: none !important;
  }

  .team-grid::-webkit-scrollbar {
    display: none !important;
  }

  .team-card {
    flex: 0 0 78vw !important;
    max-width: 320px !important;
    height: 440px !important;
    scroll-snap-align: center !important;
  }

  /* Position name and title at the bottom of the image on mobile */
  .team-card-header {
    top: auto !important;
    bottom: 0 !important;
    padding: 3rem 1.25rem 1.25rem 1.25rem !important;
    background: linear-gradient(to top, rgba(234, 234, 234, 0.96) 0%, rgba(234, 234, 234, 0.85) 65%, transparent 100%) !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/* Interactive Hero Card Tabs 1-5 */
.hero-tab-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: #666666;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.hero-tab-btn:hover {
  border-color: #111111;
  color: #111111;
}

.hero-tab-btn.active {
  border: 1.5px solid #111111 !important;
  background: #111111 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-tab-panel {
  animation: tabFadeIn 0.35s ease-in-out;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Image Left-to-Right Reveal Animation on Page Load */
.hero-reveal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.hero-reveal-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--bg-canvas);
  flex-shrink: 0;
}

.hero-reveal-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: revealLeftToRight 1.15s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path, transform;
}

@keyframes revealLeftToRight {
  0% {
    clip-path: inset(0 100% 0 0);
    transform: scale(1.02);
  }

  100% {
    clip-path: inset(0 0 0 0);
    transform: scale(1);
  }
}

.hero-reveal-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1.5px solid #111111;
  padding-top: 1.75rem;
  height: 480px;
  box-sizing: border-box;
}

/* Google Badge Floating Fixed Positioning */
.google-badge-fixed-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  transition: all 0.3s ease;
}

.google-preferred-badge {
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  height: 48px;
  width: 48px;
  max-width: 48px;
  padding: 0;
  justify-content: center;
  background: var(--color-accent, #C5A059);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(158, 139, 125, 0.35);
  transition: max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    gap 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.2s ease,
    box-shadow 0.2s ease;
  overflow: hidden;
  white-space: nowrap;
}

.google-preferred-badge .google-preferred-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  fill: #ffffff !important;
  color: #ffffff !important;
}

.google-preferred-badge .google-preferred-text {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  color: #ffffff !important;
  transition: opacity 0.25s ease, max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.google-preferred-badge:hover,
.google-preferred-badge:focus-visible {
  max-width: 260px;
  width: auto;
  padding: 0 18px 0 14px;
  gap: 10px;
  background: #C5A059;
  box-shadow: 0 6px 20px rgba(158, 139, 125, 0.45);
}

.google-preferred-badge:hover .google-preferred-text,
.google-preferred-badge:focus-visible .google-preferred-text {
  opacity: 1;
  max-width: 200px;
}

/* Business Portal Signature Electric Purple Gradient Styling */
body.business-portal .google-preferred-badge {
  background: linear-gradient(135deg, #252b3d 0%, #252b3d 100%) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 4px 18px rgba(37, 43, 61, 0.38) !important;
}

body.business-portal .google-preferred-badge:hover,
body.business-portal .google-preferred-badge:focus-visible {
  background: #61709e !important;
  box-shadow: 0 6px 24px rgba(97, 112, 158, 0.45) !important;
}

@media (max-width: 850px) {
  .hero-reveal-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .hero-reveal-container,
  .hero-reveal-container img {
    height: 320px !important;
    min-height: auto !important;
    max-height: 320px !important;
  }

  .hero-reveal-card {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    padding-top: 1.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .google-badge-fixed-wrapper {
    bottom: 12px !important;
    right: 12px !important;
    transform: scale(0.82);
    transform-origin: bottom right;
  }
}

/* ==========================================================================
   Modern Minimalist FAQ Component (No Boxes, Clean Architectural Dividers)
   ========================================================================== */
.faq-container-narrow {
  max-width: 920px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1.5px solid var(--text-primary);
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.85rem 0;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-bottom-color: var(--text-primary);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  color: var(--text-primary);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question-text {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.faq-num {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  opacity: 0.9;
  flex-shrink: 0;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question i {
  font-size: 0.9rem;
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.faq-question:hover i {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.faq-item.open .faq-question {
  color: var(--color-accent);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, margin-top 0.3s ease;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: #444444;
  line-height: 1.75;
  padding-left: 2.75rem;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  opacity: 1;
  margin-top: 1.25rem;
}

@media (max-width: 768px) {
  .faq-item {
    padding: 1.4rem 0;
  }

  .faq-answer {
    padding-left: 0;
  }

  .faq-question-text {
    gap: 0.75rem;
  }
}

/* ==========================================================================
   BUSINESS PORTAL DYNAMIC ELECTRIC PURPLE GRADIENT DESIGN SYSTEM
   Gradient reserved for Hero "Business" Title & Buttons: #252b3d to #252b3d
   All other text accents use primary accent (#252b3d)
   ========================================================================== */

body.business-portal {
  --color-accent: #61709e;
  --color-accent-gradient: linear-gradient(135deg, #61709e 0%, #4a577d 100%);
}

/* 1. Title Color Wipe Animation in Business Portal (Purple Wipe Reveal) */
body.business-portal .title-color-wipe-red {
  background: linear-gradient(90deg, #61709e 0%, #61709e 50%, rgba(97, 112, 158, 0.28) 50%, rgba(97, 112, 158, 0.28) 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 2.2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: background-position;
  display: inline;
  font-weight: inherit;
}

body.business-portal .title-color-wipe.revealed .title-color-wipe-red {
  background-position: 0 0 !important;
}

/* 2. Text Accents & Spans inside Headings & Subtitles (#252b3d) */
body.business-portal span[style*="color: var(--color-accent)"],
body.business-portal strong[style*="color: var(--color-accent)"],
body.business-portal span[style*="color: #e31b23"],
body.business-portal strong[style*="color: #e31b23"] {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: initial !important;
  color: #61709e !important;
  font-style: normal;
}

/* Hero Display Title Off-White Styling on Business Portal */
body.business-portal .hero-display-title,
body.business-portal .hero-title-line,
body.business-portal .hero-title-line-mask,
.hero-editorial-business .hero-display-title,
.hero-editorial-business .hero-title-line {
  color: #f8f7f4 !important;
  -webkit-text-fill-color: #f8f7f4 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  font-style: normal;
  text-shadow: none !important;
}

body.business-portal .hero-title-line em,
body.business-portal .hero-display-title em,
.hero-editorial-business .hero-display-title em {
  color: #C5A059 !important;
  -webkit-text-fill-color: #C5A059 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  font-style: italic;
  font-weight: inherit;
  text-shadow: none !important;
}

/* 3. Primary Buttons & Action Buttons in Business Portal - GRADIENT RETAINED */
body.business-portal .btn-primary,
body.business-portal .btn-pill-accent {
  background: linear-gradient(135deg, #61709e 0%, #4a577d 100%) !important;
  background-size: 160% 160% !important;
  border: none !important;
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(97, 112, 158, 0.35) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body.business-portal .btn-primary:hover,
body.business-portal .btn-pill-accent:hover {
  background-position: 100% 0 !important;
  box-shadow: 0 8px 25px rgba(97, 112, 158, 0.45) !important;
  transform: translateY(-2px) !important;
}

/* 4. Eyebrow Labels, Badges & Highlights (#252b3d) */
body.business-portal .eyebrow-label {
  color: #61709e !important;
}

/* 5. Showcase Tabs (Colored Text & Underline - #252b3d) */
body.business-portal .tab-btn {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0.85rem 0 !important;
  border-radius: 0 !important;
}

body.business-portal .tab-btn:hover,
body.business-portal .tab-btn.active,
body.business-portal #bizShowcaseTabs .tab-btn.active {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: initial !important;
  color: #61709e !important;
  border-color: transparent !important;
}

body.business-portal .tab-btn::after {
  background: #61709e !important;
  height: 2px !important;
}

/* 6. Icons & Checklist Bullets (#252b3d) */
body.business-portal .fa-circle-check,
body.business-portal .feature-checklist i,
body.business-portal .fa-video,
body.business-portal .fa-bell,
body.business-portal .fa-user-shield,
body.business-portal .fa-id-card,
body.business-portal .fa-store,
body.business-portal .fa-spa,
body.business-portal .fa-campground,
body.business-portal .fa-shield-halved,
body.business-portal .fa-hard-hat,
body.business-portal .fa-briefcase,
body.business-portal .fa-network-wired,
body.business-portal .fa-wifi,
body.business-portal i[style*="color: var(--color-accent)"] {
  color: #61709e !important;
}

body.business-portal .feature-title-bullet::before,
body.business-portal strong span[style*="width: 9px; height: 9px;"] {
  background-color: #61709e !important;
  background: #61709e !important;
}

/* 7. Vertical Accent Border Lines (#C5A059 / Home Accent Match) */
body.business-portal .hero-text-block,
.hero-editorial-business .hero-text-block {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border: none !important;
  border-left: 3px solid #C5A059 !important;
  padding: 0.25rem 0 0.25rem 1.75rem !important;
}

body.business-portal .hero-text-block .hero-subtitle,
.hero-editorial-business .hero-text-block .hero-subtitle {
  color: #f8f7f4 !important;
  font-size: 1.18rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

body.business-portal .hero-text-block .link-arrow,
.hero-editorial-business .hero-text-block .link-arrow {
  color: #f8f7f4 !important;
  border-bottom-color: rgba(248, 247, 244, 0.4) !important;
}

body.business-portal .hero-text-block .link-arrow i,
.hero-editorial-business .link-arrow i {
  color: #C5A059 !important;
}

body.business-portal .hero-text-block .link-arrow:hover,
.hero-editorial-business .link-arrow:hover {
  color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}

body.business-portal .hero-scroll-label,
.hero-editorial-business .hero-scroll-label {
  color: #f8f7f4 !important;
}

/* 8. Link Arrows & Interactive Phone/Email Links */
body.business-portal .link-arrow {
  color: var(--text-primary) !important;
  border-bottom-color: var(--text-primary) !important;
  transition: color 0.3s ease, border-color 0.3s ease;
}

body.business-portal .link-arrow i {
  color: var(--color-accent, #252b3d) !important;
}

body.business-portal .link-arrow:hover {
  color: var(--color-accent, #252b3d) !important;
  border-bottom-color: var(--color-accent, #252b3d) !important;
}

body.business-portal a[style*="color: var(--color-accent)"] {
  color: #61709e !important;
  transition: color 0.3s ease;
}

body.business-portal a[style*="color: var(--color-accent)"]:hover {
  color: #a020f0 !important;
}

/* 9. Form Inputs Focus Rings */
body.business-portal .form-input:focus,
body.business-portal .form-select:focus {
  border-color: #61709e !important;
  box-shadow: 0 0 0 3px rgba(97, 112, 158, 0.18) !important;
}

/* 10. Nav Mobile Active Icons & Buttons in Business Portal */
body.business-portal .mobile-toggle.active .hamburger-line {
  background-color: #61709e !important;
}

body.business-portal a.dropdown-item[style*="color: var(--color-accent)"] {
  color: #61709e !important;
}

/* Infinite Marquee Ticker Section */
.marquee-ticker-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  user-select: none;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-ticker-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-ticker-wrapper:hover .marquee-ticker-track {
  animation-play-state: paused;
}

.marquee-ticker-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1rem 2.25rem;
  background: var(--bg-surface, #ffffff);
  border: 1px solid var(--border-subtle, rgba(0, 0, 0, 0.08));
  border-radius: 60px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary, #111111);
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  white-space: nowrap;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.marquee-brand-img {
  height: 36px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.75);
  transition: all 0.3s ease;
}

.marquee-ticker-item i {
  color: var(--color-accent, #e63946);
  font-size: 1.2rem;
}

.marquee-ticker-item:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.1);
}

.marquee-ticker-item:hover .marquee-brand-img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.04);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Smart Home Ideas for Interior Designers (Dark Modern Grid Layout matching reference) */
.designer-ideas-section {
  background-color: #121212;
  color: #ffffff;
  padding: 6.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.designer-ideas-header {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: flex-start;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .designer-ideas-header {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

.designer-ideas-heading {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
}

.designer-ideas-heading .heading-white {
  color: #ffffff;
}

.designer-ideas-heading .heading-grey,
.designer-ideas-heading .heading-red {
  color: var(--color-accent, #C5A059);
  font-weight: 700;
}

.designer-ideas-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
}

.designer-ideas-intro p {
  font-size: 1.12rem;
  line-height: 1.6;
  color: #9ea5b3;
  margin: 0;
}

.designer-ideas-intro p strong {
  color: #ffffff;
  font-weight: 600;
}

.btn-pill-light {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #ffffff;
  color: #0b0c0e !important;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.15);
}

.btn-pill-light i {
  transition: transform 0.25s ease;
}

.btn-pill-light:hover {
  background: #f0f0f4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.btn-pill-light:hover i {
  transform: translateX(4px);
}

/* Designer Cards 3-Column Grid */
.designer-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

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

@media (max-width: 640px) {
  .designer-cards-grid {
    grid-template-columns: 1fr;
  }
}

.designer-card {
  position: relative;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  background-color: #14161d;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  text-decoration: none;
}

.designer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}

.designer-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.65s ease;
}

.designer-card:hover .designer-card-img {
  transform: scale(1.07);
  filter: brightness(0.95) contrast(1.08);
}

.designer-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.82) 100%);
  z-index: 1;
  transition: opacity 0.35s ease;
}

.designer-card-title {
  position: absolute;
  top: 2.25rem;
  left: 2.25rem;
  right: 2.25rem;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.designer-card-btn {
  position: absolute;
  bottom: 2.25rem;
  left: 2.25rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.35rem;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.designer-card-btn i {
  transition: transform 0.25s ease;
  font-size: 0.85rem;
}

.designer-card:hover .designer-card-btn {
  background: #ffffff;
  color: #0b0c0e;
  border-color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.designer-card:hover .designer-card-btn i {
  transform: translateX(4px);
}

/* Card Interactive Information Slide-Up Drawer Overlay */
.designer-card-info-drawer {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(14, 16, 22, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.6rem 1.75rem 1.4rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(102%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  border-radius: 14px;
  overflow: hidden;
}

.designer-card.active .designer-card-info-drawer,
.designer-card-info-drawer.active {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

.designer-card-drawer-body {
  overflow-y: auto;
  max-height: calc(100% - 3rem);
  padding-right: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(158, 139, 125, 0.5) transparent;
}

.designer-card-drawer-body::-webkit-scrollbar {
  width: 4px;
}

.designer-card-drawer-body::-webkit-scrollbar-thumb {
  background: var(--color-accent, #C5A059);
  border-radius: 4px;
}

.designer-card-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.designer-card-drawer-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent, #C5A059);
}

.designer-card-drawer-close {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.designer-card-drawer-close:hover {
  background: #ffffff;
  color: #0b0c0e;
  transform: scale(1.1);
}

.designer-card-drawer-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0.35rem 0 0.55rem 0;
  line-height: 1.25;
}

.designer-card-drawer-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.designer-card-scenarios-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 0.45rem;
}

.designer-card-scenarios-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.designer-card-scenarios-list li {
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.designer-card-scenarios-list li i {
  color: var(--color-accent, #C5A059);
  font-size: 0.75rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Mobile Responsiveness for Designer Cards */
@media (max-width: 640px) {
  .designer-card {
    height: 480px;
    min-height: 480px;
  }

  .designer-card-info-drawer {
    padding: 1.25rem 1.25rem 1.1rem 1.25rem;
  }

  .designer-card-drawer-body {
    max-height: calc(100% - 3.2rem);
    padding-right: 0.2rem;
  }

  .designer-card-drawer-title {
    font-size: 1.25rem;
    margin: 0.25rem 0 0.45rem 0;
  }

  .designer-card-drawer-desc {
    font-size: 0.84rem;
    line-height: 1.4;
    margin-bottom: 0.6rem;
  }

  .designer-card-scenarios-list li {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .designer-card-info-drawer .btn-pill-accent {
    flex-shrink: 0;
    margin-top: 0.5rem;
    padding: 0.6rem 1.2rem !important;
  }
}

/* Reviews Slider Styling inside Dark Section (matching designer-ideas-section background) */
.designer-ideas-section .review-slide-card {
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

.designer-ideas-section .review-slide-card p {
  color: #cbd5e1 !important;
}

.designer-ideas-section .review-author-name {
  color: #ffffff !important;
  font-weight: 700;
}

.designer-ideas-section .review-author-role {
  color: #94a3b8 !important;
  font-weight: 400;
}

.designer-ideas-section .reviews-slider-arrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.designer-ideas-section .reviews-slider-arrow:hover {
  background: #ffffff;
  color: #0b0c0e;
  border-color: #ffffff;
}

.designer-ideas-section .review-dot {
  background: rgba(255, 255, 255, 0.25);
}

.designer-ideas-section .review-dot.active {
  background: var(--color-accent, #C5A059);
}

/* FAQ Accordion Styling inside Dark Section (designer-ideas-section) */
.designer-ideas-section .faq-container-narrow {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.designer-ideas-section .faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.85rem 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: border-color 0.25s ease;
}

.designer-ideas-section .faq-item:hover {
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.designer-ideas-section .faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  color: #ffffff;
  cursor: pointer;
  transition: color 0.25s ease;
}

.designer-ideas-section .faq-question-text {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: #ffffff;
}

.designer-ideas-section .faq-num {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-accent, #C5A059);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.designer-ideas-section .faq-question:hover {
  color: var(--color-accent, #C5A059);
}

.designer-ideas-section .faq-question i {
  font-size: 0.9rem;
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.designer-ideas-section .faq-question:hover i {
  border-color: var(--color-accent, #C5A059);
  color: var(--color-accent, #C5A059);
}

.designer-ideas-section .faq-item.open .faq-question,
.designer-ideas-section .faq-item.open .faq-question-text {
  color: var(--color-accent, #C5A059) !important;
}

.designer-ideas-section .faq-item.open .faq-question i {
  transform: rotate(180deg);
  background: var(--color-accent, #C5A059);
  color: #ffffff;
  border-color: var(--color-accent, #C5A059);
}

.designer-ideas-section .faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, margin-top 0.3s ease;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.75;
  padding-left: 2.75rem;
  display: block;
}

.designer-ideas-section .faq-item.open .faq-answer {
  max-height: 400px;
  opacity: 1;
  margin-top: 1.25rem;
}

@media (max-width: 768px) {
  .designer-ideas-section .faq-item {
    padding: 1.4rem 0;
  }

  .designer-ideas-section .faq-answer {
    padding-left: 0;
  }

  .designer-ideas-section .faq-question-text {
    gap: 0.75rem;
  }
}

/* Responsive 2-Column Grid: Ensure images always display ABOVE text content on mobile screens while remaining staggered on desktop */
.grid-2col-responsive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 851px) {
  .grid-2col-responsive.staggered-reverse>.grid-text-col {
    order: 2;
  }

  .grid-2col-responsive.staggered-reverse>.grid-img-col {
    order: 1;
  }
}

@media (max-width: 850px) {
  .grid-2col-responsive {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .grid-2col-responsive>.grid-img-col,
  .hero-reveal-grid>.hero-reveal-container {
    order: -1 !important;
    width: 100% !important;
  }

  .grid-2col-responsive>.grid-text-col,
  .hero-reveal-grid>.hero-reveal-card {
    order: 1 !important;
    width: 100% !important;
  }
}

/* Logo Grid Responsive: 3 columns on desktop, 2 columns on mobile */
.logo-grid-responsive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .logo-grid-responsive {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
}

/* Brand Showcase Section Responsive Rules */
@media (max-width: 850px) {
  .brand-header-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .brand-tiles-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.75rem 1.25rem !important;
  }
}

@media (max-width: 520px) {
  .brand-tiles-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

/* Single Row Logo Showcase (6 logos in 1 single horizontal row on desktop) */
.logo-single-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  width: 100%;
}

.logo-single-row .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 70px;
}

.logo-single-row .logo-item img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.logo-single-row .logo-item img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .logo-single-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem 1.25rem !important;
  }
}

/* Feature Titles with Accent Red Bullet Dot */
.feature-title-bullet {
  color: #111111;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
  font-weight: 800;
}

.feature-title-bullet::before {
  content: '';
  width: 9px;
  height: 9px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* Site-wide removal of red left-side highlighted borders */
[style*="border-left"] {
  border-left: none !important;
}

div[style*="border-left"] {
  border: 1px solid var(--border-subtle) !important;
}

p[style*="border-left"] {
  border-left: none !important;
  padding-left: 0 !important;
}

/* Dark Theme Security Packages Layout */
.packages-pricing-section {
  background: #252b3d;
  width: 100%;
  padding: 6rem 0;
  margin: 0;
  color: #ffffff;
}

.packages-pricing-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.packages-pricing-grid {
  display: grid;
  grid-template-columns: 260px repeat(3, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.package-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 1.5rem 1rem;
  margin-top: 4.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

@media (max-width: 1100px) {
  .packages-pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .package-card {
    margin-top: 2rem;
  }
}

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

  .packages-pricing-container {
    padding: 0 1.25rem;
  }

  .packages-pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .package-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    margin-top: 1rem;
  }

  .package-card:hover {
    border-color: #333333;
  }

  .package-card-featured {
    border-color: #2a2a2a;
  }
}

.package-card-popular-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
}

.package-card-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.package-card-popular-tag {
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 0.5rem;
}

.package-card-subtitle {
  font-size: 0.85rem;
  color: #888888;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.package-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.package-card-list li {
  display: flex;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: #d1d1d1;
  line-height: 1.45;
}

.package-card-list li .plus-icon {
  color: var(--color-accent);
  font-weight: 800;
  flex-shrink: 0;
}

.package-card-footer {
  margin-top: 2.5rem;
  border-top: 1px solid #222222;
  padding-top: 1.35rem;
}

.package-card-btn {
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: opacity 0.2s ease;
}

.package-card-btn:hover {
  opacity: 0.85;
}

.package-card-btn-solid {
  color: #ffffff;
  background: var(--color-accent);
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

/* Pinned Sticky Scroll Specialty Section (Interactive Stat Stacking matching reference layout) */
.specialty-sticky-section {
  position: relative;
  height: 320vh;
  background: var(--bg-primary, #ffffff);
  border-bottom: 1px solid var(--border-subtle);
}

.specialty-sticky-wrapper {
  position: sticky;
  top: 90px;
  height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.specialty-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
  width: 100%;
}

.specialty-left {
  max-width: 540px;
}

.specialty-right-stage {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 2rem;
  padding-top: 2.5rem;
  position: relative;
}

.specialty-stat-item {
  opacity: 0;
  transform: translateY(160px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
  pointer-events: none;
}

.specialty-stat-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.specialty-stat-num {
  font-family: var(--font-sans);
  font-size: clamp(3.2rem, 5.2vw, 5.2rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.specialty-stat-label {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.35;
  max-width: 440px;
}

.specialty-stat-item:nth-child(1) {
  transition-delay: 0.08s;
}

.specialty-stat-item:nth-child(2) {
  transition-delay: 0.22s;
}

.specialty-stat-item:nth-child(3) {
  transition-delay: 0.36s;
}

.specialty-stat-item:nth-child(4) {
  transition-delay: 0.50s;
}

@media (max-width: 992px) {
  .specialty-sticky-section {
    height: auto !important;
    padding: 5rem 0;
  }

  .specialty-sticky-wrapper {
    position: relative !important;
    height: auto !important;
    top: 0 !important;
    display: block !important;
    overflow: visible !important;
  }

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

  .specialty-right-stage {
    padding-left: 0;
    padding-top: 0;
    gap: 2.25rem;
  }

  .specialty-stat-item {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .specialty-stat-item.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
}

/* Stacked Process / Services Section (Sticky Scroll Stacking as shown in reference image) */
.stacked-services-section {
  background: var(--bg-canvas, #f8f7f4);
  padding: 4rem 0 6rem 0;
  position: relative;
}

.stacked-services-container {
  display: flex;
  flex-direction: column;
  position: relative;
}

.stacked-service-row {
  position: sticky;
  background: var(--bg-canvas, #f8f7f4);
  display: grid;
  grid-template-columns: 85px 1.2fr 1fr;
  gap: 2rem 3.5rem;
  padding: 3.75rem 0 4.5rem 0;
  border-top: 1.5px solid #dcdcd5;
  align-items: start;
  will-change: position, transform;
}

.stacked-service-row:nth-child(1) {
  top: 90px;
  z-index: 1;
}

.stacked-service-row:nth-child(2) {
  top: 150px;
  z-index: 2;
}

.stacked-service-row:nth-child(3) {
  top: 210px;
  z-index: 3;
}

.stacked-service-row:last-child {
  border-bottom: 1.5px solid #dcdcd5;
}

.stacked-service-num {
  font-family: var(--font-sans);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--color-accent, #C5A059);
  letter-spacing: -0.03em;
}

.stacked-service-main-title {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: #001621;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.stacked-service-tag {
  font-family: var(--font-mono, SFMono-Regular, Consolas, Monaco, monospace);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666666;
  margin-bottom: 1rem;
}

.stacked-service-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.stacked-service-list-item {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 600;
  color: #222222;
  line-height: 1.45;
  display: flex;
  align-items: center;
}

.stacked-service-desc {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: #444444;
  line-height: 1.7;
}

.stacked-service-desc p {
  margin-bottom: 1.25rem;
}

.stacked-service-desc p:last-child {
  margin-bottom: 0;
}

.stacked-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stacked-subgrid-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: #001621;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.stacked-subgrid-desc {
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.45;
}

@media (max-width: 991px) {
  .stacked-services-section {
    padding: 2rem 0 4rem 0;
  }

  .stacked-service-row {
    position: sticky;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.5rem 0 2.25rem 0;
  }

  .stacked-service-row:nth-child(1) {
    top: 70px;
    z-index: 1;
  }

  .stacked-service-row:nth-child(2) {
    top: 110px;
    z-index: 2;
  }

  .stacked-service-row:nth-child(3) {
    top: 150px;
    z-index: 3;
  }

  .stacked-service-num {
    font-size: 1.85rem;
    margin-bottom: 0.15rem;
  }

  .stacked-service-main-title {
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
    line-height: 1.15;
  }

  .stacked-service-tag {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
  }

  .stacked-service-list {
    gap: 0.4rem;
    margin-bottom: 0.75rem;
  }

  .stacked-service-list-item {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .stacked-service-list-item i {
    font-size: 0.9rem !important;
    margin-right: 0.5rem !important;
  }

  .stacked-service-desc {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .stacked-service-desc p {
    margin-bottom: 0.6rem;
  }

  .stacked-subgrid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }

  .stacked-subgrid-title {
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
  }

  .stacked-subgrid-desc {
    font-size: 0.8rem;
    line-height: 1.35;
  }
}

/* 3-Step Process Asymmetric Cards Grid (Featured Card 01) */
.process-cards-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  gap: 1.75rem;
  align-items: stretch;
}

.process-card-featured .process-card-img-wrap {
  height: 330px;
}

.process-card-secondary .process-card-img-wrap {
  height: 200px;
}

/* Process Cards Slide-In Reveal Animation */
.process-card-featured,
.process-card-secondary {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
  will-change: opacity, transform;
}

@media (min-width: 992px) {
  .process-cards-grid .process-card-featured:nth-child(1) {
    transition-delay: 0.05s;
  }

  .process-cards-grid .process-card-secondary:nth-child(2) {
    transition-delay: 0.22s;
  }

  .process-cards-grid .process-card-secondary:nth-child(3) {
    transition-delay: 0.39s;
  }
}

@media (max-width: 991px) {
  .process-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-card-featured,
  .process-card-secondary {
    transition-delay: 0s !important;
  }

  .process-card-featured .process-card-img-wrap,
  .process-card-secondary .process-card-img-wrap {
    height: 240px;
  }
}

.process-card-featured.revealed,
.process-card-secondary.revealed {
  opacity: 1;
  transform: translateY(0);
}

.process-card-featured.revealed:hover,
.process-card-secondary.revealed:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08) !important;
}

/* Responsive Audit Button Placement in Process Section */
.process-btn-desktop {
  display: inline-flex;
}

.process-btn-mobile {
  display: none;
}

@media (max-width: 767px) {
  .process-section-wrap {
    padding: 3rem 0 3.5rem 0 !important;
  }

  .process-header-row {
    margin-bottom: 1.25rem !important;
  }

  .process-btn-desktop {
    display: none !important;
  }

  .process-btn-mobile {
    display: flex !important;
    justify-content: center;
    margin-top: 2.25rem;
    width: 100%;
  }

  .process-btn-mobile a {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    text-align: center;
  }
}

/* Standalone Home Marquee Section & Symmetrical Spacing */
.section-statement-layout {
  padding: 5.5rem 0 6.25rem 0 !important;
  background: #ffffff;
}

.home-marquee-section {
  background: #ffffff;
  padding: 0 0 3.25rem 0;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.specialty-sticky-wrapper {
  align-items: flex-start !important;
  padding-top: 0 !important;
}

@media (max-width: 992px) {
  .section-statement-layout {
    padding: 3.5rem 0 2rem 0 !important;
  }

  .home-marquee-section {
    padding: 0 0 2rem 0;
  }

  .specialty-sticky-wrapper {
    align-items: center !important;
  }
}

/* ==========================================================================
   High-Impact "LET'S WORK TOGETHER" Spotlight CTA Banner
   ========================================================================== */
.home-together-cta {
  position: relative;
  background-color: #050505;
  background-image: url('/assets/images/cta-spotlight.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 12rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-together-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.85) 0%, rgba(5, 5, 5, 0.45) 50%, rgba(5, 5, 5, 0.85) 100%),
    radial-gradient(circle at center, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.75) 80%, #050505 100%);
  pointer-events: none;
}

.together-cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.together-cta-heading {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(4.2rem, 9.2vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
}

.together-cta-heading span {
  display: block;
  white-space: nowrap;
}

.together-cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 480px;
  width: 100%;
  margin-left: auto;
}

.together-cta-text {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.88);
  margin-bottom: 2.75rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
}

.together-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem 3.2rem;
  border-radius: 9999px;
  border: 1.5px solid #C5A059;
  color: #C5A059;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background: rgba(158, 139, 125, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 25px rgba(158, 139, 125, 0.22), inset 0 0 15px rgba(158, 139, 125, 0.1);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.together-cta-btn:hover {
  background: #C5A059;
  color: #ffffff;
  border-color: #C5A059;
  box-shadow: 0 0 40px rgba(158, 139, 125, 0.65);
  transform: translateY(-3px);
}

/* ==========================================================================
   Business Portal Commercial CTA Banner
   ========================================================================== */
.biz-together-cta {
  position: relative;
  background-color: #050714;
  background-image: url('/assets/images/business-cta-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 12rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(37, 43, 61, 0.25);
}

.biz-together-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 20, 0.88) 0%, rgba(5, 7, 20, 0.52) 50%, rgba(5, 7, 20, 0.88) 100%),
    radial-gradient(circle at center, rgba(5, 7, 20, 0.15) 0%, rgba(5, 7, 20, 0.8) 80%, #050714 100%);
  pointer-events: none;
}

.biz-together-cta .together-cta-btn,
.together-cta-btn.biz-cta-btn {
  border-color: #61709e !important;
  color: #61709e !important;
  background: rgba(37, 43, 61, 0.08) !important;
  box-shadow: 0 0 25px rgba(37, 43, 61, 0.22), inset 0 0 15px rgba(37, 43, 61, 0.1) !important;
}

.biz-together-cta .together-cta-btn:hover,
.together-cta-btn.biz-cta-btn:hover {
  background: linear-gradient(135deg, #61709e 0%, #4a577d 100%) !important;
  color: #ffffff !important;
  border-color: #61709e !important;
  box-shadow: 0 0 40px rgba(37, 43, 61, 0.65) !important;
  transform: translateY(-3px);
}

@media (max-width: 991px) {

  .home-together-cta,
  .biz-together-cta {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 6.5rem 0;
    background-position: center center;
  }

  .together-cta-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    width: 100%;
  }

  .together-cta-heading {
    font-size: clamp(4.8rem, 20vw, 9.5rem) !important;
    line-height: 0.84 !important;
    letter-spacing: -0.04em !important;
  }

  .together-cta-heading span {
    white-space: normal;
  }

  .together-cta-content {
    align-items: center;
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0 0.5rem;
  }

  .together-cta-text {
    font-size: clamp(1.05rem, 4.2vw, 1.25rem);
    line-height: 1.55;
    margin-bottom: 2.25rem;
    max-width: 100%;
  }

  .together-cta-btn {
    padding: 1.05rem 2.2rem;
    font-size: 0.88rem;
    letter-spacing: 0.07em;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    word-break: break-word;
  }
}

/* ==========================================================================
   Editorial Contact Page Section (Matching Reference Card & Info Layout)
   ========================================================================== */
.contact-editorial-section {
  padding: 5.5rem 0 7.5rem 0;
  background-color: #252b3d !important;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-editorial-section .together-cta-heading {
  color: #ffffff !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9) !important;
}

.contact-editorial-section .together-cta-heading span[style*="color"],
.contact-editorial-section .together-cta-heading span:nth-child(2),
body.business-portal .contact-editorial-section .together-cta-heading span[style*="color"],
body.business-portal .contact-editorial-section .together-cta-heading span:nth-child(2) {
  color: #C5A059 !important;
}

.contact-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: flex-start;
}

.contact-dark-card {
  background: #252b3d !important;
  background-color: #252b3d !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2.25rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.contact-dark-input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0.95rem 1.15rem;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-dark-input:focus {
  outline: none !important;
  border-color: #C5A059 !important;
  box-shadow: 0 0 12px rgba(197, 160, 89, 0.35) !important;
}

.contact-dark-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-dark-input option {
  background-color: #252b3d;
  color: #ffffff;
}

/* Submit Buttons in Contact Cards across Business & Home Services */
.contact-dark-card .btn-primary,
.contact-dark-card .btn-pill-accent,
.contact-editorial-section .btn-primary,
.contact-editorial-section .btn-pill-accent,
.contact-dark-card button[type="submit"],
.contact-editorial-section button[type="submit"] {
  background: linear-gradient(135deg, #988678 0%, #C5A059 100%) !important;
  background-size: 160% 160% !important;
  border: none !important;
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(197, 160, 89, 0.35) !important;
}

.contact-dark-card .btn-primary:hover,
.contact-dark-card .btn-pill-accent:hover,
.contact-editorial-section .btn-primary:hover,
.contact-editorial-section .btn-pill-accent:hover,
.contact-dark-card button[type="submit"]:hover,
.contact-editorial-section button[type="submit"]:hover {
  background-position: 100% 0 !important;
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5) !important;
  transform: translateY(-2px) !important;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

@media (max-width: 991px) {
  .contact-editorial-section {
    padding: 3.5rem 0 4.5rem 0 !important;
    overflow: hidden !important;
  }

  .contact-editorial-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .contact-editorial-section .together-cta-heading {
    font-size: clamp(2.8rem, 11vw, 4.4rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.035em !important;
    word-break: break-word !important;
  }

  .contact-dark-card {
    padding: 1.25rem !important;
    margin-bottom: 1.5rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .contact-form-row {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
  }

  .contact-dark-input {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .contact-info-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
}

/* Full-Width 2-Row Architectural Brand Grid (7 Columns Desktop) */
.brand-staggered-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.1rem;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.brand-tile {
  background: #f3f4f6;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  aspect-ratio: 1.15 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.brand-tile:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: var(--color-accent, #C5A059);
  box-shadow: 0 10px 24px rgba(158, 139, 125, 0.16);
}

.brand-logo-img {
  max-width: 74%;
  max-height: 50%;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.85;
  filter: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand-tile:hover .brand-logo-img {
  opacity: 1;
  transform: scale(1.05);
}

.brand-tile-empty {
  aspect-ratio: 1.15 / 1;
}

.desktop-only {
  display: block;
}

@media (max-width: 1100px) {
  .brand-staggered-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.85rem;
  }
}

@media (max-width: 768px) {
  .brand-staggered-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    max-width: 480px;
  }

  .desktop-only {
    display: none !important;
  }

  .brand-staggered-grid .brand-tile {
    border-radius: 14px;
    padding: 0.75rem;
    aspect-ratio: 1 / 1;
    opacity: 0;
    transform: translateY(18px) scale(0.9);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  }

  .brand-staggered-grid.revealed .brand-tile {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  /* Randomized Pop-In Stagger Sequence on Mobile (12 Visible Logos) */
  .brand-staggered-grid.revealed>*:nth-child(6) {
    transition-delay: 0.00s;
  }

  /* Samsung */
  .brand-staggered-grid.revealed>*:nth-child(1) {
    transition-delay: 0.05s;
  }

  /* Control4 */
  .brand-staggered-grid.revealed>*:nth-child(21) {
    transition-delay: 0.10s;
  }

  /* Integra */
  .brand-staggered-grid.revealed>*:nth-child(4) {
    transition-delay: 0.15s;
  }

  /* Sonos */
  .brand-staggered-grid.revealed>*:nth-child(13) {
    transition-delay: 0.20s;
  }

  /* DMF Lighting */
  .brand-staggered-grid.revealed>*:nth-child(10) {
    transition-delay: 0.25s;
  }

  /* Sonance */
  .brand-staggered-grid.revealed>*:nth-child(3) {
    transition-delay: 0.30s;
  }

  /* Lutron */
  .brand-staggered-grid.revealed>*:nth-child(17) {
    transition-delay: 0.35s;
  }

  /* Modern Forms */
  .brand-staggered-grid.revealed>*:nth-child(9) {
    transition-delay: 0.40s;
  }

  /* Lucetta CI */
  .brand-staggered-grid.revealed>*:nth-child(12) {
    transition-delay: 0.45s;
  }

  /* Mecho */
  .brand-staggered-grid.revealed>*:nth-child(19) {
    transition-delay: 0.50s;
  }

  /* Episode */
  .brand-staggered-grid.revealed>*:nth-child(15) {
    transition-delay: 0.55s;
  }

  /* WAC Group */
}

/* Sequential Left-to-Right 1-by-1 Stagger Animation on Desktop */
@media (min-width: 769px) {

  .brand-staggered-grid .brand-tile,
  .brand-staggered-grid .brand-tile-empty {
    opacity: 0;
    transform: translateY(22px) scale(0.92);
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  }

  .brand-staggered-grid.revealed .brand-tile,
  .brand-staggered-grid.revealed .brand-tile-empty {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  /* Column-by-Column Left-to-Right Wave Stagger Across 3 Rows (Columns 1 to 7) */
  .brand-staggered-grid.revealed>*:nth-child(1) {
    transition-delay: 0.00s;
  }

  /* Control4 (Col 1) */
  .brand-staggered-grid.revealed>*:nth-child(8) {
    transition-delay: 0.03s;
  }

  /* Empty 4 (Col 1) */
  .brand-staggered-grid.revealed>*:nth-child(15) {
    transition-delay: 0.06s;
  }

  /* WAC Group (Col 1) */
  .brand-staggered-grid.revealed>*:nth-child(2) {
    transition-delay: 0.09s;
  }

  /* Empty 1 (Col 2) */
  .brand-staggered-grid.revealed>*:nth-child(9) {
    transition-delay: 0.12s;
  }

  /* Lucetta CI (Col 2) */
  .brand-staggered-grid.revealed>*:nth-child(16) {
    transition-delay: 0.15s;
  }

  /* Empty 7 (Col 2) */
  .brand-staggered-grid.revealed>*:nth-child(3) {
    transition-delay: 0.18s;
  }

  /* Lutron (Col 3) */
  .brand-staggered-grid.revealed>*:nth-child(10) {
    transition-delay: 0.21s;
  }

  /* Sonance (Col 3) */
  .brand-staggered-grid.revealed>*:nth-child(17) {
    transition-delay: 0.24s;
  }

  /* Modern Forms (Col 3) */
  .brand-staggered-grid.revealed>*:nth-child(4) {
    transition-delay: 0.27s;
  }

  /* Sonos (Col 4) */
  .brand-staggered-grid.revealed>*:nth-child(11) {
    transition-delay: 0.30s;
  }

  /* Empty 5 (Col 4) */
  .brand-staggered-grid.revealed>*:nth-child(18) {
    transition-delay: 0.33s;
  }

  /* Empty 8 (Col 4) */
  .brand-staggered-grid.revealed>*:nth-child(5) {
    transition-delay: 0.36s;
  }

  /* Empty 2 (Col 5) */
  .brand-staggered-grid.revealed>*:nth-child(12) {
    transition-delay: 0.39s;
  }

  /* Mecho (Col 5) */
  .brand-staggered-grid.revealed>*:nth-child(19) {
    transition-delay: 0.42s;
  }

  /* Episode (Col 5) */
  .brand-staggered-grid.revealed>*:nth-child(6) {
    transition-delay: 0.45s;
  }

  /* Samsung (Col 6) */
  .brand-staggered-grid.revealed>*:nth-child(13) {
    transition-delay: 0.48s;
  }

  /* DMF Lighting (Col 6) */
  .brand-staggered-grid.revealed>*:nth-child(20) {
    transition-delay: 0.51s;
  }

  /* Empty 9 (Col 6) */
  .brand-staggered-grid.revealed>*:nth-child(7) {
    transition-delay: 0.54s;
  }

  /* Empty 3 (Col 7) */
  .brand-staggered-grid.revealed>*:nth-child(14) {
    transition-delay: 0.57s;
  }

  /* Empty 6 (Col 7) */
  .brand-staggered-grid.revealed>*:nth-child(21) {
    transition-delay: 0.60s;
  }

  /* Integra (Col 7) */
}