:root {
  --primary-blue: #0D6EFD;
  --dark-blue: #0a193d;
  --light-blue: #EEF6FF;
  --white: #FFFFFF;
  --gray: #6C757D;
  --light-gray: #F8FAFC;
  --border-color: #E5E7EB;
  --navy-btn: #0a193d;
  --radius-btn: 12px;
  --radius-card: 16px;
  --shadow-soft: 0 10px 30px rgba(10, 42, 102, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #2A2E36;
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #10131A;
}

p {
  color: var(--gray);
  line-height: 1.7;
}

a {
  text-decoration: none;
}

.text-primary-blue {
  color: var(--primary-blue) !important;
}

.section-heading-wrap {
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-heading {
  font-size: 2.1rem;
  margin-bottom: 12px;
}

.section-subtext {
  color: var(--gray);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.bg-light-gray {
  background: var(--light-gray);
}

.bg-white {
  background: var(--white);
}

/* HERO */
.hero-section {
  padding: 160px 0 90px;
  background: linear-gradient(180deg, #EAF3FF 0%, #EAF3FF 100%);
}

.hero-heading {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 22px;
  font-weight: 800;
}

.hero-paragraph {
  font-size: 1.1rem;
  max-width: 620px;
  margin-bottom: 32px;
  color: #5B6472;
}

.hero-dashboard-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

/* DASHBOARD MOCKUP */
.dashboard-mockup {
  display: flex;
  background: #fff;
  border: 8px solid #10131A;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(10, 42, 102, 0.18);
  text-align: left;
}

.dm-sidebar {
  width: 160px;
  min-width: 160px;
  background: #fff;
  border-right: 1px solid var(--border-color);
  padding: 18px 12px;
  font-size: 0.7rem;
}

.dm-nav-label {
  color: #A6ACB8;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.5px;
  margin: 12px 0 6px 8px;
}

.dm-nav-label:first-child {
  margin-top: 0;
}

.dm-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 8px;
  color: #4A5160;
  font-size: 0.72rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.dm-nav-item i {
  font-size: 0.8rem;
}

.dm-nav-item.active {
  background: var(--light-blue);
  color: var(--primary-blue);
}

.dm-main {
  flex: 1;
  padding: 20px 22px;
  min-width: 0;
}

.dm-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.dm-title {
  font-weight: 700;
  font-size: 1rem;
  color: #10131A;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dm-count-badge {
  background: var(--light-gray);
  color: #6C757D;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
}

.dm-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.dm-filter {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 0.65rem;
  color: #4A5160;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.dm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.68rem;
}

.dm-table thead th {
  text-align: left;
  color: #8A93A3;
  font-weight: 500;
  font-size: 0.62rem;
  padding: 8px 6px;
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

.dm-table tbody td {
  padding: 9px 6px;
  border-bottom: 1px solid #F0F2F5;
  vertical-align: middle;
  color: #4A5160;
  white-space: nowrap;
}

.dm-table tbody strong {
  display: block;
  font-size: 0.7rem;
  color: #10131A;
  font-weight: 600;
}

.dm-table tbody small {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #9AA1AC;
  font-size: 0.6rem;
}

.dm-property {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dm-thumb {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: linear-gradient(135deg, #DCEBFF, #B9D8FF);
  display: inline-block;
  flex-shrink: 0;
}

.dm-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.62rem;
  font-weight: 600;
}

.dm-badge.occupied {
  background: #E6F7EC;
  color: #12A150;
}

.dm-badge.vacant {
  background: #E9F1FF;
  color: var(--primary-blue);
}

.dm-badge.draft {
  background: #F0F1F3;
  color: #6C757D;
}

.dm-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
  margin-top: 16px;
  font-size: 0.68rem;
  flex-wrap: wrap;
}

.dm-page-btn {
  color: #4A5160;
  padding: 5px 10px;
  font-weight: 500;
}

.dm-page-num {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4A5160;
}

.dm-page-num.active {
  background: var(--navy-btn);
  color: #fff;
}

.dm-page-dots {
  color: #9AA1AC;
}

@media (max-width: 768px) {
  .dm-sidebar {
    display: none;
  }

  .dm-table {
    font-size: 0.6rem;
  }
}

/* VIDEO */
.video-section {
  padding: 120px 0 88px;
}

.video-thumb-wrap {
  position: relative;
  max-width: 950px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--primary-blue);
  border: none;
  color: #fff;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(13, 110, 253, .4);
  transition: .25s;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

/* WHY OWNERS */
.why-owners-section {
  padding: 88px 0;
  background: var(--white);
}

.why-owners-box {
  background: linear-gradient(135deg, var(--dark-blue), #0d3a86);
  border-radius: 24px;
  padding: 48px;
}

.owner-row {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.owner-row-left {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 500;
}

.owner-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owner-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #12A150;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* FEATURE ROWS */
.feature-row-section {
  padding: 72px 0;
}

.feature-row h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.feature-row p {
  font-size: 0.98rem;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 88px 0;
  background: var(--white);
}

.testimonial-card {
  background: #F4F6F9;
  border-radius: var(--radius-card);
  padding: 28px;
  height: 100%;
  transition: .3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.quote-icon {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 12px;
  display: block;
}

.testimonial-card p {
  color: #2A2E36;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-profile h6 {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.testimonial-profile span {
  font-size: 0.78rem;
  color: var(--gray);
}

.avatar-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  display: inline-block;
}

/* RENTALS ON THE GO */
.rentals-go-section {
  background: var(--dark-blue);
  padding: 88px 0;
  text-align: center;
}

.rentals-go-section h2 {
  color: #fff;
  margin-bottom: 8px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  transition: .25s;
}

.store-btn img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: var(--radius-btn);
}

.store-btn:hover {
  transform: translateY(-3px);
}

/* FAQ */
.faq-section {
  background: var(--light-gray);
  padding: 88px 0;
}

.faq-accordion .accordion-item {
  background: #fff;
  border: none;
  border-radius: var(--radius-card) !important;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  padding: 20px 24px;
  box-shadow: none;
  background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--light-blue);
  color: var(--primary-blue);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  padding: 0 24px 20px;
  font-size: 0.88rem;
}


/* Main index Page Css */

.lang-select {
  font-weight: 500;
  color: #333A44;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-navy-pill {
  background: #132660;
  color: #fff;
  border-radius: var(--radius-btn);
  height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 1px solid var(--navy-btn);
  transition: .25s;
}

.btn-navy-pill:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-pill {
  background: transparent;
  color: #10131A;
  border-radius: var(--radius-btn);
  height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 1px solid var(--border-color);
  transition: .25s;
}

.btn-outline-pill:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.btn-orange-pill {
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-btn);
  height: 48px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  transition: .25s;
}

.btn-orange-pill:hover {
  background: #e67a00;
  color: #fff;
  transform: translateY(-2px);
}

.btn-navy-solid {
  background: #132660;
  color: #fff;
  border-radius: var(--radius-btn);
  height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: none;
  transition: .25s;
}

.btn-navy-solid:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* HERO */
.hero-section {
  position: relative;
  padding: 150px 0 80px;
  background: linear-gradient(180deg, #F5F9FF 0%, #EAF3FF 100%);
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 6px 16px 6px 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.hero-badge .badge-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.hero-heading {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-paragraph {
  font-size: 1.02rem;
  max-width: 460px;
  margin-bottom: 28px;
}

.hero-cta {
  margin-bottom: 28px;
}

.hero-trust {
  color: var(--gray);
}

.avatar-stack {
  display: flex;
}

.avatar-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  border: 2px solid #fff;
  margin-left: -12px;
}

.avatar-stack .avatar-dot:first-child {
  margin-left: 0;
}

.avatar-dot.small {
  width: 44px;
  height: 44px;
  margin-left: 0;
}

.stars {
  color: #FFB800;
  font-size: 0.85rem;
}

.trust-text {
  font-weight: 600;
  color: #10131A;
  font-size: 0.88rem;
}

.hero-mockup-wrap {
  position: relative;
}

.hero-mockup-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.mockup-placeholder {
  aspect-ratio: 4/3.4;
  background: linear-gradient(135deg, #DCEBFF, #B9D8FF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--primary-blue);
}

.floating-icon-top {
  position: absolute;
  top: -24px;
  right: 22%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 18px rgba(13, 110, 253, .35);
  z-index: 3;
  animation: floatY 4s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-color);
  animation: floatY 4s ease-in-out infinite;
  z-index: 3;
}

.floating-card i {
  font-size: 1.2rem;
  color: #fff;
  background: var(--primary-blue);
  padding: 8px;
  border-radius: 8px;
}

.floating-card .fc-label {
  display: block;
  font-size: 0.68rem;
  color: var(--gray);
}

.floating-card .fc-value {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: #10131A;
}

.floating-card-1 {
  top: 24%;
  left: -6%;
}

.floating-card-2 {
  bottom: 14%;
  left: -8%;
}

.floating-card-2 i {
  background: #12A150;
}

.floating-chat {
  position: absolute;
  bottom: -4%;
  right: -2%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 18px rgba(13, 110, 253, .35);
  animation: floatY 4s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* VIDEO */
.video-section {
  padding: 120px 0 88px;
}

.video-thumb-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.video-thumb-placeholder {
  aspect-ratio: 16/8;
  background: linear-gradient(135deg, #142B52, #0A2A66);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, .4);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--primary-blue);
  border: none;
  color: #fff;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(13, 110, 253, .4);
  transition: .25s;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

/* FEATURED EXPERIENCE */
.feature-card-basic {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 20px;
  height: 100%;
  transition: .3s;
  overflow: hidden;
}

.feature-card-basic:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.fc-img-placeholder {
  aspect-ratio: 4/3;
  border-radius: 12px;
  background: var(--light-blue);
  color: var(--primary-blue);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card-basic h5 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.feature-card-basic p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* BLUE FEATURE (6 cards) */
.blue-feature-section {

  background: #003373;
}

.blue-card {
  background: #004499;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  padding: 24px;
  height: 100%;
  transition: .3s;
}

.blue-card:hover {
  transform: translateY(-5px);
}

.blue-card i {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 16px;
  display: block;
}

.blue-card h6 {
  color: #fff;
  font-size: 0.96rem;
  margin-bottom: 8px;
}

.blue-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.83rem;
  margin-bottom: 0;
}

/* PLATFORM FEATURES (3+2) */
.platform-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 24px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: .3s;
}

.platform-card:hover {
  transform: translateY(-5px);
}

.pc-icon {
  aspect-ratio: 16/9;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--light-blue), #DCEBFF);
  color: var(--primary-blue);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.pc-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.platform-card h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.platform-card p {
  font-size: 0.85rem;
}

.learn-more-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-blue);
}

.learn-more-link i {
  font-size: 0.75rem;
  margin-left: 4px;
  transition: .25s;
}

.learn-more-link:hover i {
  transform: translateX(4px);
}

/* BLUE CTA - portfolio rows */
.blue-cta-section {
  background: var(--light-gray);
}

.blue-cta-box {
  background: linear-gradient(135deg, #0D6EFD, #0A4FCB);
  border-radius: 28px;
  padding: 56px;
}

.blue-cta-box p.subtitle {
  max-width: 640px;
  margin: 0 auto 32px;
}

.portfolio-row {
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  transition: .25s;
}

.portfolio-row:hover {
  transform: translateX(4px);
}

.portfolio-row-left {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: #10131A;
}

.portfolio-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--light-blue);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-row i.arrow {
  color: var(--primary-blue);
}

/* WHY CHOOSE US (6 cards) */
.why-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  height: 100%;
  transition: .3s;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card i {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 16px;
  display: block;
}

.why-card h6 {
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* SAVINGS CALCULATOR */
.savings-calculator {
  background: var(--light-gray);
}

.savings-box {
  background: #004499;
  border-radius: 28px;
  padding: 56px;
}

.savings-text p {
  margin-bottom: 24px;
  max-width: 420px;
}

.calculator-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.calc-row-2 {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.calc-field {
  flex: 1;
}

.calc-field label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 6px;
  font-weight: 500;
}

.calc-input-placeholder {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 9px 12px;
  font-weight: 600;
  background: var(--light-gray);
  font-size: 0.85rem;
}

.calc-submit {
  width: 100%;
  margin-top: 8px;
}

/* PRODUCT SHOWCASE (2x2) */
.showcase-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 20px;
  height: 100%;
  transition: .3s;
}

.showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.showcase-img-placeholder {
  aspect-ratio: 16/9;
  border-radius: 12px;
  /* background: var(--light-blue); */
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.showcase-card h6 {
  margin-bottom: 8px;
}

.showcase-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* RENTAL MANAGEMENT */
.rental-management {
  background: var(--dark-blue);
  text-align: center;
}

.rental-management h2 {
  color: #fff;
  margin-bottom: 32px;
}

.rental-mockup-placeholder {
  max-width: 900px;
  aspect-ratio: 16/8;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, .35);
  margin: 0 auto 32px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  transition: .25s;
}

.store-btn img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: var(--radius-btn);
}

.store-btn:hover {
  transform: translateY(-3px);
}

/* AUTOMATION */
.automation-section h2 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.automation-subtitle {
  margin-bottom: 28px;
}

.automation-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.automation-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-weight: 500;
  color: #2A2E36;
}

.automation-list li i {
  color: #12A150;
  font-size: 1.1rem;
}

.automation-illustration {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFDDB0, #FFB870);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: #fff;
  margin: 0 auto;
}

/* ACCOUNTING */
.accounting-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 20px;
  height: 100%;
  transition: .3s;
}

.accounting-card:hover {
  transform: translateY(-5px);
}

.ac-img-placeholder {
  aspect-ratio: 4/3;
  border-radius: 12px;
  background: var(--light-blue);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 16px;
}

.accounting-card h6 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.accounting-card p {
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.pay-row {
  margin-top: 60px;
}

.pay-mockup-placeholder {
  aspect-ratio: 4/3;
  border-radius: 16px;
  /* background: linear-gradient(135deg, var(--light-blue), #DCEBFF); */
  color: var(--primary-blue);
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pay-row h3 {
  margin-bottom: 8px;
}

/* PROPERTY MANAGEMENT */
.property-management {
  background: var(--light-gray);
}

.pm-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 20px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: .3s;
}

.pm-card:hover {
  transform: translateY(-5px);
}

.pm-img-placeholder {
  aspect-ratio: 4/3;
  border-radius: 12px;
  /* background: var(--light-blue); */
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 16px;
}

.pm-card h6 {
  margin-bottom: 8px;
}

.pm-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* STATISTICS */
.statistics-section {
  background: linear-gradient(135deg, #0A4FCB, #0D6EFD);
}

.stat-white-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.stat-card h3 {
  color: var(--primary-blue);
  font-size: 2.2rem;
  margin-bottom: 4px;
}

.stat-card p {
  color: var(--gray);
  margin-bottom: 0;
  font-size: 0.88rem;
}

.stat-divider {
  border-left: 1px solid var(--border-color);
}

/* TESTIMONIALS */
.testimonial-card {
  background: #F4F6F9;
  border-radius: var(--radius-card);
  padding: 28px;
  height: 100%;
  transition: .3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.quote-icon {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 12px;
  display: block;
}

.testimonial-card p {
  color: #2A2E36;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.testimonial-profile h6 {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.testimonial-profile span {
  font-size: 0.78rem;
  color: var(--gray);
}

.testi-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #10131A;
}

/* FAQ */
.faq-section {
  background: #fff;
}

.faq-accordion .accordion-item {
  background: #F4F6F9;
  border: none;
  border-radius: var(--radius-card) !important;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  padding: 20px 24px;
  box-shadow: none;
  background: #F4F6F9;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #F4F6F9;
  color: #10131A;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  padding: 0 24px 20px;
  font-size: 0.88rem;
}

/* FOOTER */
.site-footer {
  background: var(--dark-blue);
  color: rgba(255, 255, 255, .7);
  padding: 56px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-columns h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.footer-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-columns ul li {
  margin-bottom: 11px;
}

.footer-columns ul li a {
  color: rgba(255, 255, 255, .55);
  font-size: 0.82rem;
}

.footer-columns ul li a:hover {
  color: #fff;
}

.footer-columns ul li a.highlight {
  color: #6EA8FE;
}

.footer-brand-logo {
  text-align: center;
  margin: 8px 0 24px;
  font-weight: 800;
  font-size: 1.6rem;
}

.footer-brand-logo span:first-child {
  color: #0D6EFD;
}

.footer-brand-logo span:last-child {
  color: #FF8A00;
}

.footer-divider {
  border-color: rgba(255, 255, 255, .12);
  margin: 24px 0 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .55);
  font-size: 0.85rem;
  margin: 0;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s;
}

.footer-social a:hover {
  background: var(--primary-blue);
  transform: translateY(-3px);
}

.store-btn-sm {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  border-radius: 10px;
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-heading {
    font-size: 2.3rem;
  }

  section {
    padding: 64px 0;
  }

  .blue-cta-box,
  .savings-box {
    padding: 32px;
  }

  .floating-card,
  .floating-icon-top,
  .floating-chat {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 130px 0 60px;
    text-align: center;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .hero-paragraph {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta,
  .hero-trust {
    justify-content: center;
  }

  .hero-image-col {
    margin-top: 40px;
  }

  .section-heading {
    font-size: 1.6rem;
  }

  .pay-row .col-lg-6:first-child,
  .automation-section .col-lg-6:first-child {
    margin-bottom: 32px;
  }

  .calc-row-2 {
    flex-direction: column;
    gap: 0;
  }

  .footer-top {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 576px) {

  .blue-cta-box,
  .savings-box {
    padding: 24px;
  }
}