:root {
  --navy: #0B1628;
  --navy-mid: #111D33;
  --blue: #1A3A6B;
  --blue-mid: #2563EB;
  --orange: #F05A28;
  --orange-light: #FF7A45;
  --orange-glow: rgba(240, 90, 40, 0.25);
  --white: #FFFFFF;
  --off-white: #F7F8FC;
  --gray-light: #EEF1F8;
  --gray: #7B8599;
  --text: #0B1628;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden
}

h1,
h2,
h3,
h4 {
  font-family: 'Plus Jakarta Sans', sans-serif
}

img {
  max-width: 100%;
  display: block
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s
}

nav.scrolled {
  background: rgba(11, 22, 40, .96);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 40px rgba(0, 0, 0, .3)
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none
}

.fler-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 8px;
}

/* Highlights bar */
.smart-highlights {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 28px;
  padding: 20px 28px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(11, 22, 40, .15);
}

.smart-highlight-item {
  flex: 1;
  text-align: center;
}

.smart-highlight-num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--orange);
  line-height: 1;
}

.smart-highlight-label {
  display: block;
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.smart-highlight-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .12);
  flex-shrink: 0;
}

/* Large CTA */
.btn-large-cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  padding: 18px 36px;
  box-shadow: 0 8px 32px rgba(240, 90, 40, .3);
}

.btn-large-cta:hover {
  box-shadow: 0 12px 40px rgba(240, 90, 40, .4);
  transform: translateY(-3px);
}

.btn-large-cta svg {
  transition: transform .3s;
}

.btn-large-cta:hover svg {
  transform: translateX(4px);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center
}

.nav-links a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .3px;
  transition: color .2s;
  position: relative
}

.nav-links a:hover {
  color: var(--white)
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .3s
}

.nav-links a:hover::after {
  width: 100%
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  transition: all .2s !important;
  letter-spacing: 0 !important
}

.nav-cta::after {
  display: none !important
}

.nav-cta:hover {
  background: var(--orange-light) !important;
  transform: translateY(-2px)
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.active span:nth-child(2) {
  opacity: 0
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 22, 40, .98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity .4s
}

.mobile-menu.open {
  display: flex;
  opacity: 1
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  transition: color .2s
}

.mobile-menu a:hover {
  color: var(--orange)
}

/* HERO */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .5) 30%, transparent 60%),
    linear-gradient(160deg, rgba(11, 22, 40, .75) 0%, rgba(11, 22, 40, .35) 35%, rgba(11, 22, 40, .3) 55%, rgba(11, 22, 40, .6) 100%)
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: drift 20s linear infinite
}

@keyframes drift {
  from {
    transform: translateX(0) translateY(0)
  }

  to {
    transform: translateX(-40px) translateY(-40px)
  }
}

.hero-glow-1 {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(240, 90, 40, .2) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
  animation: breathe 6s ease-in-out infinite
}

.hero-glow-2 {
  position: absolute;
  left: -150px;
  bottom: -150px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, .15) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none
}

@keyframes breathe {

  0%,
  100% {
    opacity: .7;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.1)
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 48px 100px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(240, 90, 40, .1);
  border: 1px solid rgba(240, 90, 40, .35);
  color: var(--orange-light);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp .7s ease both;
  backdrop-filter: blur(12px)
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(1.5)
  }
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1.5px;
  animation: fadeUp .7s .1s ease both
}

.hero-title span {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-sub {
  margin-top: 22px;
  color: rgba(255, 255, 255, .65);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 520px;
  animation: fadeUp .7s .2s ease both
}

.hero-buttons {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp .7s .3s ease both
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(240, 90, 40, .3)
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(240, 90, 40, .45)
}

.btn-outline {
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(255, 255, 255, .2);
  color: var(--white);
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px)
}

.btn-outline:hover {
  border-color: var(--orange);
  background: rgba(240, 90, 40, .1);
  transform: translateY(-3px)
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  animation: fadeUp .7s .4s ease both
}

/* Glass metric cards - premium tech feel */
.metric-card {
  background: rgba(11, 22, 40, .35);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all .4s;
  position: relative;
  overflow: hidden
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--orange-light), transparent);
  opacity: 1
}

.metric-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 90, 40, .04) 0%, transparent 50%, rgba(37, 99, 235, .03) 100%);
  pointer-events: none
}

.metric-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 90, 40, .35);
  background: rgba(11, 22, 40, .45);
  box-shadow: 0 20px 60px rgba(240, 90, 40, .12), 0 0 0 1px rgba(240, 90, 40, .1)
}

.metric-card .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1
}

.metric-card .unit {
  font-size: 1.5rem
}

.metric-card .label {
  margin-top: 10px;
  color: rgba(255, 255, 255, .6);
  font-size: .82rem;
  line-height: 1.5;
  font-weight: 500
}

.metric-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(240, 90, 40, .12);
  border: 1px solid rgba(240, 90, 40, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px
}

.metric-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange-light);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* SECTIONS */
section {
  padding: 110px 48px
}

.container {
  max-width: 1200px;
  margin: 0 auto
}

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.5px
}

.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.section-desc {
  margin-top: 16px;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 560px
}

/* WHO */
#who {
  background: var(--white)
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.who-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden
}

.who-visual img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform .6s
}

.who-visual:hover img {
  transform: scale(1.04)
}

.who-stat-badge {
  position: absolute;
  background: rgba(11, 22, 40, .85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(240, 90, 40, .35);
  color: var(--white);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all .3s
}

.who-stat-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3)
}

.who-stat-badge.top-badge {
  top: 20px;
  right: 20px
}

.who-stat-badge.bottom-badge {
  bottom: 20px;
  left: 20px
}

.who-badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(240, 90, 40, .15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.who-badge-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange-light);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.who-stat-badge .big {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1
}

.who-stat-badge .small {
  font-size: .75rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 2px
}

.who-pillars {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gray-light);
  border-radius: 14px;
  padding: 18px 22px;
  transition: all .3s;
  border: 1px solid transparent
}

.pillar:hover {
  background: var(--white);
  border-color: rgba(240, 90, 40, .2);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
  transform: translateX(6px)
}

.pillar-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.pillar-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.pillar-title {
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy)
}

.pillar-desc {
  font-size: .82rem;
  color: var(--gray);
  margin-top: 2px
}

/* BAIRROS */
#bairros {
  background: var(--navy);
  position: relative;
  overflow: hidden
}

.bairros-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.bairros-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .08
}

#bairros .container {
  position: relative;
  z-index: 1
}

#bairros .section-title {
  color: var(--white)
}

#bairros .section-desc {
  color: rgba(255, 255, 255, .5)
}

.bairros-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px
}

.bairro-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 0;
  text-align: center;
  cursor: default;
  transition: all .35s;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4
}

.bairro-card .bairro-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s
}

.bairro-card:hover .bairro-img {
  transform: scale(1.1)
}

.bairro-card .bairro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 22, 40, .85) 0%, rgba(11, 22, 40, .3) 40%, transparent 70%);
  z-index: 1;
  transition: background .35s
}

.bairro-card:hover .bairro-overlay {
  background: linear-gradient(to top, rgba(240, 90, 40, .7) 0%, rgba(11, 22, 40, .2) 50%, transparent 70%)
}

.bairro-card .bairro-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  z-index: 2;
  text-align: left
}

.bairro-card:hover {
  border-color: rgba(240, 90, 40, .4);
  transform: translateY(-8px)
}

.bairro-card .name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  position: relative;
  z-index: 1
}

.bairro-card .bairro-desc {
  font-size: .75rem;
  color: rgba(255, 255, 255, .7);
  margin-top: 4px;
  letter-spacing: .3px
}

.bairros-note {
  margin-top: 32px;
  text-align: center;
  color: var(--orange);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .5px
}

/* GESTÃO */
#gestao {
  background: var(--off-white)
}

.gestao-header {
  text-align: center;
  margin-bottom: 60px
}

.gestao-header .section-desc {
  margin: 16px auto 0
}

/* BENTO GRID */
.gestao-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.gestao-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 220px;
  cursor: default;
  transition: all .4s
}

.gestao-card.featured {
  min-height: 340px
}

.gestao-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s
}

.gestao-card:hover .gestao-card-img {
  transform: scale(1.08)
}

.gestao-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 22, 40, .92) 0%, rgba(11, 22, 40, .55) 40%, rgba(11, 22, 40, .2) 70%, rgba(11, 22, 40, .1) 100%);
  z-index: 1;
  transition: background .4s
}

.gestao-card:hover .gestao-card-overlay {
  background: linear-gradient(to top, rgba(11, 22, 40, .95) 0%, rgba(11, 22, 40, .6) 45%, rgba(11, 22, 40, .25) 75%, rgba(11, 22, 40, .15) 100%)
}

.gestao-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2
}

.gestao-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(240, 90, 40, .15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(240, 90, 40, .3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px
}

.gestao-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange-light);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.gestao-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px
}

.gestao-card p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6
}

.gestao-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3)
}

/* Bottom row: force 4 columns on desktop via a sub-grid approach */
@media(min-width:901px) {
  .gestao-bento {
    grid-template-columns: repeat(4, 1fr)
  }

  .gestao-card.featured {
    grid-column: span 2
  }
}

/* RENTABILIDADE */
#rent {
  background: var(--navy);
  position: relative;
  overflow: hidden
}

#rent .container {
  position: relative;
  z-index: 1
}

.rent-bg-glow {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 90, 40, .12) 0%, transparent 65%);
  pointer-events: none
}

.rent-bg-glow-2 {
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, .08) 0%, transparent 65%);
  pointer-events: none
}

.rent-particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none
}

#rent .section-title {
  color: var(--white)
}

#rent .section-desc {
  color: rgba(255, 255, 255, .55);
  max-width: 620px
}

.rent-header {
  text-align: center;
  margin-bottom: 60px
}

.rent-header .section-desc {
  margin: 16px auto 0
}

/* STAT CARDS */
.rent-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px
}

.rent-stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all .4s;
  position: relative;
  overflow: hidden
}

.rent-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity .4s
}

.rent-stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 90, 40, .3);
  box-shadow: 0 20px 60px rgba(240, 90, 40, .12)
}

.rent-stat-card:hover::before {
  opacity: 1
}

.rent-stat-card.accent {
  background: linear-gradient(135deg, rgba(240, 90, 40, .08), rgba(240, 90, 40, .02));
  border-color: rgba(240, 90, 40, .25)
}

.rent-stat-card.accent::before {
  opacity: 1
}

.rent-stat-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(240, 90, 40, .15), rgba(240, 90, 40, .05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px
}

.rent-stat-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.rent-stat-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 8px
}

.rent-stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px
}

.rent-stat-value span {
  font-size: 2rem
}

.rent-stat-desc {
  color: rgba(255, 255, 255, .5);
  font-size: .88rem;
  line-height: 1.6;
  margin-bottom: 18px
}

.rent-stat-bar {
  height: 4px;
  background: rgba(255, 255, 255, .06);
  border-radius: 4px;
  overflow: hidden
}

.rent-stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 4px;
  transition: width 1.5s ease
}

/* COMPARISON */
.rent-compare {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  margin-bottom: 50px
}

.rent-compare-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
  text-align: center
}

.rent-compare-grid {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.rent-compare-item {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.rent-compare-header {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.rent-compare-label {
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 500
}

.rent-compare-label.highlight {
  color: var(--orange-light);
  font-weight: 700
}

.rent-compare-pct {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem
}

.rent-compare-pct.old {
  color: rgba(255, 255, 255, .35)
}

.rent-compare-pct.highlight {
  color: var(--orange);
  font-size: 1.05rem
}

.rent-compare-bar-track {
  height: 12px;
  background: rgba(255, 255, 255, .06);
  border-radius: 8px;
  overflow: hidden
}

.rent-compare-bar {
  height: 100%;
  border-radius: 8px;
  transition: width 1.8s cubic-bezier(.25, .46, .45, .94)
}

.rent-compare-bar.old {
  background: rgba(255, 255, 255, .12)
}

.rent-compare-bar.fler {
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  box-shadow: 0 0 20px rgba(240, 90, 40, .3)
}

.rent-compare-note {
  margin-top: 20px;
  text-align: center;
  font-size: .78rem;
  color: rgba(255, 255, 255, .3);
  font-style: italic
}

/* DRIVER CARDS */
.rent-drivers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.rent-driver-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  transition: all .35s;
  position: relative;
  overflow: hidden
}

.rent-driver-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: transform .35s;
  transform-origin: left
}

.rent-driver-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 90, 40, .3);
  box-shadow: 0 16px 48px rgba(240, 90, 40, .1)
}

.rent-driver-card:hover::after {
  transform: scaleX(1)
}

.rent-driver-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(240, 90, 40, .15), rgba(240, 90, 40, .05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.rent-driver-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.rent-driver-card h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px
}

.rent-driver-card p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6
}

/* SMART — Premium Redesign */
#smart {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

#smart::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 90, 40, .06) 0%, transparent 70%);
  pointer-events: none;
}

#smart::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(11, 22, 40, .04) 0%, transparent 70%);
  pointer-events: none;
}

#smart .section-tag {
  color: var(--orange);
}

#smart .section-title {
  color: var(--navy);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

#smart .section-title em {
  color: var(--orange);
}

#smart .section-desc {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
}

.smart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.smart-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.smart-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: #ffffff;
  transition: all .4s cubic-bezier(.25,.46,.45,.94);
  position: relative;
}

.smart-step:hover {
  background: linear-gradient(135deg, rgba(240, 90, 40, .03), rgba(11, 22, 40, .02));
  border-color: rgba(240, 90, 40, .15);
  box-shadow: 0 8px 32px rgba(240, 90, 40, .08), 0 2px 8px rgba(0,0,0,.04);
  transform: translateX(6px);
}

.smart-step:hover .step-num {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(240, 90, 40, .25);
}

.step-num {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(240, 90, 40, .2);
  transition: all .4s cubic-bezier(.25,.46,.45,.94);
}

.step-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.step-body p {
  margin-top: 4px;
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.7;
}

.smart-visual {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 540px;
  box-shadow: 0 32px 64px rgba(11, 22, 40, .15), 0 0 0 1px rgba(0,0,0,.05);
}

.smart-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 6s ease;
}

.smart-visual:hover img {
  transform: scale(1.05);
}

.smart-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 22, 40, .95) 0%, rgba(11, 22, 40, .3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  z-index: 1;
}

.smart-visual-overlay h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.smart-visual-overlay h3 span {
  color: var(--orange);
}

.smart-visual-overlay p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .6);
  font-size: .95rem;
}

/* TRANSPARENCIA — Premium Redesign */
#transparencia {
  background: linear-gradient(160deg, #0B1628 0%, #0F1D33 40%, #122240 100%);
  position: relative;
  overflow: hidden;
}

#transparencia::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(240, 90, 40, .08) 0%, transparent 65%);
  pointer-events: none;
}

#transparencia::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, .06) 0%, transparent 65%);
  pointer-events: none;
}

#transparencia .section-tag {
  color: var(--orange-light);
  background: rgba(240, 90, 40, .1);
  border: 1px solid rgba(240, 90, 40, .2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .75rem;
  display: inline-block;
}

#transparencia .section-title {
  color: var(--white);
}

#transparencia .section-title em {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#transparencia .section-desc {
  color: rgba(255, 255, 255, .55);
}

.trans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.phone-mockup {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 520px;
  background: radial-gradient(ellipse, rgba(240, 90, 40, .15) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.phone-frame {
  width: 280px;
  background: var(--navy);
  border-radius: 40px;
  border: 6px solid #1a2e4a;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, .4),
    0 0 0 1px rgba(255, 255, 255, .08),
    0 0 80px rgba(240, 90, 40, .12),
    0 0 160px rgba(240, 90, 40, .05);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.phone-screen {
  background: #0F172A;
  padding: 24px 18px;
  min-height: 480px;
}

.ps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.ps-header .logo-sm {
  color: var(--orange);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: .95rem;
}

.ps-header .online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, .5);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 8px rgba(34, 197, 94, .5); }
  50% { box-shadow: 0 0 16px rgba(34, 197, 94, .8); }
}

.ps-label {
  font-size: .65rem;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.ps-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  margin: 6px 0;
}

.ps-delta {
  font-size: .72rem;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ps-chart {
  margin: 22px 0;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 85px;
}

.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(240, 90, 40, .2);
  transition: all .3s;
}

.bar.active {
  background: linear-gradient(to top, var(--orange), var(--orange-light));
  box-shadow: 0 0 12px rgba(240, 90, 40, .3);
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.chart-labels span {
  font-size: .55rem;
  color: rgba(255, 255, 255, .3);
}

.ps-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.ps-row .k {
  font-size: .72rem;
  color: rgba(255, 255, 255, .45);
}

.ps-row .v {
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
}

.trans-text .section-desc {
  max-width: 100%;
}

/* Phone area with floating elements */
.phone-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

/* Animated glow rings */
.phone-glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240, 90, 40, .1);
  pointer-events: none;
}

.phone-glow-ring.ring-1 {
  width: 380px;
  height: 380px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 4s ease-in-out infinite;
}

.phone-glow-ring.ring-2 {
  width: 520px;
  height: 520px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 4s ease-in-out infinite 1s;
  border-color: rgba(240, 90, 40, .05);
}

@keyframes pulseRing {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.06); opacity: .5; }
}

/* Floating notification cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(15, 23, 42, .9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4), 0 0 0 1px rgba(255, 255, 255, .05);
  z-index: 5;
  animation: floatIn 0.8s ease both;
  white-space: nowrap;
}

.float-card-1 {
  top: 8%;
  right: -30px;
  animation-delay: 0.3s;
}

.float-card-2 {
  bottom: 18%;
  left: -40px;
  animation-delay: 0.6s;
}

.float-card-3 {
  bottom: 4%;
  right: -20px;
  animation-delay: 0.9s;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.float-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card-icon.green {
  background: rgba(34, 197, 94, .12);
}

.float-card-icon.orange {
  background: rgba(240, 90, 40, .12);
}

.float-card-icon.blue {
  background: rgba(59, 130, 246, .12);
}

.float-card-title {
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
}

.float-card-sub {
  font-size: .7rem;
  color: rgba(255, 255, 255, .4);
  margin-top: 2px;
}

/* 2x2 Feature Grid */
.trans-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.trans-feature-card {
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  transition: all .4s;
  position: relative;
  overflow: hidden;
}

.trans-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity .4s;
}

.trans-feature-card:hover {
  background: rgba(240, 90, 40, .06);
  border-color: rgba(240, 90, 40, .2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(240, 90, 40, .1);
}

.trans-feature-card:hover::before {
  opacity: 1;
}

.trans-feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(240, 90, 40, .15), rgba(240, 90, 40, .05));
  border: 1px solid rgba(240, 90, 40, .15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.trans-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
}

.trans-feature-card h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.trans-feature-card p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.5;
  margin: 0;
}

/* CTA Row */
.trans-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.trans-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  padding: 10px 18px;
  background: rgba(34, 197, 94, .08);
  border: 1px solid rgba(34, 197, 94, .15);
  border-radius: 50px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, .6);
  animation: pulse-green 2s infinite;
}

/* CTA FINAL */
#cta-final {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 130px 48px
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 22, 40, .93) 0%, rgba(11, 22, 40, .8) 50%, rgba(11, 22, 40, .93) 100%)
}

.cta-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(240, 90, 40, .15) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto
}

.cta-inner .section-title {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.2rem)
}

.cta-inner .section-desc {
  color: rgba(255, 255, 255, .55);
  max-width: 100%;
  margin: 16px auto 0
}

.cta-buttons {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center
}

.modal-overlay.open {
  display: flex
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  width: 90%;
  max-width: 480px;
  position: relative;
  animation: modalIn .35s ease
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(.92) translateY(10px)
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0)
  }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--gray);
  background: none;
  border: none;
  transition: color .2s
}

.modal-close:hover {
  color: var(--navy)
}

.modal h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.modal p {
  color: var(--gray);
  font-size: .9rem;
  margin-bottom: 24px
}

.form-group {
  margin-bottom: 16px
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text);
  outline: none;
  transition: all .2s;
  background: var(--white)
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .1)
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(240, 90, 40, .25)
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(240, 90, 40, .35)
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px 0
}

.form-success .big {
  font-size: 3rem
}

.form-success h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-top: 10px
}

.form-success p {
  font-size: .9rem;
  color: var(--gray);
  margin-top: 6px
}

/* FOOTER */
footer {
  background: #080E18;
  padding: 70px 48px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px
}

.footer-brand .logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white)
}

.footer-brand p {
  margin-top: 14px;
  color: rgba(255, 255, 255, .4);
  font-size: .88rem;
  line-height: 1.8
}

.footer-brand .tagline {
  margin-top: 18px;
  color: var(--orange);
  font-size: .85rem;
  font-weight: 600
}

.footer-col h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 18px
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-col a {
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s
}

.footer-col a:hover {
  color: var(--orange-light)
}

.footer-bottom {
  background: #050B14;
  padding: 22px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, .25);
  font-size: .8rem
}

.footer-bottom a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600
}

/* REVEAL — always visible, animation is decorative only */
.reveal {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */
@media(max-width:900px) {
  nav {
    padding: 16px 24px
  }

  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  section {
    padding: 80px 24px
  }

  .hero-inner,
  .who-grid,
  .smart-grid,
  .trans-grid {
    grid-template-columns: 1fr
  }

  .hero-inner {
    padding: 110px 24px 70px;
    gap: 40px
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 12px
  }

  .metric-card {
    padding: 20px 16px
  }

  .metric-card .num {
    font-size: 2.2rem
  }

  .metric-card .unit {
    font-size: 1.1rem
  }

  .metric-card .label {
    font-size: .75rem;
    margin-top: 8px
  }

  .metric-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px
  }

  .metric-icon svg {
    width: 16px;
    height: 16px
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: .9rem
  }

  .bairros-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .gestao-bento {
    grid-template-columns: 1fr
  }

  .features-grid {
    grid-template-columns: 1fr 1fr
  }

  .rent-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px
  }

  .rent-drivers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px
  }

  .rent-compare {
    padding: 32px 24px
  }

  footer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px
  }

  .footer-bottom {
    padding: 16px 24px;
    flex-direction: column;
    gap: 8px;
    text-align: center
  }
}

@media(max-width:600px) {

  .features-grid,
  .rent-stats-row,
  .rent-drivers-grid {
    grid-template-columns: 1fr
  }

  .bairros-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  .metric-card {
    padding: 16px 14px
  }

  .metric-card .num {
    font-size: 1.8rem
  }

  .metric-card .unit {
    font-size: 1rem
  }

  .metric-card .label {
    font-size: .7rem;
    line-height: 1.4
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem)
  }

  .hero-sub {
    font-size: .95rem
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center
  }

  .rent-stat-value {
    font-size: 2.6rem
  }

  .rent-compare-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px
  }

  .smart-highlights {
    flex-wrap: wrap;
    padding: 16px 20px;
    gap: 8px
  }

  .smart-highlight-divider {
    display: none
  }

  .smart-highlight-item {
    flex: 0 0 calc(33% - 8px)
  }
}

@media(max-width:400px) {
  .hero-inner {
    padding: 100px 16px 60px
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .metric-card {
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 16px
  }

  .metric-icon {
    margin-bottom: 0;
    flex-shrink: 0
  }

  .metric-card .num {
    font-size: 1.6rem
  }

  .metric-card .label {
    font-size: .72rem;
    margin-top: 4px
  }
}

/* No more reveal animations — content is always visible */