/* MaintMaster landing — brand palette */
:root {
  --background: #070809;
  --foreground: #f4f4f5;
  --card: #0f1012;
  --card-foreground: #f4f4f5;
  --primary: #ff8918;
  --primary-foreground: #070809;
  --secondary: #0c0d0e;
  --muted: #1a1c1f;
  --muted-foreground: #a1a1aa;
  --border: #1f2226;
  --input: #0f1012;
  --ring: #ff8918;
}

html {
  scroll-behavior: smooth;
}

body.landing-page {
  background-color: var(--background);
  color: var(--foreground);
}

.text-balance {
  text-wrap: balance;
}

.landing-hero-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.landing-card-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.landing-header,
.landing-nav,
header .landing-logo {
  transition:
    min-height 0.35s ease,
    height 0.35s ease,
    max-height 0.35s ease,
    max-width 0.35s ease,
    padding 0.35s ease;
}

.landing-nav {
  min-height: 6rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

header .landing-logo {
  display: block;
  width: auto;
  height: 5.25rem;
  max-width: min(24rem, 72vw);
  object-fit: contain;
  object-position: left center;
}

@media (min-width: 768px) {
  .landing-nav {
    min-height: 8.5rem;
  }

  header .landing-logo {
    height: 7.25rem;
    max-width: 26rem;
  }
}

@media (min-width: 1024px) {
  .landing-nav {
    min-height: 9.5rem;
  }

  header .landing-logo {
    height: 8.25rem;
    max-width: 28rem;
  }
}

/* Scroll: navbar e logo no tamanho original */
.landing-header.is-compact .landing-nav {
  min-height: 0 !important;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.landing-header.is-compact .landing-logo {
  height: 2.75rem !important;
  max-height: 2.75rem !important;
  max-width: min(12rem, 42vw) !important;
}

@media (min-width: 768px) {
  .landing-nav {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .landing-header.is-compact .landing-logo {
    height: 3rem !important;
    max-height: 3rem !important;
    max-width: 14rem !important;
  }
}

@media (min-width: 1024px) {
  .landing-header.is-compact .landing-nav {
    min-height: 0 !important;
  }

  .landing-header.is-compact .landing-logo {
    height: 3rem !important;
    max-height: 3rem !important;
    max-width: 14rem !important;
  }
}

.landing-logo-footer {
  display: block;
  width: auto;
  height: 2.5rem;
  max-width: 11rem;
  object-fit: contain;
}

/* Mobile nav */
#landing-mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

#landing-mobile-menu.is-open {
  max-height: 24rem;
}

/* Testimonial active state */
.testimonial-card.is-active {
  border-color: rgba(255, 137, 24, 0.4);
  background-color: var(--card);
  box-shadow: 0 10px 15px -3px rgba(255, 137, 24, 0.08);
}

.testimonial-card:not(.is-active) {
  border-color: var(--border);
  background-color: rgba(15, 16, 18, 0.6);
}

.testimonial-card:not(.is-active):hover {
  border-color: var(--border);
  background-color: var(--card);
}
