/* ===================================
   BAB LIVING — LANDING PAGE STYLES
   Font: Spline Sans SemiBold
   Primary: #FFFFFF | Secondary: #A7672F
   =================================== */

/* ---- CSS VARIABLES ---- */
:root {
  --primary: #FFFFFF;
  --secondary: #A7672F;
  --dark: #1a1a1a;
  --dark-nav: #3a3a3a;
  --dark-topbar: #2a2a2a;
  --light-bg: #FFFFFF;
  --border: #e0dbd5;
  --text-muted: #888;
  --text-body: #333;
  --font: 'Span';
  --topbar-h: 56px;
  --nav-h: 114px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--dark);
  background: var(--primary);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 300;
  letter-spacing: 0;
}

p {
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 70px;
}

.accent { color: var(--secondary); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  border: 2px solid var(--primary);
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  background: transparent;
  color: var(--primary);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--dark);
}

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
  padding: 13px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--primary);
}

/* ===================================
   TOP BAR
   =================================== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(22, 22, 22, 0.8);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: transform 0.3s ease;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 19px;
  font-weight: 400;
}
.topbar-left a { color: var(--primary); transition: color 0.2s; }
.topbar-left a:hover { color: var(--secondary); }
.topbar .divider { opacity: 0.4; }
.topbar-right {
  color: var(--primary);
  font-size: 19px;
  font-weight: 400;
}
.topbar.hero-passed {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.topbar.hero-passed .topbar-left,
.topbar.hero-passed .topbar-right,
.topbar.hero-passed .topbar-left a {
  color: #111;
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  z-index: 200;
  background: rgba(22, 22, 22, 0.8);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 70px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: top 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: none;
}
.navbar.topbar-hidden {
  top: 0;
}
.navbar.hero-passed {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.nav-logo {
  margin-left: 40px;
}
.nav-cta {
  margin-right: 40px;
}
.logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: none;
}
.navbar .btn-outline {
  padding: 12px 24px;
  font-size: 18px;
  border-width: 1.5px;
}
.navbar.hero-passed .btn-outline {
  color: #111;
  border-color: #111;
}
.navbar.hero-passed .btn-outline:hover {
  background: #111;
  color: #fff;
}

/* ===================================
   SECTION 1: HERO
   =================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 860px;
  display: flex;
  align-items: center;
  padding-bottom: 0;
  padding-top: calc(var(--topbar-h) + var(--nav-h));
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 70px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  z-index: 2;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.48) 52%,
    rgba(0, 0, 0, 0.24) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 110px;
  max-width: 840px;
  margin-top: 0;
}
.hero-title {
  font-size: clamp(40px, 4.1vw, 64px);
  font-weight: 400;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-content .btn-primary {
  font-size: 18px;
  padding: 12px 24px;
  border-width: 1.5px;
}

/* ===================================
   SECTION 2: VALUE PROP
   =================================== */
.value-prop {
  padding: 110px 0;
  background: var(--primary);
}
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.value-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.value-text h2 {
  font-family: var(--font);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 24px;
  color: var(--dark);
}
.value-text h2 span {
  font-weight: 400;
  letter-spacing: 0;
}
.value-text p {
  font-size: 17.5px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 36px;
}

/* ===================================
   SECTION 3: BRANDS
   =================================== */
.brands {
  padding: 110px 0;
  background: var(--light-bg);
}
.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1.75fr;
  gap: 64px;
  align-items: start;
}
.brands-left h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.2;
  white-space: nowrap;
}
.brands-left p {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.45;
  max-width: 540px;
  margin-bottom: 86px;
}
.brands-left .btn-outline-dark {
  border-width: 2px;
  padding: 16px 34px;
  font-size: 16px;
}
.brands-carousel-wrap {
  position: relative;
  overflow: visible;
}
.brands-carousel-viewport {
  overflow: hidden;
}
.brands-carousel {
  display: flex;
  gap: 22px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.brand-card {
  position: relative;
  cursor: pointer;
  overflow: visible;
  background: transparent;
  padding: 0;
  flex: 0 0 calc((100% - 22px) / 2);
}
.brand-media {
  border: 2px solid transparent;
  padding: 8px;
  overflow: hidden;
  background: #fff;
}
.brand-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
  transform-origin: center center;
}
.brand-card:hover img {
  transform: scale(0.94);
}
.brand-card:hover .brand-media {
  border-color: var(--secondary);
}
.brand-name {
  font-family: var(--font);
  text-align: left;
  margin-top: 16px;
  padding: 0;
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
}
.carousel-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  text-align: center;
  transition: var(--transition);
  color: var(--dark);
  pointer-events: auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.carousel-btn::before {
  display: block;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
}
#brandPrev::before,
#testiPrev::before {
  content: '\2039';
}
#brandNext::before,
#testiNext::before {
  content: '\203A';
}
.carousel-btn:hover {
  background: var(--dark);
  color: var(--primary);
}
#brandPrev {
  left: 0;
  transform: translate(-50%, -50%);
}
#brandNext {
  right: 0;
  transform: translate(50%, -50%);
}
#brandPrev::before,
#brandNext::before {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
#brandPrev::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}
#brandNext::before {
  transform: rotate(45deg);
  margin-right: 4px;
}

/* ===================================
   SECTION 4: BENEFITS
   =================================== */
.benefits {
  padding: 110px 0;
  background: var(--primary);
}
.benefits .container {
  max-width: 1600px;
  padding: 0 70px;
}
.benefits-title {
  font-size: clamp(38px, 4.3vw, 72px);
  font-weight: 400;
  margin-bottom: 72px;
  line-height: 1.12;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: none;
}
.benefit-item {
  padding: 34px 34px 20px 0;
  border-right: 1px solid var(--border);
  padding-right: 40px;
}
.benefit-item:last-child { border-right: none; }
.benefit-item:not(:first-child) { padding-left: 40px; }
.benefit-icon {
  margin-bottom: 24px;
  height: 48px;
  display: flex;
  align-items: center;
}
.benefit-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.benefit-item.is-active .benefit-icon img {
  transform: scale(1.06);
}
.benefit-item h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--dark);
  transition: color 0.25s ease;
}
.benefit-item.is-active h3 {
  color: var(--secondary);
}
.benefit-item p {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.55;
}

/* ===================================
   SECTION 5: TESTIMONIALS
   =================================== */
.testimonials {
  padding: 110px 0;
  background: var(--light-bg);
}
.testimonials .container {
  max-width: 1600px;
  padding: 0 70px;
}
.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 72px;
}
.testimonials-header h2 {
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 400;
  line-height: 1.1;
}
.testi-nav {
  display: flex;
  gap: 28px;
  margin-top: 2px;
  flex-shrink: 0;
}
.testi-nav .carousel-btn {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  width: 62px;
  height: 62px;
  font-size: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  pointer-events: auto;
  text-align: center;
}
.testi-nav .carousel-btn:hover {
  background: var(--dark);
  color: var(--primary);
}
.testi-track-wrap { overflow: hidden; }
.testi-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testi-slide {
  min-width: 100%;
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.testi-card {
  background: transparent;
  padding: 10px 0 0;
}
.quote-mark {
  width: 86px;
  height: 86px;
  margin-bottom: 32px;
  font-size: 0;
  line-height: 0;
  background-image: url("assets/quotation.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.testi-text {
  font-family: var(--font);
  font-size: 25px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 40px;
}
.testi-author {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}
.testi-author span { font-weight: 400; }

/* ===================================
   SECTION 6: CONTACT FORM
   =================================== */
.contact {
  padding: 110px 0;
  background: var(--primary);
}
.contact .container {
  max-width: 1600px;
  padding: 0 70px;
}
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  margin-bottom: 86px;
}
.map-item { position: relative; overflow: hidden; }
.map-embed iframe { display: block; width: 100%; height: 380px; }
.map-label {
  display: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.contact-left h2 {
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.12;
  white-space: nowrap;
}
.contact-left p {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.45;
  margin-bottom: 42px;
}
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 52px;
}
.form-group {
  position: relative;
  border-bottom: 1px solid #cfcfcf;
  padding-bottom: 14px;
}
.form-group input,
.form-group select {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  color: #a8a8a8;
  padding: 4px 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.form-group input::placeholder { color: #b0b0b0; }
.form-group select { color: #b0b0b0; }
.form-group select:valid { color: #b0b0b0; }
.form-group select option { color: var(--dark); }
.select-arrow {
  position: absolute;
  right: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  font-size: 0;
  color: transparent;
  pointer-events: none;
}
.select-arrow::before {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  margin: 3px auto 0;
  border-right: 2px solid #b0b0b0;
  border-bottom: 2px solid #b0b0b0;
  transform: rotate(45deg);
}
.form-group::after {
  content: '';
  position: absolute;
  bottom: -1.5px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--secondary);
  transition: width 0.35s ease;
}
.form-group:focus-within::after { width: 100%; }

/* ===================================
   SECTION 7: FAQ
   =================================== */
.faq {
  padding: 110px 0;
  background: var(--light-bg);
}
.faq .container {
  max-width: 1600px;
  padding: 0 70px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}
.faq-right {
  margin-top: -12px;
}
.faq-left h2 {
  font-size: clamp(37px, 3.2vw, 53px);
  font-weight: 400;
  line-height: 1.25;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: 'Inter', sans-serif;
  font-size: 23px;
  font-weight: 400;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  gap: 20px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--secondary); }
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a.open {
  max-height: 200px;
  padding-bottom: 22px;
}
.faq-a p {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.75;
}

/* ===================================
   SECTION 8: FINAL CTA
   =================================== */
.final-cta {
  padding: 110px 0;
  background: var(--primary);
}
.final-cta-inner {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.final-cta-inner h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}
.final-cta-inner p {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 40px;
}

/* ===================================
   SECTION 9: FOOTER
   =================================== */
.footer {
  background: var(--primary);
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
}
.footer-logo {
  height: 72px;
  width: auto;
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.7;
  max-width: 340px;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-top: 8px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid #000;
  background: #000;
  color: #fff;
  transition: var(--transition);
}
.social-icon:hover {
  background: #fff;
  color: #000;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  color: #000;
}
#testiPrev,
#testiNext { line-height: 1; }
.profitcast-credit {
  color: #000;
  transition: color 0.2s;
}
.profitcast-credit:hover { color: var(--secondary); }


/* ===================================
   SCROLL ANIMATIONS
   =================================== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.28s; }
.delay-3 { transition-delay: 0.41s; }
.delay-4 { transition-delay: 0.54s; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-item { border-right: none; padding-left: 0 !important; padding-right: 0; border-bottom: 1px solid var(--border); }
  .benefit-item:last-child { border-bottom: none; }
  .brands-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --topbar-h: 40px; --nav-h: 70px; }
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .topbar,
  .navbar,
  .hero,
  .value-prop,
  .brands,
  .benefits,
  .testimonials,
  .contact,
  .faq,
  .final-cta,
  .footer {
    width: 100%;
    max-width: 100%;
  }
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }
  .topbar { padding: 0 20px; }
  .navbar {
    padding: 0 20px;
    justify-content: center;
  }
  .nav-logo { margin-left: 0; }
  .nav-cta {
    margin-right: 0;
    display: none;
  }
  .nav-logo {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .navbar .btn-outline {
    font-size: 14px;
    padding: 10px 16px;
  }
  .topbar-left { font-size: 11px; gap: 6px; }
  .topbar-right { font-size: 11px; }
  .logo-img { height: 44px; }
  .hero {
    min-height: 640px;
    align-items: center;
    padding-bottom: 0;
  }
  .hero::after { bottom: 16px; }
  .hero-content {
    padding: 0 20px;
    max-width: 100%;
  }
  .hero-title {
    font-size: 34px;
    line-height: 1.12;
    margin-bottom: 14px;
  }
  .hero-content .btn-primary {
    font-size: 16px;
    padding: 10px 16px;
  }
  /* Disable zoom animation on mobile to avoid zoom-in/out effect */
  .hero-bg img,
  .hero-bg video {
    transform: none;
    animation: none;
  }
  .value-grid,
  .brands-grid,
  .contact-grid,
  .faq-grid,
  .testi-grid,
  .map-grid,
  .form-row { grid-template-columns: 1fr; }
  .value-image img { height: 300px; }
  .value-text h2 { font-size: 36px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-title { font-size: 34px; margin-bottom: 36px; }
  .benefit-item p { font-size: 17px; }
  .brands-left h2 { font-size: 34px; white-space: normal; }
  .brands-left p { font-size: 16px; margin-bottom: 24px; }
  .brand-name { font-size: 22px; }
  .testimonials-header { flex-direction: column; gap: 20px; }
  .testimonials-header h2 { font-size: 36px; }
  .testi-card { padding: 12px 0; }
  .testi-text { font-size: 19px; line-height: 1.5; }
  .contact-left h2 { font-size: 32px; white-space: normal; }
  .contact-left p { font-size: 16px; }
  .faq-left h2 { font-size: 34px; }
  .faq-right { margin-top: 0; }
  .faq-q { font-size: 19px; }
  .faq-a p { font-size: 16px; }
  .final-cta-inner h2 { font-size: 34px; }
  .final-cta-inner p { font-size: 16px; }
  .footer-main { flex-direction: column; gap: 32px; }
  .footer-bottom { padding: 20px; flex-direction: column; gap: 10px; text-align: center; }
  .brands-carousel {
    display: flex;
    gap: 0;
  }
  .brands-carousel-viewport {
    width: 100%;
    max-width: 100%;
  }
  .brands-carousel-wrap {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }
  .brand-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  .brand-media {
    width: 100%;
    max-width: 100%;
  }
  .brand-card img {
    width: 100%;
    height: 260px;
    object-position: center;
  }
  .brands-carousel-wrap .carousel-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    inset: 0;
    padding: 0 10px;
  }
  #brandPrev,
  #brandNext {
    position: static;
    transform: none;
    display: grid;
    place-items: center;
    line-height: 1;
    width: 48px;
    height: 48px;
    font-size: 28px;
  }
  .call-float { left: 18px; }
  .whatsapp-float { right: 18px; }
}

@media (max-width: 480px) {
  :root {
    --topbar-h: 0px;
    --nav-h: 74px;
  }
  .topbar {
    display: none;
  }
  .navbar {
    top: 0;
    height: var(--nav-h);
    padding: 0 12px;
  }
  .logo-img {
    height: 38px;
  }
  .hero {
    min-height: 620px;
    padding-top: var(--nav-h);
  }
  .hero-content {
    padding: 0 12px;
  }
  .hero-title {
    font-size: 28px;
    line-height: 1.16;
    margin-bottom: 12px;
  }
  .hero-content .btn-primary {
    font-size: 14px;
    padding: 10px 14px;
  }
  .brands-left h2,
  .benefits-title,
  .testimonials-header h2,
  .faq-left h2,
  .final-cta-inner h2 {
    font-size: 30px;
  }
  .value-text h2 {
    font-size: 32px;
  }
  .form-group input,
  .form-group select {
    font-size: 17px;
  }
  .contact {
    padding-bottom: 130px;
  }
  .call-float,
  .whatsapp-float {
    width: 46px;
    height: 46px;
    bottom: 12px;
  }
  .call-float { left: 12px; }
  .whatsapp-float { right: 12px; }
}
