/* ==========================================================================
   QUICK TURN AUTO KEYS — COMPONENTS
   ========================================================================== */

/* ---------------------------------------------------------------------- */
/* BUTTONS                                                                 */
/* ---------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: var(--button-size);
  font-weight: var(--button-weight);
  letter-spacing: 0.02em;
  border-radius: var(--radius-button);
  border: 1px solid transparent;
  transition:
    transform var(--duration-fast) var(--ease),
    background-color var(--duration-fast) var(--ease),
    border-color var(--duration-fast) var(--ease),
    color var(--duration-fast) var(--ease);
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--accent);
  color: var(--button-text-on-accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text-primary);
}
.btn-outline:hover {
  border-color: var(--secondary);
  background: var(--surface);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

.btn-small {
  padding: 10px 18px;
  font-size: 12.5px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--accent);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  width: 100%;
  transition:
    gap var(--duration-fast) var(--ease),
    color var(--duration-fast) var(--ease);
}
.text-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--duration-fast) var(--ease);
}
.text-link:hover {
  color: var(--accent-hover);
}
.text-link:hover svg {
  transform: translateX(3px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 20, 26, 0.97);
  border-bottom: 1px solid var(--border);
}

.site-header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.brand-word {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.15;
}

.brand-word span {
  color: var(--accent);
}

.brand-sub {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-nav a:not(.btn) {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--duration-fast) var(--ease);
  position: relative;
  white-space: nowrap;
}
.main-nav a:not(.btn):hover {
  color: var(--text-primary);
}

.has-dropdown {
  position: relative;
}
.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.has-dropdown > a svg {
  width: 11px;
  height: 11px;
  transition: transform var(--duration-fast) var(--ease);
}
.has-dropdown:hover > a svg {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  min-width: 240px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity var(--duration-medium) var(--ease),
    transform var(--duration-medium) var(--ease),
    visibility var(--duration-medium);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 2px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.dropdown a:hover {
  background: var(--surface-2);
  color: var(--text-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}
.header-call svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
}

/* Nav toggle — must always be above the mobile panel overlay */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-button);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 201;
}
.nav-toggle svg {
  width: 18px;
  height: 18px;
  color: var(--text-primary);
}

/* Mobile panel — moved to <body> by JS so it escapes the header stacking
   context. Sits below the sticky header (top: 78px = header height). */
.mobile-panel {
  display: none;
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 200;
  overflow-y: auto;
  padding: 20px var(--pad-680) 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.mobile-panel.open {
  display: block;
}

.mobile-panel ul {
  display: flex;
  flex-direction: column;
}

.mobile-panel > .container,
.mobile-panel ul li {
  border-bottom: 1px solid var(--border);
}

.mobile-panel a:not(.btn):not(.mobile-call) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 2px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text-primary);
}

.mobile-sub {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
}
.mobile-sub a {
  font-size: 14px !important;
  color: var(--text-muted) !important;
  padding: 13px 2px !important;
}

.mobile-panel .btn {
  margin-top: 24px;
}

.mobile-panel .mobile-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-button);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-primary);
}
.mobile-panel .mobile-call svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 920px) {
  .main-nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .header-call {
    display: none !important;
  }
  .header-actions > a {
    display: none !important;
  }
}

/* ---------------------------------------------------------------------- */
/* HERO                                                                    */
/* ---------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: 64px 0 84px;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.22fr 1fr;
  gap: var(--gap-column);
  align-items: center;
}

.hero--fullbg {
  padding: 100px 0 120px;
  display: flex;
  align-items: center;
  min-height: 80vh;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(18, 20, 26, 0.95) 0%,
    rgba(18, 20, 26, 0.85) 40%,
    rgba(18, 20, 26, 0.4) 100%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex !important;
  flex-direction: column;
}

.hero--fullbg .hero-copy {
  max-width: 600px;
}

.hero-copy h1 {
  margin-bottom: 20px;
}
.hero-copy > p {
  font-size: 16.5px;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.hero-contact-strip {
  display: flex;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.hero-contact-item svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
  flex-shrink: 0;
}
.hero-contact-item strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 420px;
  border-radius: var(--radius-image);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.active {
  opacity: 1;
}

.hero-slide-art {
  width: 62%;
  height: 62%;
  color: var(--accent-dim);
  opacity: 0.9;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 20, 26, 0) 40%,
    rgba(18, 20, 26, 0.85) 100%
  );
  pointer-events: none;
}

.hero-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  background: rgba(18, 20, 26, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius-button);
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  backdrop-filter: blur(6px);
}

.hero-dots {
  position: absolute;
  right: 20px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  gap: 7px;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(242, 241, 236, 0.35);
  border: none;
  padding: 0;
  transition:
    background var(--duration-medium) var(--ease),
    width var(--duration-medium) var(--ease);
}
.hero-dot.active {
  background: var(--accent);
  width: 18px;
  border-radius: 3px;
}

@media (max-width: 920px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
    aspect-ratio: 16 / 10;
    margin-bottom: 8px;
  }
  .hero-copy > p {
    max-width: none;
  }
}

/* ---------------------------------------------------------------------- */
/* TRUST STRIP                                                             */
/* ---------------------------------------------------------------------- */

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 20px;
  border-left: 1px solid var(--border);
}
.trust-item:first-child {
  border-left: none;
}
.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
.trust-item span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

@media (max-width: 920px) {
  .trust-strip .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(3) {
    border-left: none;
  }
  .trust-item {
    border-top: 1px solid var(--border);
  }
  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-top: none;
  }
}
@media (max-width: 560px) {
  .trust-strip .container {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-left: none !important;
    border-top: 1px solid var(--border);
  }
  .trust-item:first-child {
    border-top: none;
  }
}

/* ---------------------------------------------------------------------- */
/* SERVICE / FEATURE CARDS                                                 */
/* ---------------------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: var(--gap-grid);
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--duration-medium) var(--ease),
    border-color var(--duration-medium) var(--ease),
    box-shadow var(--duration-medium) var(--ease);
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-dim);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Card 1: 2x2 Large Hero */
.service-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 580px;
}
.service-card:nth-child(1) .service-card-image {
  position: absolute;
  inset: 0;
  height: 100%;
  border: none;
}
.service-card:nth-child(1) .service-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(18, 20, 26, 0.98) 0%,
    rgba(18, 20, 26, 0.85) 40%,
    transparent 100%
  );
  padding-top: 80px;
  z-index: 2;
}

/* Card 2: 2x1 Horizontal Split */
.service-card:nth-child(2) {
  grid-column: span 2;
  flex-direction: row;
}
.service-card:nth-child(2) .service-card-image {
  width: 45%;
  height: auto;
  border-bottom: none;
  border-right: 1px solid var(--border);
}
.service-card:nth-child(2) .service-card-body {
  width: 55%;
  justify-content: center;
}

/* Cards 3, 4, 5, 6, 7, 8: 1x1 Standard Vertical */

/* Card 9: 4x1 Full Width Banner */
.service-card:nth-child(9) {
  grid-column: span 4;
  flex-direction: row;
}
.service-card:nth-child(9) .service-card-image {
  width: 40%;
  height: auto;
  border-bottom: none;
  border-right: 1px solid var(--border);
}
.service-card:nth-child(9) .service-card-body {
  width: 60%;
  justify-content: center;
}

/* Base image styling */
.service-card-image {
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  min-height: 200px;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) var(--ease);
}
.service-card:hover .service-card-image img {
  transform: scale(1.06);
}

.service-card-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-number {
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: var(--card-heading-size);
  font-weight: var(--card-heading-weight);
  margin-bottom: 9px;
}

.service-card-body p {
  font-size: 13.8px;
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}

/* Breakpoints */
@media (max-width: 1080px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 420px;
  }
  .service-card:nth-child(2) {
    flex-direction: column;
  }
  .service-card:nth-child(2) .service-card-image {
    width: 100%;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid var(--border);
    aspect-ratio: 16 / 9;
  }
  .service-card:nth-child(2) .service-card-body {
    width: 100%;
  }

  .service-card:nth-child(9) {
    grid-column: span 2;
    flex-direction: column;
  }
  .service-card:nth-child(9) .service-card-image {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
    aspect-ratio: 16 / 7;
  }
  .service-card:nth-child(9) .service-card-body {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
  .service-card:nth-child(n) {
    grid-column: span 1;
  }
  .service-card:nth-child(1) {
    min-height: 380px;
  }
  .service-card:nth-child(9) .service-card-image {
    aspect-ratio: 16 / 10;
  }
}

/* ---------------------------------------------------------------------- */
/* FEATURE GRID (BENTO STYLE)                                              */
/* ---------------------------------------------------------------------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap-grid);
}

.feature-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--duration-medium) var(--ease),
    box-shadow var(--duration-medium) var(--ease),
    border-color var(--duration-medium) var(--ease);
}
.feature-item:hover {
  transform: translateY(-3px);
  border-color: rgba(192, 138, 78, 0.4);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

/* Asymmetrical Bento Sizing for a premium editorial look */
.feature-item {
  grid-column: span 6;
} /* Fallback */

.feature-item:nth-child(4n + 1) {
  grid-column: span 7;
}
.feature-item:nth-child(4n + 2) {
  grid-column: span 5;
}
.feature-item:nth-child(4n + 3) {
  grid-column: span 5;
}
.feature-item:nth-child(4n + 4) {
  grid-column: span 7;
}

/* Handle cases where there are odd numbers of items at the end */
.feature-item:nth-child(3):last-child {
  grid-column: span 12;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-card);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background var(--duration-medium) var(--ease);
}
.feature-item:hover .feature-icon {
  background: rgba(192, 138, 78, 0.1);
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.feature-item h3 {
  font-family: var(--font-heading);
  font-size: var(--card-heading-size);
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-item p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (max-width: 920px) {
  .feature-item:nth-child(n) {
    grid-column: span 12;
  }
}

/* ---------------------------------------------------------------------- */
/* WHY CHOOSE US – TECH REDESIGN                                           */
/* ---------------------------------------------------------------------- */

.wcu-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Top split: text left / image right */
.wcu-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 56px;
}

.wcu-top-copy .eyebrow {
  margin-bottom: 14px;
}
.wcu-top-copy h2 {
  margin-bottom: 18px;
}
.wcu-top-copy > p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 440px;
}

.wcu-top-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(192, 138, 78, 0.18);
  box-shadow:
    0 0 48px rgba(192, 138, 78, 0.07),
    0 24px 48px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16 / 10;
}
.wcu-top-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wcu-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(192, 138, 78, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* 2-column staggered masonry grid */
.wcu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}

/* Odd cards shifted DOWN to create stagger */
.wcu-card:nth-child(odd) {
  margin-top: 0;
}
.wcu-card:nth-child(even) {
  margin-top: 40px;
}

/* Card base — clean, flat, premium */
.wcu-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  border-left: 3px solid var(--accent);
  transition:
    border-left-color var(--duration-medium) var(--ease),
    box-shadow var(--duration-medium) var(--ease),
    transform var(--duration-medium) var(--ease);
}
.wcu-card:hover {
  border-left-color: var(--accent-hover);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.wcu-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 24px;
}

/* Icon */
.wcu-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(192, 138, 78, 0.08);
  border: 1px solid rgba(192, 138, 78, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-medium) var(--ease);
}
.wcu-card:hover .wcu-card-icon {
  background: rgba(192, 138, 78, 0.14);
}
.wcu-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

/* Text */
.wcu-card-body h3 {
  font-family: var(--font-heading);
  font-size: var(--card-heading-size);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 7px;
}
.wcu-card-body p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1080px) {
  .wcu-top {
    gap: 40px;
  }
}
@media (max-width: 920px) {
  .wcu-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wcu-top-image {
    max-width: 560px;
  }
  .wcu-grid {
    column-gap: 24px;
  }
}
@media (max-width: 680px) {
  .wcu-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .wcu-card:nth-child(even) {
    margin-top: 0;
  }
}

/* ---------------------------------------------------------------------- */
/* SPLIT CALLOUT (Lost keys / Locked out sections)                         */
/* ---------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-visual {
  order: -1;
}

.split-visual {
  aspect-ratio: 4 / 3;
  min-height: 300px;
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}
.split-visual svg {
  width: 40%;
  color: var(--accent-dim);
}

.split-copy .btn {
  margin-top: 8px;
}
.split-copy h2 {
  margin-bottom: 20px;
}
.split-copy > p {
  margin-bottom: 24px;
  font-size: 15.5px;
  line-height: 1.6;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  color: var(--text-primary);
}
.checklist svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 920px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split.reverse .split-visual {
    order: -1;
  }
  .split-visual {
    order: -1;
  }
}

/* ---------------------------------------------------------------------- */
/* BRAND MODELS SECTION (Categorised Shelf)                                */
/* ---------------------------------------------------------------------- */

.models-section {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.models-head {
  position: sticky;
  top: 100px; /* sticks while families scroll */
}
.models-head h2 {
  margin-top: 12px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.models-head p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.models-families {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.model-family {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.model-family:first-child {
  border-top: 1px solid var(--border);
}

.model-family-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 6px;
}

.model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.model-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.03em;
  transition:
    border-color var(--duration-fast) var(--ease),
    color var(--duration-fast) var(--ease),
    transform var(--duration-fast) var(--ease);
  cursor: default;
}
.model-tag:hover {
  border-color: rgba(192, 138, 78, 0.5);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Electric variant — subtle teal tint */
.model-tag--ev {
  border-color: rgba(72, 180, 158, 0.2);
  color: rgba(72, 180, 158, 0.9);
}
.model-tag--ev:hover {
  border-color: rgba(72, 180, 158, 0.6);
  color: rgba(72, 180, 158, 1);
}

@media (max-width: 1024px) {
  .models-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .models-head {
    position: static;
  }
}
@media (max-width: 640px) {
  .model-family {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .model-family-label {
    padding-top: 0;
  }
}

/* ---------------------------------------------------------------------- */
/* PROCESS TIMELINE (Ladder Style)                                         */
/* ---------------------------------------------------------------------- */

.steps-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 32px;
  margin-top: 64px;
}

/* Connecting Line - Track */
.steps-grid::before {
  content: "";
  position: absolute;
  top: 24px; /* Centers with the 48px tall number */
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
/* Connecting Line - Glow */
.steps-grid::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  z-index: 1;
  opacity: 0.25;
}

.step-item {
  flex: 1;
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--border);
  background: var(--surface); /* Masks the line behind it */
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding-right: 20px;
  margin-bottom: 24px;
  line-height: 1;
  align-self: flex-start;
  transition:
    color var(--duration-medium) var(--ease),
    transform var(--duration-medium) var(--ease);
}

.step-item:hover .step-number {
  color: var(--accent);
  transform: translateY(-2px);
}

/* The stagger effect (Ladder) */
.step-item:nth-child(even) h3 {
  margin-top: 48px; /* Pushes the text content down to create the ladder look */
}

.step-item h3 {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  transition: margin-top var(--duration-medium) var(--ease);
}

.step-item p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Mobile: Vertical Timeline */
@media (max-width: 920px) {
  .steps-grid {
    flex-direction: column;
    padding-left: 56px;
    gap: 44px;
    margin-top: 40px;
  }

  .steps-grid::before,
  .steps-grid::after {
    top: 0;
    bottom: 0;
    left: 20px; /* Center of the number */
    width: 1px;
    height: 100%;
  }

  .steps-grid::after {
    background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  }

  .step-number {
    position: absolute;
    left: -56px; /* Pull into the line */
    top: -6px;
    height: auto;
    width: 56px;
    padding: 8px 0;
    margin: 0;
    font-size: 32px;
    justify-content: center;
    background: var(--surface);
  }

  /* Remove stagger on mobile */
  .step-item:nth-child(even) h3 {
    margin-top: 0;
  }
}

/* ---------------------------------------------------------------------- */
/* MANUFACTURER CAROUSEL                                                   */
/* ---------------------------------------------------------------------- */

.mfr-section {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Subtle concentric ring background decor */
.mfr-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.mfr-bg-decor svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section header: heading left, desc right */
.mfr-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.mfr-head-copy h2 {
  margin-top: 10px;
  margin-bottom: 0;
}
.mfr-head-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.6;
  text-align: right;
}

/* Carousel wrapper — full viewport width */
.mfr-carousel-wrap {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  padding: 12px 0;
  z-index: 1;
}

.mfr-carousel {
  display: flex;
  width: max-content;
  cursor: grab;
  animation: mfr-scroll 36s linear infinite;
}
.mfr-carousel:hover {
  animation-play-state: paused;
}
.mfr-carousel:active {
  cursor: grabbing;
}

/* The scrolling track — duplicated for seamless loop */
.mfr-track {
  display: flex;
  gap: 18px;
  padding-right: 18px; /* crucial to maintain gap between original and clone */
  flex-shrink: 0;
}

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

/* Individual manufacturer card */
.mfr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 150px;
  padding: 22px 16px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--text-muted);
  transition:
    border-color var(--duration-medium) var(--ease),
    color var(--duration-medium) var(--ease),
    transform var(--duration-medium) var(--ease),
    box-shadow var(--duration-medium) var(--ease);
  user-select: none;
}
.mfr-card:hover {
  border-color: rgba(192, 138, 78, 0.4);
  color: var(--text-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}
a.mfr-card:hover {
  border-color: var(--accent);
}

.mfr-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--duration-medium) var(--ease),
    opacity var(--duration-medium) var(--ease);
  opacity: 0.55;
}
.mfr-card:hover .mfr-card-icon {
  transform: scale(1.1);
  opacity: 1;
}
.mfr-card-icon svg {
  width: 100%;
  height: 100%;
}

.mfr-card-name {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--duration-medium) var(--ease);
}
a.mfr-card:hover .mfr-card-name {
  color: var(--accent);
}

/* Edge fade masks */
.mfr-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  pointer-events: none;
  z-index: 2;
}
.mfr-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--surface), transparent);
}
.mfr-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--surface), transparent);
}

/* Footer row: note + CTA */
.mfr-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.mfr-footer p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Smaller outline button variant */
.btn--sm {
  padding: 10px 20px;
  font-size: 12.5px;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
  .mfr-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .mfr-head-desc {
    text-align: left;
    max-width: none;
  }
  .mfr-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .mfr-card {
    width: 130px;
    padding: 18px 12px 14px;
  }
  .mfr-fade {
    width: 60px;
  }
}

/* ---------------------------------------------------------------------- */
/* TESTIMONIALS (pending real content)                                     */
/* ---------------------------------------------------------------------- */

.testimonial-pending {
  border: 1px dashed var(--border);
  border-radius: var(--radius-card);
  padding: 48px 32px;
  text-align: center;
  background: var(--surface);
}
.testimonial-pending svg {
  width: 30px;
  height: 30px;
  color: var(--accent-dim);
  margin: 0 auto 16px;
}
.testimonial-pending h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.testimonial-pending p {
  font-size: 13.8px;
  max-width: 420px;
  margin: 0 auto;
}

/* ============================================================
   BRAND CARDS (GRID LAYOUT)
   ============================================================ */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.brand-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-card);
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.brand-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.brand-card:hover::before {
  opacity: 1;
}

.brand-card-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.brand-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.brand-card:hover .brand-card-img img {
  transform: scale(1.1);
}

.brand-card-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-main);
  text-align: center;
}

@media (max-width: 600px) {
  .brands-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 15px;
  }
  .brand-card {
    padding: 15px 10px;
  }
  .brand-card-img {
    width: 50px;
    height: 50px;
  }
  .brand-card-name {
    font-size: 13px;
  }
}
/* ---------------------------------------------------------------------- */
/* FORM                                                                    */
/* ---------------------------------------------------------------------- */

.quote-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-button);
  padding: 12px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--duration-fast) var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  outline: none;
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

@media (max-width: 620px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .quote-form {
    padding: 26px 20px;
  }
}

/* ---------------------------------------------------------------------- */
/* FAQ ACCORDION                                                           */
/* ---------------------------------------------------------------------- */

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-primary);
}
.faq-question svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--duration-medium) var(--ease);
}
.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-medium) var(--ease);
}
.faq-answer-inner {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--text-muted);
  max-width: 760px;
}

/* ---------------------------------------------------------------------- */
/* CTA BAND                                                                */
/* ---------------------------------------------------------------------- */

.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band-text h2 {
  margin-bottom: 8px;
}
.cta-band-text p {
  font-size: 14.5px;
}
.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------------- */
/* FOOTER                                                                  */
/* ---------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .brand {
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13.8px;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-button);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color var(--duration-fast) var(--ease),
    background var(--duration-fast) var(--ease);
}
.footer-social a svg {
  width: 15px;
  height: 15px;
  color: var(--text-muted);
  transition: color var(--duration-fast) var(--ease);
}
.footer-social a:hover {
  border-color: var(--accent-dim);
  background: var(--surface);
}
.footer-social a:hover svg {
  color: var(--accent);
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 13.8px;
  color: var(--text-muted);
  transition: color var(--duration-fast) var(--ease);
}
.footer-col a:hover {
  color: var(--accent);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.8px;
  color: var(--text-muted);
}
.footer-contact svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12.5px;
}
.footer-legal {
  display: flex;
  gap: 22px;
}
.footer-legal a {
  font-size: 12.5px;
  color: var(--text-muted);
}
.footer-legal a:hover {
  color: var(--text-primary);
}

@media (max-width: 920px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------------------------------------------------------------------- */
/* BREADCRUMBS (used on inner pages)                                       */
/* ---------------------------------------------------------------------- */

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
  padding: 20px 0;
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: var(--text-muted);
}
.breadcrumbs a:hover {
  color: var(--accent);
}
.breadcrumbs svg {
  width: 11px;
  height: 11px;
}
.breadcrumbs .current {
  color: var(--text-primary);
}

/* ---------------------------------------------------------------------- */
/* PRICING TABLE                                                           */
/* ---------------------------------------------------------------------- */

.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.price-table th,
.price-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.price-table th {
  background: var(--surface);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.price-table td:last-child,
.price-table th:last-child {
  color: var(--accent);
  font-weight: 600;
}
.price-table tr:last-child td {
  border-bottom: none;
}
.price-table tr:nth-child(even) td {
  background: var(--surface);
}

.price-disclaimer {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 14px;
  font-style: italic;
}

@media (max-width: 620px) {
  .price-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* ---------------------------------------------------------------------- */
/* SCROLL REVEAL ANIMATIONS                                                */
/* ---------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy {
  transition-delay: 0.15s;
}

.hero-visual {
  transition-delay: 0.3s;
}

.feature-item:nth-child(2) {
  transition-delay: 0.15s;
}
.feature-item:nth-child(3) {
  transition-delay: 0.3s;
}
.feature-item:nth-child(4) {
  transition-delay: 0.45s;
}
.feature-item:nth-child(5) {
  transition-delay: 0.6s;
}
.feature-item:nth-child(6) {
  transition-delay: 0.75s;
}

.step-item:nth-child(2) {
  transition-delay: 0.15s;
}
.step-item:nth-child(3) {
  transition-delay: 0.3s;
}
.step-item:nth-child(4) {
  transition-delay: 0.45s;
}
.step-item:nth-child(5) {
  transition-delay: 0.6s;
}

/* ---------------------------------------------------------------------- */
/* PAGE TRANSITIONS — Premium Curtain                                      */
/* ---------------------------------------------------------------------- */

/* The transition curtain panel */
/* Default: parked ABOVE viewport — flies down-and-away on page entry */
#page-curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  transform: translateY(-100%);
  transition: transform 0.72s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
  will-change: transform;
}

/* The gold progress line on top of the curtain */
#page-curtain::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

/* Curtain sweeps DOWN from top (covering the screen on exit) */
body.page-exiting #page-curtain {
  transform: translateY(0%);
  pointer-events: all;
}
body.page-exiting #page-curtain::after {
  transform: scaleX(1);
}

/* Curtain slides UP and away on new page entry */
body.page-entering #page-curtain {
  transform: translateY(100%);
  transition: transform 0.68s cubic-bezier(0.76, 0, 0.24, 1) 0.05s;
}

/* Page content — always visible; curtain sits on top */
body {
  opacity: 1;
}

/* Fade-up reveal for main content on page entry */
main,
footer {
  opacity: 0;
  transform: translateY(16px);
  /* Transition always present — value is irrelevant until page-loaded fires */
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.22s,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.22s;
  will-change: opacity, transform;
}

body.page-loaded main,
body.page-loaded footer {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== FLOATING WHATSAPP ==================== */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition:
    transform var(--duration-fast) var(--ease),
    box-shadow var(--duration-fast) var(--ease);
  color: white;
}
.floating-wa:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  color: white;
}
.floating-wa svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
@media (max-width: 680px) {
  .floating-wa {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .floating-wa svg {
    width: 28px;
    height: 28px;
  }
}
