@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background-color: #ffffff;
}

.property-managers-landing {
  display: block;
  font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  --pm-primary: #5d3891;
  --pm-primary-deep: #4a2d77;
  --pm-secondary: #e8a55c;
  --pm-secondary-deep: #d4924a;
  --pm-gold-swash: #e7c349;
  --pm-accent-green: #22c55e;
  --pm-text-dark: #1a202c;
  --pm-text-muted: #718096;
  --pm-bg-light: #f7fafc;
  --pm-white: #ffffff;
  --pm-glow: rgba(93, 56, 145, 0.24);
  --pm-hero-page-gradient: linear-gradient(
    to bottom left,
    #e8e2f6 0%,
    #efe9fb 18%,
    #f7f4ff 38%,
    #ffffff 72%,
    #faf9ff 100%
  );
  --pm-hero-purple-gradient: linear-gradient(
    145deg,
    #9b7fd4 0%,
    #7b58c4 14%,
    #5d3891 38%,
    #4a2d77 62%,
    #352058 82%,
    #1e0f32 100%
  );
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-padding-top: 72px;
  background: var(--pm-hero-page-gradient);
  background-color: var(--pm-white);
  color: var(--pm-text-dark);
}
.property-managers-landing h1,
.property-managers-landing h2,
.property-managers-landing h3,
.property-managers-landing h4,
.property-managers-landing h5,
.property-managers-landing h6 {
  font-family: inherit;
}
.property-managers-landing .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4.2vw, 64px);
}
.property-managers-landing app-pm-navbar .container {
  padding-left: clamp(24px, 4.2vw, 64px);
  padding-right: clamp(24px, 4.2vw, 64px);
}
@media (max-width: 576px) {
  .property-managers-landing app-pm-navbar .container {
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
  }
}
.property-managers-landing .text-center {
  text-align: center;
}
.property-managers-landing .btn-primary {
  background-color: var(--pm-primary);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.property-managers-landing .btn-primary:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}
.property-managers-landing .section-padding {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .property-managers-landing .section-padding {
    padding: 120px 0;
  }
}
.property-managers-landing app-pm-categories-section {
  display: block;
}

.navbar {
  background: #ffffff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(147, 112, 219, 0.12);
}
@media (max-width: 992px) {
  .navbar {
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  }
}
.navbar .navbar-container {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 24px;
  position: relative;
}
@media (max-width: 992px) {
  .navbar .navbar-container {
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
  }
}
.navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  text-decoration: none;
  cursor: pointer;
  grid-column: 1;
}
@media (max-width: 992px) {
  .navbar .navbar-brand {
    grid-column: 1;
    justify-self: start;
  }
}
.navbar .nav-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: #4a5568;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
@media (max-width: 992px) {
  .navbar .nav-menu-toggle {
    display: flex;
    grid-column: 2;
    justify-self: end;
  }
}
.navbar .nav-menu-toggle:hover {
  background: rgba(93, 56, 145, 0.08);
  color: var(--pm-primary);
}
.navbar .navbar-mobile-panel {
  display: none;
}
@media (max-width: 992px) {
  .navbar .navbar-mobile-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    padding: 20px clamp(20px, 4.5vw, 24px) 24px;
    margin: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(147, 112, 219, 0.12);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    z-index: 1001;
  }
}
@media (min-width: 993px) {
  .navbar .navbar-mobile-panel {
    display: none !important;
  }
}
.navbar .navbar-mobile-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.navbar .navbar-mobile-links a {
  display: block;
  padding: 12px 4px;
  text-decoration: none;
  color: #2d3748;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}
.navbar .navbar-mobile-links a:hover {
  background: rgba(93, 56, 145, 0.08);
  color: var(--pm-primary);
}
.navbar .navbar-mobile-cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  min-height: 46px;
  border: none;
  border-radius: 999px;
  background: var(--pm-primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(93, 56, 145, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.navbar .navbar-mobile-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(93, 56, 145, 0.38);
  background: var(--pm-primary-deep, #4a2d77);
}
.navbar .navbar-mobile-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(93, 56, 145, 0.28);
}
.navbar .servvis-logo-img {
  display: block;
  height: clamp(26px, 4.2vw, 32px);
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.navbar .navbar-links {
  display: flex;
  gap: clamp(18px, 2vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
  justify-self: center;
  grid-column: 2;
}
@media (max-width: 992px) {
  .navbar .navbar-links {
    display: none;
  }
}
.navbar .navbar-links a {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.navbar .navbar-links a:hover {
  color: var(--pm-primary);
}
.navbar .navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
  grid-column: 3;
}
@media (max-width: 992px) {
  .navbar .navbar-actions {
    display: none;
  }
}
.navbar .navbar-actions .btn-primary-sm {
  background-color: var(--pm-primary);
  color: white;
  border: none;
  padding: 11px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(93, 56, 145, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.navbar .navbar-actions .btn-primary-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(93, 56, 145, 0.4);
}
.navbar .navbar-actions a.btn-primary-sm {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.navbar .navbar-actions .btn-login {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(74, 85, 104, 0.22);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a5568;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.navbar .navbar-actions .btn-login:hover {
  border-color: var(--pm-primary);
  color: var(--pm-primary);
  background: rgba(93, 56, 145, 0.06);
}
.navbar .btn-outline-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid rgba(74, 85, 104, 0.28);
  background: transparent;
  color: #2d3748;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.navbar .btn-outline-sm:hover {
  border-color: var(--pm-primary);
  color: var(--pm-primary);
  background: rgba(93, 56, 145, 0.06);
}
.navbar .navbar-mobile-secondary {
  width: 100%;
  justify-content: center;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background-color: #f7f6f9;
  background-image: url("assets/images/Hero Section.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 100px);
  min-height: min(92vh, 760px);
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .hero-section {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(245, 240, 252, 0.72) 45%, rgba(235, 228, 248, 0.55) 100%), url("assets/images/Hero Section.png");
    background-position: center top, bottom center;
    background-size: cover, cover;
    min-height: auto;
    align-items: flex-start;
    padding-top: clamp(32px, 6vw, 56px);
    padding-bottom: clamp(40px, 10vw, 72px);
  }
}
.hero-section .hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  align-items: center;
  column-gap: clamp(24px, 4vw, 36px);
  position: relative;
  z-index: 3;
}
@media (min-width: 993px) and (max-width: 1200px) {
  .hero-section .hero-container {
    column-gap: clamp(36px, 5vw, 56px);
  }
}
@media (max-width: 992px) {
  .hero-section .hero-container {
    grid-template-columns: 1fr;
    text-align: left;
    row-gap: clamp(36px, 9vw, 56px);
  }
}
.hero-section .hero-content {
  position: relative;
  z-index: 4;
  min-width: 0;
  justify-self: start;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .hero-section .hero-content {
    max-width: none;
    width: 100%;
    margin: 0;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 8px;
    justify-self: stretch;
    text-align: left;
  }
}
.hero-section .hero-content .hero-title {
  font-family: "Plus Jakarta Sans", "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.625rem, 2.5vw + 1.5rem, 70px);
  line-height: 1.1;
  font-weight: 600;
  color: #010205;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
  font-feature-settings: "kern" 1;
}
@media (min-width: 993px) {
  .hero-section .hero-content .hero-title {
    font-size: 70px;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-content .hero-title {
    font-size: clamp(1.625rem, 6.2vw, 2.125rem);
    line-height: 1.1;
    margin-bottom: 20px;
  }
}
.hero-section .hero-content .hero-description {
  font-family: "Inter", "Montserrat", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #787878;
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 32rem;
  letter-spacing: 0;
}
@media (max-width: 992px) {
  .hero-section .hero-content .hero-description {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
}
.hero-section .hero-content .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}
@media (max-width: 992px) {
  .hero-section .hero-content .hero-actions {
    justify-content: flex-start;
  }
}
@media (max-width: 380px) {
  .hero-section .hero-content .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero-section .hero-content .hero-actions .store-badge {
  display: inline-flex;
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-section .hero-content .hero-actions .store-badge img {
  height: 46px;
  width: auto;
  display: block;
}
@media (max-width: 576px) {
  .hero-section .hero-content .hero-actions .store-badge img {
    height: 44px;
  }
}
.hero-section .hero-content .hero-actions .store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}
.hero-section .hero-visuals {
  position: relative;
  z-index: 2;
  min-height: clamp(420px, 50vw, 540px);
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: clamp(12px, 2.5vw, 32px);
  box-sizing: border-box;
  overflow: visible;
  border-radius: 0 0 0 32px;
  isolation: isolate;
}
@media (max-width: 992px) {
  .hero-section .hero-visuals {
    min-height: min(420px, 90vw);
    justify-content: center;
    padding-left: 0;
    overflow: hidden;
    border-radius: 0;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .hero-section .hero-visuals {
    overflow: visible;
    min-height: clamp(460px, 64vw, 560px);
  }
}
.hero-section .hero-visuals-bg {
  position: absolute;
  inset: -12% -20% -18% -45%;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 992px) {
  .hero-section .hero-visuals-bg {
    inset: -8% -25% -12% -25%;
  }
}
.hero-section .hero-visuals-bg .hvb-purple {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--pm-hero-purple-gradient, linear-gradient(145deg, #9b7fd4 0%, #5d3891 45%, #1e0f32 100%));
  clip-path: polygon(32% 0, 100% 0, 100% 100%, 0 100%, 0 38%);
}
@media (max-width: 992px) {
  .hero-section .hero-visuals-bg .hvb-purple {
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%, 0 45%);
  }
}
.hero-section .hero-visuals-bg .hvb-panel {
  position: absolute;
  z-index: 1;
  left: 6%;
  right: 10%;
  top: 10%;
  bottom: 14%;
  border-radius: 40px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.14) 0%, rgba(180, 150, 230, 0.22) 42%, rgba(40, 20, 70, 0.45) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.hero-section .hero-visuals-bg .hvb-glow {
  position: absolute;
  top: -8%;
  right: -8%;
  width: 72%;
  height: 65%;
  background: radial-gradient(ellipse 70% 60% at 75% 22%, rgba(255, 255, 255, 0.18) 0%, rgba(200, 180, 245, 0.12) 35%, transparent 65%);
  z-index: 2;
  mix-blend-mode: soft-light;
}
.hero-section .visual-wrapper {
  position: relative;
  z-index: 3;
  width: min(100%, 580px);
  height: clamp(380px, 46vw, 480px);
  margin-right: 0;
}
@media (max-width: 992px) {
  .hero-section .visual-wrapper {
    margin-inline: auto;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-visuals {
    min-height: clamp(520px, 136vw, 660px);
    overflow: visible;
  }
  .hero-section .visual-wrapper {
    width: min(100%, 420px);
    height: clamp(520px, 136vw, 660px);
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .hero-section .visual-wrapper {
    width: min(100%, 520px);
    height: clamp(400px, 58vw, 500px);
  }
}
.hero-section .phone-img {
  position: absolute;
  left: 54%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(220px, 30vw, 286px);
  height: auto;
  border-radius: 28px;
  z-index: 2;
}
@media (min-width: 993px) {
  .hero-section .phone-img {
    left: 43%;
  }
}
@media (max-width: 767px) {
  .hero-section .phone-img {
    left: 50%;
    top: 52%;
    width: clamp(236px, 63vw, 292px);
  }
}
.hero-section .calendar-card {
  --cal-ink: #1a2744;
  --cal-inset-bg: #e8edf9;
  --cal-icon-box: #dbe6f7;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 5px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 32px rgba(29, 36, 51, 0.1), 0 2px 8px rgba(29, 36, 51, 0.06);
  width: min(220px, 46vw);
  max-width: 220px;
  border: none;
}
.hero-section .calendar-card .calendar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.hero-section .calendar-card .calendar-header .calendar-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 9px;
  background: var(--cal-icon-box);
  color: var(--cal-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.hero-section .calendar-card .calendar-header .calendar-icon-svg {
  display: block;
  flex-shrink: 0;
}
.hero-section .calendar-card .calendar-header .calendar-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cal-ink);
  letter-spacing: -0.02em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9), 0 0 1px rgba(196, 132, 72, 0.35);
}
.hero-section .calendar-card .calendar-inset {
  background: var(--cal-inset-bg);
  border-radius: 10px;
  padding: 14px 14px 12px;
}
.hero-section .calendar-card .calendar-date {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cal-ink);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.hero-section .calendar-card .calendar-grid {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}
.hero-section .calendar-card .calendar-grid th {
  font-size: 0.625rem;
  color: var(--cal-ink);
  font-weight: 500;
  padding: 0 0 6px;
  text-align: center;
  opacity: 0.85;
}
.hero-section .calendar-card .calendar-grid td {
  position: relative;
  font-size: 0.625rem;
  color: var(--cal-ink);
  text-align: center;
  padding: 5px 1px;
  font-weight: 500;
  vertical-align: middle;
  height: 26px;
  box-sizing: border-box;
}
.hero-section .calendar-card .calendar-grid td:empty {
  pointer-events: none;
}
.hero-section .calendar-card .calendar-grid td.calendar-day-ring {
  isolation: isolate;
  z-index: 0;
}
.hero-section .calendar-card .calendar-grid td.calendar-day-ring::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid var(--cal-ink);
  border-radius: 50%;
  box-sizing: border-box;
  z-index: -1;
}
.hero-section .calendar-card .calendar-grid td.calendar-day-selected {
  isolation: isolate;
  z-index: 0;
  color: #fff;
  font-weight: 600;
}
.hero-section .calendar-card .calendar-grid td.calendar-day-selected::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background: var(--cal-ink);
  border-radius: 50%;
  z-index: -1;
}
.hero-section .calendar-card .no-event {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--cal-ink);
  text-align: left;
  padding: 0;
  margin: 0;
  opacity: 0.75;
}
@media (min-width: 993px) {
  .hero-section .calendar-card {
    transform: translateX(clamp(32px, 4vw, 64px));
  }
}
@media (max-width: 767px) {
  .hero-section .calendar-card {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .hero-section .calendar-card {
    display: flex;
    width: min(200px, 42vw);
    max-width: 200px;
    padding: 14px 14px 12px;
    gap: 10px;
    transform: translateX(clamp(24px, 5vw, 56px));
  }
  .hero-section .calendar-card .calendar-inset {
    padding: 12px 12px 10px;
  }
  .hero-section .calendar-card .calendar-date {
    font-size: 0.9375rem;
  }
}
.hero-section .income-card {
  position: absolute;
  left: 10%;
  top: 80%;
  transform: translateY(-48%);
  z-index: 5;
  background: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  min-width: 192px;
  max-width: calc(100% - 20px);
  box-shadow: 0 16px 48px rgba(26, 32, 44, 0.14);
  border: 1px solid rgba(26, 32, 44, 0.06);
}
@media (max-width: 767px) {
  .hero-section .income-card {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .hero-section .income-card {
    display: block;
    left: 5%;
    top: 56%;
    min-width: 168px;
    max-width: min(200px, 42vw);
    padding: 10px 14px;
    transform: translateY(-44%);
    border-radius: 16px;
  }
}
.hero-section .income-card .income-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.hero-section .income-card .income-top div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-section .income-card .income-label {
  font-size: 0.75rem;
  color: var(--pm-text-muted);
  font-weight: 500;
}
.hero-section .income-card .income-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--pm-text-dark);
  letter-spacing: -0.02em;
}
.hero-section .income-card .income-icon {
  display: flex;
  flex-shrink: 0;
}

.mission-section {
  --mission-bg: #ffffff;
  --mission-purple-label: #4b2c82;
  --mission-title: #020407;
  --mission-body: #555555;
  --mission-green: #4caf50;
  background-color: var(--mission-bg);
  padding: clamp(64px, 12vw, 128px) 0;
}
.mission-section .mission-container {
  display: flex;
  align-items: center;
  gap: clamp(48px, 6.5vw, 96px);
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .mission-section .mission-container {
    flex-direction: column;
    gap: clamp(32px, 8vw, 48px);
  }
}
.mission-section .mission-image-wrapper {
  position: relative;
  flex: 1.08;
  min-width: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.07);
}
@media (max-width: 992px) {
  .mission-section .mission-image-wrapper {
    order: 1;
    width: 100%;
  }
}
.mission-section .mission-image-wrapper .mission-img {
  width: 100%;
  height: auto;
  min-height: clamp(300px, 44vw, 540px);
  max-height: 580px;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.mission-section .mission-image-wrapper:hover .mission-img {
  transform: scale(1.02);
}
.mission-section .mission-image-overlays {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding: clamp(16px, 2.8vw, 28px);
  pointer-events: none;
}
.mission-section .mission-float-card {
  pointer-events: auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(26, 32, 44, 0.1);
  border: 1px solid rgba(26, 32, 44, 0.05);
}
.mission-section .mission-float-card--quote {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 17px;
}
.mission-section .mfc-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mission-green);
  color: #ffffff;
  flex-shrink: 0;
}
.mission-section .mfc-quote-text {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #555555;
}
.mission-section .mission-float-card--income {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 17px;
  margin-left: auto;
}
.mission-section .mfc-income-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mission-section .mfc-income-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #718096;
}
.mission-section .mfc-income-value {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.02em;
}
.mission-section .mission-content {
  flex: 0.92;
  max-width: 34rem;
  padding-top: 0;
}
@media (max-width: 992px) {
  .mission-section .mission-content {
    order: 2;
    max-width: none;
    width: 100%;
    text-align: center;
    padding-inline: 0;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .mission-section .mission-content {
    text-align: left;
  }
}
.mission-section .mission-content .mission-eyebrow {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.0625rem, 1.25vw, 1.25rem);
  font-weight: 700;
  color: var(--mission-purple-label);
  margin: 0 0 1.125rem;
  letter-spacing: 0.01em;
}
.mission-section .mission-content .mission-title {
  font-family: "Plus Jakarta Sans", "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.75rem, 2.5vw + 1.25rem, 60px);
  line-height: 1.1666667;
  font-weight: 600;
  color: var(--mission-title);
  margin: 0 0 1.625rem;
  letter-spacing: -0.03em;
}
@media (min-width: 993px) {
  .mission-section .mission-content .mission-title {
    font-size: 60px;
    line-height: 70px;
  }
}
.mission-section .mission-content .mission-title-highlight {
  position: relative;
  display: inline-block;
  isolation: isolate;
  color: var(--mission-title);
}
.mission-section .mission-content .mission-title-highlight__text {
  position: relative;
  z-index: 1;
}
.mission-section .mission-content .mission-title-highlight__swash {
  position: absolute;
  left: -0.12em;
  right: -0.18em;
  bottom: -0.52em;
  width: calc(100% + 0.3em);
  height: 0.65em;
  min-height: 16px;
  overflow: visible;
  color: var(--pm-gold-swash, #e7c349);
  pointer-events: none;
  z-index: 0;
}
.mission-section .mission-content .mission-title-highlight__swash-path {
  vector-effect: non-scaling-stroke;
}
.mission-section .mission-content .mission-description {
  font-family: "Inter", "Montserrat", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--mission-body);
  margin: 0 0 1.125rem;
}
.mission-section .mission-content .mission-description:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .mission-section .mission-float-card--income {
    margin-left: 0;
  }
}

.features-section {
  --feat-bg: #f2f7ff;
  --feat-purple-frame: #4b26a6;
  --feat-heading: #020407;
  --feat-body: #6b7280;
  background-color: var(--feat-bg);
  padding: clamp(64px, 12vw, 120px) 0;
}
.features-section .features-container {
  max-width: 1440px;
  margin: 0 auto;
}
.features-section .features-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.features-section .features-logo-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.features-section .features-logo-mark img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}
.features-section .features-logo-mark .pm-mockup-w-mark {
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}
.features-section .features-logo-svg {
  display: block;
}
.features-section .features-title {
  font-family: "Plus Jakarta Sans", "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.75rem, 2.5vw + 1.25rem, 60px);
  font-weight: 600;
  color: var(--feat-heading);
  margin: 0 auto 1rem;
  max-width: 52rem;
  line-height: 1.1666667;
  letter-spacing: -0.03em;
}
@media (min-width: 993px) {
  .features-section .features-title {
    font-size: 60px;
    line-height: 70px;
  }
}
.features-section .features-subtitle {
  font-family: "Inter", "Montserrat", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--feat-body);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.65;
}
.features-section .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3.5vw, 32px);
}
@media (min-width: 900px) {
  .features-section .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: clamp(20px, 2.5vw, 28px);
  }
}
.features-section .feature-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  background: transparent;
}
.features-section .feature-visual {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: var(--feat-purple-frame);
  border-radius: 24px;
  padding: 16px;
  overflow: hidden;
  min-height: 240px;
  box-shadow: 0 16px 40px rgba(75, 38, 166, 0.3);
}
@media (max-width: 899px) {
  .features-section .feature-visual {
    height: auto;
    min-height: 220px;
  }
}
@media (min-width: 900px) {
  .features-section .feature-visual {
    height: 300px;
    min-height: 300px;
  }
}
.features-section .feature-img-frame {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}
.features-section .feature-img-frame--phone {
  align-items: center;
  justify-content: center;
}
.features-section .feature-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  background: transparent;
}
.features-section .feature-img--phone {
  padding: 0;
  object-fit: contain;
  object-position: center;
}
.features-section .feature-quote-pill {
  position: absolute;
  left: auto;
  right: clamp(10px, 2vw, 18px);
  bottom: 5px;
  transform: none;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  padding: 10px 14px 10px 12px;
  max-width: calc(100% - 24px);
  background: #ffffff;
  border-radius: 50px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.8125rem;
  line-height: 1.2;
}
@media (max-width: 899px) {
  .features-section .feature-quote-pill {
    display: none;
  }
}
.features-section .feature-quote-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: #111827;
}
.features-section .feature-quote-icon svg {
  display: block;
}
.features-section .feature-quote-label {
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
}
.features-section .feature-quote-amount {
  font-weight: 700;
  color: #16a34a;
  white-space: nowrap;
}
.features-section .feature-copy {
  text-align: left;
  padding-top: 0;
  padding-inline: 0;
}
.features-section .feature-title {
  font-family: "Plus Jakarta Sans", "Montserrat", "Inter", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
  line-height: 30px;
}
@media (max-width: 899px) {
  .features-section .feature-title {
    margin-bottom: 0;
  }
}
.features-section .feature-desc {
  font-family: "Inter", "Montserrat", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--feat-body);
  margin: 0;
}
@media (max-width: 899px) {
  .features-section .feature-desc {
    display: none;
  }
}

.pricing-section {
  --pricing-eyebrow: #4b2aad;
  --pricing-purple-cta: #4b2aad;
  --pricing-title-color: #020407;
  --pricing-body: #717171;
  background-color: #ffffff;
  padding: clamp(64px, 12vw, 120px) 0;
}
.pricing-section .pricing-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
}
@media (max-width: 992px) {
  .pricing-section .pricing-container {
    grid-template-columns: 1fr;
    gap: clamp(36px, 6vw, 48px);
  }
}
.pricing-section .pricing-content {
  max-width: 34rem;
  text-align: left;
}
@media (max-width: 992px) {
  .pricing-section .pricing-content {
    order: 2;
    max-width: 40rem;
    margin-inline: auto;
    text-align: center;
  }
}
.pricing-section .pricing-eyebrow {
  margin: 0 0 1.25rem;
  font-family: "Inter", "Montserrat", system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--pricing-eyebrow);
  text-transform: none;
}
.pricing-section .pricing-title {
  margin: 0 0 1.5rem;
  font-family: "Plus Jakarta Sans", "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.75rem, 2.5vw + 1.25rem, 60px);
  font-weight: 600;
  line-height: 1.1666667;
  letter-spacing: -0.03em;
  color: var(--pricing-title-color);
}
@media (min-width: 993px) {
  .pricing-section .pricing-title {
    font-size: 60px;
    line-height: 70px;
  }
}
.pricing-section .pricing-highlight {
  position: relative;
  display: inline-block;
  isolation: isolate;
}
.pricing-section .pricing-highlight__text {
  position: relative;
  z-index: 1;
}
.pricing-section .pricing-highlight__swash {
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: -0.4em;
  width: calc(100% + 0.08em);
  height: 0.74em;
  min-height: 18px;
  overflow: visible;
  color: var(--pm-gold-swash);
  pointer-events: none;
  z-index: 0;
}
.pricing-section .pricing-highlight__swash-path {
  vector-effect: non-scaling-stroke;
}
.pricing-section .pricing-description {
  margin: 0 0 2rem;
  font-family: "Inter", "Montserrat", system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--pricing-body);
  max-width: 32rem;
}
@media (max-width: 992px) {
  .pricing-section .pricing-description {
    margin-left: auto;
    margin-right: auto;
  }
}
.pricing-section .pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-family: "Inter", "Montserrat", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background-color: var(--pricing-purple-cta);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(75, 42, 173, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-section .pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(75, 42, 173, 0.36);
}
.pricing-section .pricing-cta:focus-visible {
  outline: 3px solid rgba(75, 42, 173, 0.45);
  outline-offset: 3px;
}
@media (max-width: 992px) {
  .pricing-section .pricing-cta {
    width: min(100%, 340px);
  }
}
.pricing-section .pricing-visual {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  min-height: 0;
}
@media (max-width: 992px) {
  .pricing-section .pricing-visual {
    order: 1;
    justify-content: center;
  }
}
.pricing-section .pricing-visual__frame {
  width: 100%;
  max-width: 520px;
  border-radius: clamp(20px, 3vw, 28px);
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
}
.pricing-section .pricing-visual__img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: cover;
  object-position: center 22%;
}
@media (min-width: 993px) {
  .pricing-section .pricing-visual__img {
    min-height: 480px;
    max-height: min(620px, 78vh);
  }
}

.benefits-section {
  background-color: var(--pm-white);
  padding: clamp(72px, 14vw, 120px) 0;
}
.benefits-section .benefits-header {
  margin-bottom: clamp(48px, 10vw, 72px);
}
.benefits-section .benefits-header .section-title {
  font-family: "Plus Jakarta Sans", "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw + 0.35rem, 3.75rem);
  font-weight: 600;
  line-height: 1.1666667;
  color: var(--pm-text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.benefits-section .benefits-header .section-subtitle {
  font-size: 1.125rem;
  color: var(--pm-text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}
.benefits-section .benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 8vw, 48px) clamp(32px, 6vw, 40px);
}
@media (min-width: 768px) {
  .benefits-section .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .benefits-section .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.benefits-section .benefit-card {
  background: transparent;
  text-align: center;
  transition: transform 0.3s ease;
}
.benefits-section .benefit-card:hover {
  transform: translateY(-6px);
}
.benefits-section .benefit-card .icon-wrap {
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.benefits-section .benefit-card .icon-wrap .benefit-icon-img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.benefits-section .benefit-card .benefit-title {
  font-family: "Plus Jakarta Sans", "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.875rem);
  font-weight: 700;
  color: var(--pm-text-dark);
  margin-bottom: 12px;
  line-height: 1.3333333;
  letter-spacing: -0.01em;
}
.benefits-section .benefit-card .benefit-desc {
  font-family: "Inter", "Montserrat", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--pm-text-muted);
  max-width: 260px;
  margin: 0 auto;
}

.how-it-works-section {
  --how-section-bg: #ffffff;
  background-color: var(--how-section-bg);
  padding: clamp(72px, 14vw, 120px) 0;
}
.how-it-works-section .how-it-works-layout {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 992px) {
  .how-it-works-section .how-it-works-layout {
    flex-direction: column;
    gap: clamp(40px, 8vw, 60px);
    text-align: center;
  }
}
.how-it-works-section .how-visual {
  flex: 1;
}
@media (max-width: 992px) {
  .how-it-works-section .how-visual {
    order: 1;
    width: 100%;
  }
}
.how-it-works-section .how-visual .mockup-container {
  position: relative;
  border-radius: 40px 0px 0 0;
  padding: 60px 60px 0;
  background-color: #d8dadb;
  overflow: hidden;
  display: flex;
  justify-content: center;
  box-shadow: 0 40px 80px rgba(216, 218, 219, 0.3);
}
@media (max-width: 992px) {
  .how-it-works-section .how-visual .mockup-container {
    border-radius: clamp(24px, 6vw, 40px);
    padding: clamp(28px, 8vw, 48px) clamp(20px, 5vw, 40px) 0;
    box-shadow: 0 24px 48px rgba(216, 218, 219, 0.24);
  }
}
.how-it-works-section .how-visual .mockup-container .dashboard-preview {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 24px 24px 0 0;
  display: block;
  object-fit: contain;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.how-it-works-section .how-visual .mockup-container:hover .dashboard-preview {
  transform: translateY(-10px);
}
.how-it-works-section .how-steps {
  flex: 1;
}
@media (max-width: 992px) {
  .how-it-works-section .how-steps {
    order: 2;
  }
}
.how-it-works-section .how-steps .section-title {
  font-family: "Plus Jakarta Sans", "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.75rem, 2.5vw + 1.25rem, 60px);
  font-weight: 600;
  color: #020407;
  margin-bottom: 40px;
  line-height: 1.1666667;
  letter-spacing: -0.03em;
}
@media (min-width: 993px) {
  .how-it-works-section .how-steps .section-title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (max-width: 992px) {
  .how-it-works-section .how-steps .section-title {
    margin-bottom: clamp(28px, 7vw, 40px);
  }
}
.how-it-works-section .how-steps .step-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.how-it-works-section .how-steps .step-list .step-item {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media (max-width: 992px) {
  .how-it-works-section .how-steps .step-list .step-item {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 16px;
  }
}
.how-it-works-section .how-steps .step-list .step-item .step-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.how-it-works-section .how-steps .step-list .step-item .step-icon .step-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}
.how-it-works-section .how-steps .step-list .step-item .step-content p {
  font-family: "Inter", "Montserrat", system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  color: #787878;
  margin: 0;
}

.categories-section {
  background-color: #F8FAFC;
  padding: clamp(72px, 14vw, 120px) 0;
}
.categories-section .categories-title {
  font-family: "Plus Jakarta Sans", "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.75rem, 2.8vw + 0.5rem, 3.125rem);
  font-weight: 600;
  margin-bottom: clamp(36px, 8vw, 60px);
  color: #050505;
  letter-spacing: -0.02em;
  line-height: 1.28;
  text-align: center;
}
.categories-section .categories-title .categories-title-highlight {
  position: relative;
  display: inline-block;
  isolation: isolate;
}
.categories-section .categories-title .categories-title-highlight__text {
  position: relative;
  z-index: 1;
}
.categories-section .categories-title .categories-title-highlight__swash {
  position: absolute;
  left: -0.06em;
  right: -0.06em;
  bottom: -0.52em;
  width: calc(100% + 0.12em);
  height: 0.5em;
  min-height: 14px;
  overflow: visible;
  color: var(--pm-gold-swash);
  pointer-events: none;
  z-index: 0;
}
.categories-section .categories-title .categories-title-highlight__swash-path {
  vector-effect: non-scaling-stroke;
}
.categories-section .categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 480px) {
  .categories-section .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .categories-section .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}
@media (min-width: 1024px) {
  .categories-section .categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.categories-section .category-card {
  background: white;
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}
.categories-section .category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--pm-primary);
  cursor: pointer;
}
.categories-section .category-card .cat-name {
  font-weight: 700;
  color: var(--pm-text-dark);
  font-size: 1rem;
  text-align: left;
  line-height: 1.3;
}
.categories-section .category-card .cat-icon-wrap {
  flex-shrink: 0;
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.categories-section .category-card .cat-icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}
.categories-section .category-card:hover .cat-icon-img {
  transform: scale(1.06);
}

.cta-section {
  color: white;
  padding: clamp(72px, 14vw, 100px) 0 0 0;
  overflow: hidden;
  position: relative;
  background-color: var(--pm-primary);
  background-image: url("assets/images/CTA.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.cta-section .cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 80px);
}
@media (max-width: 992px) {
  .cta-section .cta-layout {
    flex-direction: column;
    text-align: center;
    padding-bottom: clamp(48px, 12vw, 80px);
    align-items: center;
  }
}
.cta-section .cta-content {
  flex: 1;
  max-width: 600px;
  padding-bottom: clamp(48px, 8vw, 100px);
}
@media (max-width: 992px) {
  .cta-section .cta-content {
    padding-bottom: 0;
  }
}
.cta-section .cta-content .cta-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -2px;
}
.cta-section .cta-content .cta-subtitle {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 48px;
  opacity: 0.95;
  max-width: 500px;
}
@media (max-width: 992px) {
  .cta-section .cta-content .cta-subtitle {
    margin: 0 auto 48px;
  }
}
.cta-section .cta-content .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
}
@media (max-width: 992px) {
  .cta-section .cta-content .cta-actions {
    justify-content: center;
  }
}
@media (max-width: 380px) {
  .cta-section .cta-content .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}
.cta-section .cta-content .cta-actions .store-badge {
  display: inline-flex;
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.cta-section .cta-content .cta-actions .store-badge img {
  height: 50px;
  width: auto;
  display: block;
}
.cta-section .cta-content .cta-actions .store-badge:hover {
  transform: scale(1.04);
}
.cta-section .cta-visuals {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  min-width: 0;
}
@media (max-width: 992px) {
  .cta-section .cta-visuals {
    justify-content: center;
    width: 100%;
  }
}
.cta-section .cta-visuals .phone-mock-up {
  position: relative;
  width: 100%;
  max-width: min(520px, 48vw);
  z-index: 2;
}
@media (max-width: 992px) {
  .cta-section .cta-visuals .phone-mock-up {
    max-width: min(420px, 92vw);
  }
}
.cta-section .cta-visuals .phone-mock-up__backdrop {
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  width: min(118%, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(ellipse 52% 48% at 50% 48%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.14) 45%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}
.cta-section .cta-visuals .phone-mock-up .overlap-phones {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 42px rgba(15, 23, 42, 0.28)) drop-shadow(0 6px 16px rgba(15, 23, 42, 0.12));
}

.footer {
  background-color: var(--pm-white);
  color: var(--pm-text-dark);
  padding: clamp(54px, 8vw, 90px) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.footer .footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(28px, 6vw, 72px);
}
.footer .footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 360px;
}
.footer .footer-logo {
  display: inline-flex;
  text-decoration: none;
  line-height: 0;
}
.footer .footer-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  max-width: 250px;
}
.footer .footer-links a {
  color: #2e2e2e;
  text-decoration: none;
  font-family: "Inter", "Montserrat", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.footer .footer-links a:hover {
  color: var(--pm-primary);
}
.footer .footer-copyright {
  margin: 2px 0 0;
  color: #a3a3a3;
  font-size: 0.8125rem;
  line-height: 1.45;
  font-weight: 500;
}
.footer .footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer .footer-right h4 {
  margin: 0;
  color: #121212;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.footer .app-downloads {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .app-downloads .store-badge {
  display: block;
  width: auto;
  height: 44px;
  border-radius: 8px;
  transition: transform 0.2s ease;
}
.footer .app-downloads .store-badge:hover {
  transform: translateY(-1px);
}
@media (max-width: 992px) {
  .footer .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }
  .footer .footer-left,
  .footer .footer-right {
    align-items: center;
  }
  .footer .footer-links {
    justify-content: center;
    max-width: 100%;
  }
  .footer .footer-right h4 {
    font-size: clamp(1.625rem, 6vw, 2rem);
  }
  .footer .app-downloads {
    align-items: center;
  }
}

.pm-scroll-top {
  position: fixed;
  z-index: 1050;
  right: clamp(1rem, 3vw, 1.5rem);
  bottom: clamp(1rem, 3vw, 1.5rem);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, var(--pm-primary, #5d3891) 0%, var(--pm-primary-deep, #4a2d77) 100%);
  box-shadow: 0 4px 14px rgba(93, 56, 145, 0.35), 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pm-scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(93, 56, 145, 0.4), 0 2px 6px rgba(0, 0, 0, 0.1);
}
.pm-scroll-top:focus-visible {
  outline: 2px solid var(--pm-secondary, #e8a55c);
  outline-offset: 3px;
}
.pm-scroll-top__icon {
  width: 22px;
  height: 22px;
}

.property-managers-landing {
  --pm-primary: #4b2e83;
  --pm-primary-deep: #3a2366;
  --pm-secondary: #76bc21;
  --pm-secondary-deep: #5fa019;
  --pm-accent-green: #76bc21;
  --pm-gold-swash: #76bc21;
  --pm-hero-page-gradient: linear-gradient(
    165deg,
    #e8f4dc 0%,
    #eef6ff 30%,
    #f3edfb 58%,
    #ffffff 100%
  );
}

.property-managers-landing .features-section {
  --feat-bg: #f2f7ff;
  --feat-purple-frame: #4b2e83;
}

.property-managers-landing .navbar .btn-primary-sm.pm-mockup-nav-cta {
  background: #4c1d95;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(76, 29, 149, 0.34);
}
.property-managers-landing .navbar .btn-primary-sm.pm-mockup-nav-cta:hover {
  background: #5b21b6;
  color: #ffffff;
}

.property-managers-landing .navbar .btn-login {
  color: #4b2e83;
  border-color: rgba(75, 46, 131, 0.35);
}
.property-managers-landing .navbar .btn-login:hover {
  background: rgba(75, 46, 131, 0.08);
  color: #3a2366;
}

.navbar-brand.pm-navbar-brand-lock {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background-image: url("assets/images/Hero%20Section%20service%20Provider.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}
@media (max-width: 992px) {
  .hero-section {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(245, 240, 252, 0.72) 45%, rgba(235, 228, 248, 0.55) 100%), url("assets/images/Hero%20Section%20service%20Provider.png");
    background-position: center top, bottom center;
    background-size: cover, cover;
  }
}

.hero-visuals {
  position: relative;
}

.pm-hero-deco {
  position: absolute;
  border-radius: 20px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

.pm-hero-deco--purple {
  width: min(42vw, 280px);
  height: 120%;
  top: -8%;
  right: -6%;
  background: linear-gradient(155deg, rgba(75, 46, 131, 0.35) 0%, rgba(58, 35, 102, 0.12) 100%);
  transform: rotate(12deg);
}

.pm-hero-deco--lime {
  width: min(28vw, 180px);
  height: 70%;
  bottom: 5%;
  right: 18%;
  background: linear-gradient(165deg, rgba(118, 188, 33, 0.5) 0%, rgba(95, 160, 25, 0.18) 100%);
  transform: rotate(-8deg);
}

.hero-container,
.hero-content,
.hero-visuals .visual-wrapper {
  position: relative;
  z-index: 1;
}

.property-managers-landing .pricing-highlight__swash-path {
  stroke: #e7c349;
}

.property-managers-landing .cta-section {
  background-color: #3a2366;
  background-image: url("assets/images/CTA.%20For%20Service%20Providers.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.property-managers-landing .cta-section .cta-subtitle {
  color: rgba(255, 255, 255, 0.88);
}

.property-managers-landing .pm-scroll-top {
  background: linear-gradient(145deg, #4b2e83 0%, #5fa019 100%);
}

.property-managers-landing .how-it-works-section {
  --how-section-bg: #ffffff;
}

.property-managers-landing .how-visual .mockup-container {
  background-color: #d8dadb;
  box-shadow: 0 40px 80px rgba(216, 218, 219, 0.3);
}

.property-managers-landing .how-visual--trusted .mockup-container {
  background-color: #e7c349;
  box-shadow: 0 32px 64px rgba(231, 195, 73, 0.28);
}

.property-managers-landing .how-trusted-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.property-managers-landing .how-trusted-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 20px 20px 0 0;
  box-shadow: none;
}

.pm-mockup-w-mark {
  display: block;
  box-sizing: border-box;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.property-managers-landing .footer .footer-content.pm-mockup-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(20px, 3.5vw, 40px);
  align-items: start;
}
@media (max-width: 992px) {
  .property-managers-landing .footer .footer-content.pm-mockup-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .property-managers-landing .footer .footer-content.pm-mockup-footer-grid {
    grid-template-columns: 1fr;
  }
}

.pm-mockup-footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pm-text-dark);
  margin: 0 0 12px;
}

.pm-mockup-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pm-mockup-footer-col a {
  color: var(--pm-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.pm-mockup-footer-col a:hover {
  color: #4b2e83;
}

.property-managers-landing .footer .footer-left {
  max-width: none;
}

.property-managers-landing .income-icon path {
  stroke: #76bc21;
}

.property-managers-landing .mission-title {
  max-width: 24ch;
}

.property-managers-landing .mission-eyebrow {
  color: #4b2e83;
  font-weight: 700;
}

app-pm-navbar,
app-pm-hero-section,
app-pm-mission-section,
app-pm-features-section,
app-pm-pricing-section,
app-pm-benefits-section,
app-pm-how-it-works-section,
app-pm-categories-section,
app-pm-cta-section,
app-pm-footer,
app-pm-scroll-top {
  display: block;
}

.pm-scroll-top--hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 992px) {
  .navbar .navbar-mobile-panel.is-closed {
    display: none !important;
  }
}
.pricing-section a.pricing-cta {
  text-decoration: none;
}

.nav-menu-toggle .pm-toggle-icon-close {
  display: none;
}

.nav-menu-toggle[data-menu-open=true] .pm-toggle-icon-menu {
  display: none;
}

.nav-menu-toggle[data-menu-open=true] .pm-toggle-icon-close {
  display: block;
}
