/* ============================================
   REDESIGN CSS - Tech + Toast Site Redesign
   Elamental-Inspired Full Redesign
   ============================================ */

/* ---------- Global ---------- */
html {
  scroll-behavior: smooth;
}

/* ---------- Body Overrides ---------- */
body.home-page {
  background: #0a0a0a !important;
  margin: 0;
  padding: 0;
  overflow-y: auto;
}

body.split-page {
  background: #0a0a0a !important;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body.minimal-page {
  background: #fff !important;
  color: #000 !important;
}

/* ---------- Font Family ---------- */
.home-root,
.minimal-layout {
  font-family: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   SPLIT SCREEN HOMEPAGE
   ============================================ */

.home-root {
  position: relative;
  height: 100vh;
  background: #0a0a0a;
  overflow: hidden;
}

/* Override main.css pink link color */
.home-root a,
.home-root a:link,
.home-root a:visited,
.home-root a:active,
body.home-page a,
body.home-page a:link,
body.home-page a:visited,
body.home-page a:active {
  color: #fff;
  text-decoration: none;
}

/* Grain texture overlay */
.home-root::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ---------- Full-viewport background behind fixed panels ---------- */
.home-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #0a0a0a;
}

/* ---------- Panels ---------- */
.home-panel {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
  will-change: transform;
}

.home-panel--tech {
  left: 0;
  background: #ffffff;
  color: #000000;
}

.home-panel--tech h1,
.home-panel--tech h2,
.home-panel--tech h3,
.home-panel--tech p {
  color: #000000;
}

.home-panel--toast {
  right: 0;
  background: #000000;
  color: #ffffff;
  justify-content: flex-end;
}

.home-panel--toast .home-panel__content {
  text-align: right;
}

.home-panel--toast h1,
.home-panel--toast h2,
.home-panel--toast h3,
.home-panel--toast p {
  color: #ffffff;
}

/* Panel content */
.home-panel__content {
  padding: 60px 80px;
  max-width: 600px;
}

.home-panel__content h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 32px 0;
  letter-spacing: -1px;
}

.home-panel__content p {
  font-size: 25px;
  line-height: 1.25;
  margin: 0 0 16px 0;
  opacity: 0.7;
  font-weight: 400;
}

/* ---------- Center Plus (decorative) ---------- */
.home-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  z-index: 10;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 1;
}

.home-plus__bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 50px;
  transform: translate(-50%, -50%);
}

.home-plus__bar--h {
  background: linear-gradient(to right, #000 50%, #fff 50%);
  height: 25px;
}

.home-plus__bar--v {
  transform: translate(-50%, -50%) rotate(90deg);
  background: linear-gradient(to top, #000 50%, #fff 50%);
}

/* ============================================
   MOBILE RESPONSIVE (max-width: 768px)
   ============================================ */

@media (max-width: 768px) {
  .home-root {
    min-height: calc(var(--vh, 1vh) * 100);
  }

  .home-bg {
    height: calc(var(--vh, 1vh) * 100);
  }

  .home-panel {
    position: relative;
    width: 100%;
    height: calc(var(--vh, 1vh) * 50);
  }

  .home-panel--tech {
    left: auto;
    align-items: flex-end;
    justify-content: center;
  }

  .home-panel--tech .home-panel__content {
    padding-bottom: 50px;
  }

  .home-panel--toast {
    right: auto;
    align-items: flex-start;
    justify-content: center;
  }

  .home-panel--toast .home-panel__content {
    padding-top: 50px;
  }

  .home-panel__content {
    padding: 28px;
    max-width: none;
  }

  .home-panel__content h1 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .home-panel__content p {
    font-size: 25px;
  }

  /* Center plus on mobile */
  .home-plus {
    top: calc(var(--vh, 1vh) * 50);
    transform: translate(-50%, -50%) rotate(90deg) scale(0.33);
  }
}

@media (max-width: 468px) {
  .home-panel__content h1 {
    font-size: 30px;
  }

  .home-panel__content p {
    font-size: 16px;
  }
}

/* ---------- Override main.css animations on redesigned pages ---------- */
.home-root .scrolla-element-anim-1,
.minimal-layout .scrolla-element-anim-1,
.home-root .scroll-animate,
.minimal-layout .scroll-animate {
  transform: none !important;
  opacity: 1 !important;
  transition: none !important;
}

.home-root .splitting-text-anim-1,
.home-root .splitting-text-anim-2,
.home-root .splitting-text-anim-4,
.minimal-layout .splitting-text-anim-1,
.minimal-layout .splitting-text-anim-2,
.minimal-layout .splitting-text-anim-4 {
  transform: none !important;
  opacity: 1 !important;
}

/* =====================================================
   GLOBAL HEADER
   ===================================================== */

.global-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.global-header__nav {
  display: flex;
  gap: 32px;
  transition: opacity 0.5s ease;
}

.global-header__nav--right {
  position: absolute;
  right: 40px;
}

.global-header__link {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  position: relative;
  line-height: 1.4;
  transition: opacity 0.2s ease;
}

.global-header__link::after {
  content: '';
  display: block;
  width: 0;
  height: 1.5px;
  background: currentColor;
  transition: width 0.3s ease;
  margin-top: 4px;
}

.global-header__link:hover::after,
.global-header__link--active::after {
  width: 100%;
}

/* Homepage: transparent header */
.home-page .global-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Logo in header — top-left */
.global-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: absolute;
  left: 40px;
}

.global-header__logo img {
  height: 45px;
  width: auto;
}

/* Homepage: invert logo to black on white panel */
.home-page .global-header__logo img {
  filter: invert(1);
  transition: filter 0.4s ease;
}

/* Homepage: hamburger icon black */
.home-page .global-header__toggle span {
  background: #000;
  transition: background 0.4s ease;
}

/* Homepage scrolled into dark sections: revert logo + hamburger to white */
.home-scrolled-dark .global-header__logo img {
  filter: invert(0);
}

.home-scrolled-dark .global-header__toggle span {
  background: #fff;
}

.home-scrolled-dark .global-header {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.4s ease;
}

/* Mobile toggle */
.global-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: fixed;
  right: 24px;
  height: auto;
  z-index: 10000;
}

.global-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.global-header__toggle--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.global-header__toggle--open span:nth-child(2) {
  opacity: 0;
}

.global-header__toggle--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav — uses 100vh instead of 100% to escape backdrop-filter containing block */
.global-header__mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #0a0a0a;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  clip-path: inset(50% 50% 50% 50%);
  transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
  z-index: 9999;
}

.global-header__mobile-nav--open {
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
}

.global-header__mobile-nav .global-header__link,
.global-header__mobile-nav .global-header__link:link,
.global-header__mobile-nav .global-header__link:visited {
  color: #fff !important;
  font-size: 32px;
  text-align: center;
}

/* When mobile menu is open, toggle X must always be white */
.global-header__toggle--open span {
  background: #fff !important;
}

@media (max-width: 768px) {
  .global-header__nav--right {
    display: none;
  }

  .global-header__toggle {
    display: flex;
  }

  .global-header__mobile-nav {
    display: flex;
  }

  .global-header {
    height: 50px;
    padding: 0 24px;
  }

  .global-header__logo {
    left: 24px;
  }

  .global-header__toggle {
    top: 25px;
    transform: translateY(-50%);
  }
}

/* =====================================================
   PAGE LAYOUT (regular full-page, non-split)
   ===================================================== */

.page-layout {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 100px;
  font-family: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain texture overlay on inner pages */
.page-layout::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Dark variant */
.page-layout--dark {
  background: #0a0a0a;
  color: #ffffff;
}

.page-layout--dark h1,
.page-layout--dark h2,
.page-layout--dark h3,
.page-layout--dark p {
  color: #ffffff;
}

/* Light variant */
.page-layout--light {
  background: #ffffff;
  color: #000000;
}

.page-layout--light h1,
.page-layout--light h2,
.page-layout--light h3,
.page-layout--light p {
  color: #000000;
}

/* Header link colors per variant */
.page-layout--dark .global-header__link {
  color: #fff;
}

.page-layout--dark .global-header__toggle span {
  background: #fff;
}

.page-layout--light .global-header__link {
  color: #000;
}

/* Links: always white on dark, no accent colors */
.page-layout--dark a {
  color: #fff;
}

.page-layout--dark a:link,
.page-layout--dark a:visited {
  color: #fff;
}

/* Override legacy animation system on page layouts */
.page-layout .scrolla-element-anim-1,
.page-layout .scroll-animate {
  transform: none !important;
  opacity: 1 !important;
  transition: none !important;
}

/* =====================================================
   LUXURY REDESIGN (.lux-* classes)
   ===================================================== */

/* ---------- Luxury Section ---------- */
.lux-section {
  padding: 60px 80px;
}

.lux-section--light {
  background: #fff;
}

.lux-section__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.4;
  margin: 0 0 48px 0;
}

.lux-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  margin: 0;
}

.page-layout--light .lux-divider {
  background: rgba(0, 0, 0, 0.08);
}

/* ---------- Luxury Hero (default: left-aligned) ---------- */
.lux-hero {
  padding: 160px 80px 80px;
}

.lux-hero--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.lux-hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.0;
  margin: 0 0 32px 0;
}

.lux-hero-mission {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.5;
  opacity: 0.7;
  max-width: 720px;
  margin: 0;
}

.lux-subtitle {
  font-size: clamp(18px, 2vw, 24px);
  opacity: 0.6;
  max-width: 600px;
  margin: 0;
  line-height: 1.5;
}

/* =====================================================
   VIDEO HERO (.lux-video-hero)
   ===================================================== */

.lux-video-hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.lux-video-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-video-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
}

.lux-video-hero__gradient {
  display: none;
}

.lux-video-hero__content {
  position: relative;
  z-index: 10;
  padding: 160px 80px 80px;
}

.lux-video-hero__title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.0;
  margin: 0 0 24px 0;
  text-transform: uppercase;
}

.lux-video-hero__subtitle {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.2;
  opacity: 0.7;
  max-width: 600px;
  margin: 0;
}

@media (max-width: 768px) {
  .lux-video-hero {
    min-height: 50vh;
  }

  .lux-video-hero__content {
    padding: 120px 28px 48px;
  }
}

/* =====================================================
   WORK IMAGE CARDS (.lux-work-cards / .lux-work-card)
   ===================================================== */

.lux-work-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.lux-work-card {
  position: relative;
  display: block;
  border-radius: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: none;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease;
}

.lux-work-card:link,
.lux-work-card:visited {
  color: #fff;
}

.lux-work-card:hover {
  transform: translateY(-4px);
}

.lux-work-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.2) 60%, transparent 100%);
}

.lux-work-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 1;
}

.lux-work-card__category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  margin: 0 0 8px 0;
}

.lux-work-card__name {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0 0 12px 0;
  text-transform: uppercase;
}

.lux-work-card__link {
  font-size: 14px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.lux-work-card__arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  margin-left: 4px;
}

.lux-work-card:hover .lux-work-card__link {
  opacity: 1;
}

.lux-work-card:hover .lux-work-card__arrow {
  transform: translateX(6px);
}

@media (max-width: 768px) {
  .lux-work-cards {
    grid-template-columns: 1fr;
  }
}

/* ---------- Luxury Capabilities (What We Do) ---------- */
.lux-capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.lux-capability {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
}

.page-layout--light .lux-capability {
  border-top-color: rgba(0, 0, 0, 0.12);
}

.lux-capability__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px 0;
  text-transform: uppercase;
}

.lux-capability__text {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.6;
  margin: 0;
}

/* ---------- Luxury Team ---------- */
.lux-team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.lux-team-member {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.lux-team-member__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.lux-team-member__text {
  flex: 1;
  min-width: 0;
}

.lux-team-member__role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.4;
  margin: 0 0 8px 0;
}

.lux-team-member__name {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

.lux-team-member__bio {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.65;
  margin: 0;
}

/* ---------- Luxury Partners ---------- */
.lux-partners-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.lux-partner {
  text-align: center;
}

.lux-partner__logo-link {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.lux-partner__logo-link:hover {
  opacity: 0.7;
}

.lux-partner__logo {
  height: 100px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 12px;
}

.lux-partner__desc {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.5;
  margin: 0;
}

/* ---------- Luxury Contact Grid ---------- */
.lux-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lux-contact-card {
  padding: 32px;
  height: 100%;
  background: #0a0a0a;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  color: #fff;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.lux-contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.3);
}

.lux-contact-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.4;
  margin: 0 0 12px 0;
  color: #fff;
}

.lux-contact-card__value {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  color: #fff;
}

/* ---------- Contact Logo ---------- */
.contact-logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-logo {
  width: 300px;
  height: auto;
  display: block;
}

/* ---------- Luxury Experience (brand logos) ---------- */
.lux-experience__text {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.6;
  margin: 0 0 24px 0;
  max-width: 600px;
}

.lux-experience__logos {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  max-width: 800px;
}

.lux-experience__logo-wrap {
  aspect-ratio: 1;
}

.lux-experience__logo-wrap--padded {
  padding: 10px;
}

.lux-experience__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: opacity 0.3s ease;
}

/* ---------- Luxury Detail Hero ---------- */
.lux-detail-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
}

.lux-detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.4) 50%,
    rgba(10, 10, 10, 0.2) 100%
  );
}

.lux-detail-hero__content {
  position: relative;
  z-index: 1;
  padding: 160px 80px 80px;
}

.lux-detail-hero__category {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 20px;
}

.lux-detail-hero__title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}

/* ---------- Luxury Detail Body ---------- */
.lux-detail-body {
  padding: 80px 80px 100px;
}

.lux-detail-description {
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.5;
  opacity: 0.75;
  margin: 0 0 60px 0;
  text-align: center;
}

/* ---------- Luxury Detail Meta ---------- */
.lux-detail-meta {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.lux-detail-meta__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.lux-detail-meta__item:last-child {
  border-right: none;
}

.lux-detail-meta__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.4;
}

.lux-detail-meta__value {
  font-size: 16px;
  opacity: 0.85;
}

.lux-detail-meta__link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.lux-detail-meta__link:hover {
  opacity: 1;
}

/* ---------- Luxury Detail Tags ---------- */
.lux-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 64px;
}

.lux-detail-tag {
  font-size: 13px;
  padding: 6px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  opacity: 0.6;
}

/* ---------- Luxury Detail Sections ---------- */
.lux-detail-sections {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-bottom: 80px;
}

.lux-detail-section__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.4;
  margin: 0 0 24px 0;
}

.lux-detail-section__text {
  font-size: 17px;
  line-height: 1.75;
  opacity: 0.7;
  margin: 0;
}

.lux-detail-results {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lux-detail-result {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.7;
  padding-left: 20px;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
}

/* ---------- Luxury Detail Nav ---------- */
.lux-detail-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lux-detail-nav__link {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.lux-detail-nav__link:link,
.lux-detail-nav__link:visited {
  color: #fff;
}

.lux-detail-nav__link:hover {
  opacity: 1;
}

/* =====================================================
   LUXURY REDESIGN — MOBILE (max-width: 768px)
   ===================================================== */

@media (max-width: 768px) {
  .lux-hero {
    padding: 120px 28px 60px;
  }

  .lux-section {
    padding: 80px 28px;
  }

  .lux-capabilities {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lux-team {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lux-team-member {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .lux-team-member__photo {
    width: 120px;
    height: 120px;
  }

  .lux-partners-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lux-contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lux-detail-hero {
    min-height: 50vh;
  }

  .lux-detail-hero__content {
    padding: 120px 28px 48px;
  }

  .lux-detail-body {
    padding: 48px 28px 80px;
  }

  .lux-detail-description {
    font-size: 20px;
  }

  .lux-detail-meta {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .lux-detail-meta__item {
    border-right: none;
    padding: 0;
  }

  .lux-detail-sections {
    gap: 64px;
  }

  .lux-experience__logos {
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
  }

  .lux-experience__logo {
    padding: 12px;
  }
}

/* =====================================================
   HOMEPAGE VIDEO IMPACT (.home-video-impact)
   ===================================================== */

.home-video-impact {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-video-impact__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-video-impact__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
  border: 20px solid #fff;
}

.home-video-impact__gradient {
  display: none;
}

.home-video-impact__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 40px;
  width: 60vw;
  max-width: 1100px;
}

.home-video-impact__title {
  font-size: clamp(38px, 7vw, 80px);
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1.05;
  margin: 0 0 28px 0;
  text-transform: uppercase;
  color: #fff;
}

.home-video-impact__subtitle {
  font-size: clamp(18px, 3vw, 32px);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
  color: #fff;
}

@media (max-width: 768px) {
  .home-video-impact {
    min-height: 80vh;
  }

  .home-video-impact__content {
    padding: 0 24px;
    overflow: visible;
  }

  .home-video-impact__title {
    letter-spacing: -1.5px;
  }
}

/* =====================================================
   HOMEPAGE SLIDESHOW (.home-slide)
   ===================================================== */

.home-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  opacity: 0;
  pointer-events: none;
}

.home-slide__title,
.home-slide__subtitle {
  opacity: 0;
  transform: translateY(30px);
  clip-path: inset(100% 0 0 0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-slide__title {
  font-size: clamp(38px, 7vw, 80px);
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1.05;
  margin: 0 0 28px 0;
  text-transform: uppercase;
  color: #fff;
}

.home-slide__subtitle {
  font-size: clamp(18px, 3vw, 32px);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
  color: #fff;
  transition-delay: 0.15s;
}

.home-slide--active {
  opacity: 1;
  pointer-events: auto;
}

.home-slide--active .home-slide__title,
.home-slide--active .home-slide__subtitle {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

.home-slide--active .home-slide__subtitle {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .home-slide__title {
    letter-spacing: -1.5px;
  }
}

/* =====================================================
   HOMEPAGE NAV SECTIONS (.home-nav-sections)
   ===================================================== */

.home-nav-sections {
  background: #0a0a0a;
  padding: 120px 80px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  font-family: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.home-nav-section {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.home-nav-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.home-nav-section:hover .home-nav-section__bg {
  transform: scale(1.05);
}

.home-nav-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.home-nav-section__content {
  position: absolute;
  inset: 0;
  padding: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-nav-section__title {
  font-size: 74px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0;
  text-align: center;
  color: black;
}

.home-nav-section__desc {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.6;
  margin: 0 0 12px 0;
}

.home-nav-section__arrow {
  font-size: 24px;
  opacity: 0.4;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: inline-block;
  margin-top: auto;
}

.home-nav-section:hover .home-nav-section__arrow {
  opacity: 1;
  transform: translateX(4px);
}

@media (min-width: 1081px) {
  .home-nav-section__title {
    font-size: 68px;
  }
}

@media (max-width: 1080px) {
  .home-nav-sections {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .home-nav-sections {
    padding: 80px 28px 60px;
  }

  .home-nav-section {
    aspect-ratio: 16 / 9;
  }
}

/* =====================================================
   SITE FOOTER
   ===================================================== */

.site-footer {
  background: #0a0a0a;
  padding: 40px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 32px 28px;
  }
}

/* ---------- Scroll-triggered fade-in ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   GALLERY CAROUSEL — Work Detail Pages
   ===================================================== */

.lux-detail-gallery {
  padding: 60px 0 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
}

.lux-detail-gallery__title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 32px;
}

.lux-detail-gallery__masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: start;
  justify-items: center;
}

.lux-detail-gallery__btn {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 0;
  margin: 0;
  border: none;
  background: #111;
  cursor: pointer;
  overflow: hidden;
  border-radius: 0;
}

.lux-detail-gallery__btn--landscape {
  grid-column: span 3;
}

.lux-detail-gallery__item {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.lux-detail-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.lux-detail-gallery__btn:hover .lux-detail-gallery__item {
  transform: scale(1.05);
}

.lux-detail-gallery__btn:hover .lux-detail-gallery__overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .lux-detail-gallery {
    padding: 40px 0 60px;
  }

  .lux-detail-gallery__masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .lux-detail-gallery__btn--landscape {
    grid-column: span 2;
  }
}

/* =====================================================
   LIGHTBOX OVERLAY
   ===================================================== */

.lux-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lux-lightbox__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 50px;
}

.lux-lightbox__close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  z-index: 2;
}

.lux-lightbox__close:hover {
  opacity: 1;
}

.lux-lightbox__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  animation: lux-lightbox-enter 0.3s ease-out;
}

@keyframes lux-lightbox-enter {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .lux-lightbox__inner {
    padding: 28px;
  }
}

/* =====================================================
   BRAND MANAGEMENT LANDING PAGE (/brand-management)
   ===================================================== */

/* ---------- Pricing Packages Grid ---------- */
.bm-packages__subtitle {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.55;
  margin: 0 0 48px 0;
  max-width: 500px;
}

.bm-packages {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.bm-package {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease;
}

.bm-package:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.bm-package__header {
  padding: 32px 28px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bm-package__title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 12px 0;
  color: #fff;
}

.bm-package__description {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.5;
  margin: 0 0 24px 0;
  color: #fff;
}

.bm-package__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.bm-package__amount {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
}

.bm-package__currency {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.4;
  color: #fff;
}

.bm-package__period {
  display: block;
  font-size: 13px;
  opacity: 0.4;
  margin-top: 4px;
  color: #fff;
}

.bm-package__body {
  padding: 28px;
  flex: 1;
}

.bm-package__features-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.35;
  margin: 0 0 20px 0;
  color: #fff;
}

.bm-package__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
}

.bm-package__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.7;
  color: #fff;
}

.bm-package__feature svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.bm-package__footer {
  padding: 0 28px 28px;
}

.bm-packages__timeline {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.4;
  margin: 48px 0 0 0;
  font-style: italic;
  color: #fff;
}

/* ---------- Brand Management — Mobile ---------- */
@media (max-width: 768px) {
  .bm-packages {
    gap: 24px;
  }

  .bm-package__features {
    grid-template-columns: 1fr;
  }

  .bm-package__amount {
    font-size: 32px;
  }
}

/* =====================================================
   AI CONSULTING LANDING PAGE (/ai-help)
   ===================================================== */

/* ---------- CTA Buttons (reusable) ---------- */
.lux-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  font-family: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  letter-spacing: 0.5px;
}

.lux-cta-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.lux-cta-btn--primary {
  background: #ff6b35;
  color: #fff;
}

.lux-cta-btn--primary:link,
.lux-cta-btn--primary:visited {
  color: #fff;
}

.lux-cta-btn--secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.lux-cta-btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.lux-cta-btn--whatsapp {
  background: #25D366;
  color: #fff;
}

.lux-cta-btn--whatsapp:link,
.lux-cta-btn--whatsapp:visited {
  color: #fff;
}

.lux-cta-btn--large {
  padding: 18px 40px;
  font-size: 17px;
}

.lux-cta-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ---------- AI Hero ---------- */
.ai-hero__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.5;
  margin: 0 0 24px 0;
  color: #ff6b35;
}

.ai-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ---------- Stats Bar ---------- */
.ai-stats {
  display: flex;
  justify-content: space-around;
  padding: 48px 80px;
  background: rgba(255, 107, 53, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ai-stats__item {
  text-align: center;
}

.ai-stats__number {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #ff6b35;
  letter-spacing: -1px;
}

.ai-stats__label {
  display: block;
  font-size: 14px;
  opacity: 0.5;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

/* ---------- AI Platforms Section ---------- */
.ai-platforms__intro {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.6;
  margin: 0 0 48px 0;
  max-width: 600px;
}

.ai-platforms__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  margin-bottom: 64px;
}

.ai-platforms__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-platforms__logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.ai-platforms__logo-item--gemini .ai-platforms__logo {
  width: 128px;
  height: 128px;
  padding: 10px;
}

.ai-platforms__video {
  max-width: 800px;
}

.ai-platforms__video-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #fff;
}

.ai-platforms__video-text {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.55;
  margin: 0 0 28px 0;
  color: #fff;
  max-width: 600px;
}

.ai-platforms__video-embed {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.ai-platforms__video-embed video {
  width: 100%;
  display: block;
}

/* ---------- Who It's For Grid ---------- */
.ai-for-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* ---------- AI Chat (GPT-style) ---------- */
.ai-chat__intro {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.6;
  margin: 0 0 36px 0;
  max-width: 600px;
}

.ai-chat {
  max-width: 640px;
}

.ai-chat__window {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: #111;
}

.ai-chat__messages {
  padding: 24px 20px;
  max-height: 480px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ai-chat__bubble {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 88%;
  animation: ai-chat-pop 0.25s ease-out;
}

.ai-chat__bubble--user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.ai-chat__avatar {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ff6b35;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-chat__text {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
}

.ai-chat__bubble--assistant .ai-chat__text {
  background: #1e1e1e;
  border-bottom-left-radius: 4px;
}

.ai-chat__bubble--user .ai-chat__text {
  background: #ff6b35;
  border-bottom-right-radius: 4px;
}

/* Typing indicator */
.ai-chat__typing {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 14px 20px;
}

.ai-chat__typing span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  animation: ai-chat-dot 1.2s infinite;
}

.ai-chat__typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-chat__typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes ai-chat-dot {
  0%, 60%, 100% { opacity: 0.3; transform: scale(1); }
  30% { opacity: 1; transform: scale(1.2); }
}

@keyframes ai-chat-pop {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Input bar */
.ai-chat__input-bar {
  display: flex;
  gap: 0;
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #1a1a1a;
}

.ai-chat__input {
  flex: 1;
  padding: 12px 16px;
  font-size: 15px;
  font-family: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.ai-chat__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.ai-chat__input:focus {
  border-color: #ff6b35;
}

.ai-chat__send {
  padding: 12px 16px;
  background: #ff6b35;
  border: 1px solid #ff6b35;
  border-radius: 0 8px 8px 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.ai-chat__send:hover { opacity: 0.85; }
.ai-chat__send:disabled { opacity: 0.35; cursor: not-allowed; }

/* ---------- Final CTA Block ---------- */
.ai-cta-block {
  padding: 100px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ai-cta-block__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0 0 20px 0;
  color: #fff;
}

.ai-cta-block__text {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.6;
  max-width: 520px;
  margin: 0 0 40px 0;
  color: #fff;
}

.ai-cta-block .ai-hero__ctas {
  justify-content: center;
}

/* ---------- Floating WhatsApp Button ---------- */
.ai-whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ai-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ---------- AI Landing Page — Mobile ---------- */
@media (max-width: 768px) {
  .ai-hero__ctas {
    flex-direction: column;
  }

  .ai-hero__ctas .lux-cta-btn {
    text-align: center;
    justify-content: center;
  }

  .ai-stats {
    flex-wrap: wrap;
    gap: 24px;
    padding: 36px 28px;
  }

  .ai-stats__item {
    width: 45%;
  }

  .ai-platforms__logos {
    gap: 32px;
  }

  .ai-platforms__logo {
    width: 120px;
    height: 120px;
  }

  .ai-platforms__logo-item--gemini .ai-platforms__logo {
    width: 96px;
    height: 96px;
    padding: 10px;
  }

  .ai-for-grid {
    grid-template-columns: 1fr;
  }

  .ai-chat__messages {
    max-height: 400px;
  }

  .ai-chat__bubble {
    max-width: 95%;
  }

  .ai-cta-block {
    padding: 64px 28px;
  }

  .ai-cta-block .ai-hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  .ai-cta-block .lux-cta-btn {
    text-align: center;
    justify-content: center;
  }

  .ai-whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}
