﻿/* Property Management Page */
.page-pm { background: var(--color-bg); }

.pm-hero {
  padding: 48px 0 64px;
  background: var(--color-bg);
}

@media (min-width: 1024px) {
  .pm-hero { padding: 72px 0 88px; }
}

.pm-hero__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .pm-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 0 100px;
  }
}

.pm-hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

@media (min-width: 1024px) {
  .pm-hero__content {
    text-align: left;
    align-items: flex-start;
  }
}

.pm-hero__title {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.pm-hero__title-accent {
  display: block;
  margin-top: 4px;
  color: var(--color-primary);
}

@media (min-width: 1024px) {
  .pm-hero__title-accent { display: inline; margin-top: 0; }
}

.pm-hero__desc {
  margin: 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.pm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding-top: 8px;
}

@media (min-width: 640px) {
  .pm-hero__actions {
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 14px;
  }
}

@media (min-width: 1024px) {
  .pm-hero__actions { justify-content: flex-start; }
}

.pm-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

@media (min-width: 640px) {
  .pm-hero__btn {
    width: auto;
  }
}

.pm-hero__btn:hover {
  transform: translateY(-2px);
}

.pm-hero__btn--primary {
  background: var(--color-secondary);
  color: var(--color-white);
  border: 2px solid var(--color-secondary);
  box-shadow: 0 6px 20px rgba(221, 156, 28, 0.28);
}

.pm-hero__btn--primary:hover {
  background: #d45f15;
  border-color: #d45f15;
  box-shadow: 0 10px 28px rgba(221, 156, 28, 0.35);
}

.pm-hero__btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.pm-hero__btn--outline:hover {
  background: rgba(0, 46, 89, 0.06);
  box-shadow: 0 6px 20px rgba(0, 46, 89, 0.12);
}

.pm-hero__visual {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .pm-hero__visual { margin: 0 0 0 auto; }
}

.pm-hero__image-wrap {
  width: 640px;
  max-width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(30, 41, 59, 0.14);
}

.pm-hero__image {
  display: block;
  width: 640px;
  max-width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.pm-hero__image-wrap:hover .pm-hero__image {
  transform: scale(1.04);
}

@media (max-width: 639px) {
  .pm-hero__image-wrap,
  .pm-hero__image {
    width: 100%;
    height: 260px;
  }
}

/* â”€â”€â”€ Marketing Solutions Page â”€â”€â”€ */
.page-ms {
  background: var(--color-bg);
}

.pm-services {
  padding: 72px 0 80px;
  background: linear-gradient(180deg, var(--color-bg-light) 0%, #f1f5f9 100%);
}

.pm-services__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 1024px) {
  .pm-services__inner { padding: 0 100px; }
}

.pm-services__header {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pm-services__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.pm-services__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

.pm-services__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.pm-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .pm-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (min-width: 1024px) {
  .pm-services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
}

.pm-services__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 220px;
  padding: 30px 26px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(30, 41, 59, 0.05);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
}

.pm-services__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pm-services__card--blue::before {
  background: linear-gradient(90deg, var(--color-primary), rgba(0, 46, 89, 0.4));
}

.pm-services__card--orange::before {
  background: linear-gradient(90deg, var(--color-secondary), rgba(221, 156, 28, 0.4));
}

.pm-services__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(30, 41, 59, 0.12);
}

.pm-services__card:hover::before {
  opacity: 1;
}

.pm-services__card--blue:hover {
  border-color: rgba(0, 46, 89, 0.28);
}

.pm-services__card--orange:hover {
  border-color: rgba(221, 156, 28, 0.28);
}

.pm-services__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.pm-services__card--blue .pm-services__icon {
  background: linear-gradient(145deg, rgba(0, 46, 89, 0.14), rgba(0, 46, 89, 0.06));
  color: var(--color-primary);
}

.pm-services__card--orange .pm-services__icon {
  background: linear-gradient(145deg, rgba(221, 156, 28, 0.14), rgba(221, 156, 28, 0.06));
  color: var(--color-secondary);
}

.pm-services__card:hover .pm-services__icon {
  transform: scale(1.06) translateY(-2px);
}

.pm-services__card--blue:hover .pm-services__icon {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(0, 46, 89, 0.3);
}

.pm-services__card--orange:hover .pm-services__icon {
  background: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(221, 156, 28, 0.3);
}

.pm-services__icon svg {
  display: block;
}

.pm-services__card-title {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
}

.pm-services__card-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

/* â”€â”€â”€ SMM: Why Choose Us â”€â”€â”€ */
.pm-process__badge-svg {
  width: 56px;
  height: 56px;
}

.ms-framework__step-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-secondary);
}

.ms-framework__step-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 260px;
}

/* â”€â”€â”€ MS: Performance â”€â”€â”€ */
.ms-performance {
  padding: 72px 0 80px;
  background: var(--color-bg);
}

.ms-performance__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .ms-performance__inner {
    flex-direction: row;
    gap: 64px;
    padding: 0 100px;
    align-items: center;
  }
}

.ms-performance__content {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 1024px) {
  .ms-performance__content {
    order: 2;
    flex: 1;
    min-width: 0;
    max-width: 48%;
  }
}

.ms-performance__title {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

.ms-performance__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.ms-performance__list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ms-performance__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-text);
}

.ms-performance__check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(221, 156, 28, 0.14);
  color: var(--color-secondary);
}

.ms-performance__check svg {
  display: block;
}

.ms-performance__cards {
  order: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 540px) {
  .ms-performance__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .ms-performance__cards {
    order: 1;
    flex: 1;
    min-width: 0;
    max-width: 52%;
    gap: 20px;
  }
}

.ms-performance__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ms-performance__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 41, 59, 0.08);
}

.ms-performance__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 46, 89, 0.1);
  color: var(--color-primary);
}

.ms-performance__icon svg {
  display: block;
}

.ms-performance__card-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
}

.ms-performance__card-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* â”€â”€â”€ MS: Impact Stats â”€â”€â”€ */
.ms-stats {
  padding: 56px 0 64px;
  background: var(--color-primary);
}

.ms-stats__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 10px;
}

@media (min-width: 640px) {
  .ms-stats__inner {
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .ms-stats__inner {
    padding: 0 100px;
    gap: 48px;
  }
}

.ms-stats__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ms-stats__number {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.ms-stats__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  max-width: 220px;
}

@media (min-width: 640px) {
  .ms-stats__label { font-size: 12px; }
}

/* â”€â”€â”€ MS: Case Studies â”€â”€â”€ */
.ms-cases {
  padding: 72px 0 80px;
  background: var(--color-bg-light);
}

.ms-cases__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 1024px) {
  .ms-cases__inner { padding: 0 100px; }
}

.ms-cases__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .ms-cases__header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
  }
}

.ms-cases__headings {
  flex: 1;
  min-width: 0;
}

.ms-cases__title {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

.ms-cases__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 520px;
}

.ms-cases__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}

.ms-cases__link:hover {
  gap: 10px;
  color: #001f3f;
}

.ms-cases__link svg {
  display: block;
}

.ms-cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 900px) {
  .ms-cases__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.ms-cases__card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(30, 41, 59, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ms-cases__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(30, 41, 59, 0.1);
}

.ms-cases__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.ms-cases__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.ms-cases__card:hover .ms-cases__image {
  transform: scale(1.05);
}

.ms-cases__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--color-secondary);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ms-cases__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 24px 28px;
}

@media (min-width: 640px) {
  .ms-cases__body { padding: 28px 28px 32px; }
}

.ms-cases__card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
}

.ms-cases__card-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.ms-cases__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.ms-cases__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ms-cases__stat-value {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-primary);
}

.ms-cases__stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

/* â”€â”€â”€ MS: Testimonials â”€â”€â”€ */
.ms-testimonials {
  padding: 72px 0 80px;
  background: var(--color-bg);
}

.ms-testimonials__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 1024px) {
  .ms-testimonials__inner { padding: 0 100px; }
}

.ms-testimonials__header {
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ms-testimonials__title {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

.ms-testimonials__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.ms-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .ms-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1100px) {
  .ms-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.ms-testimonials__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 280px;
  padding: 32px 28px 28px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}

.ms-testimonials__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(30, 41, 59, 0.1);
  border-color: rgba(0, 46, 89, 0.15);
}

.ms-testimonials__quote-mark {
  position: absolute;
  top: 12px;
  right: 16px;
  color: rgba(0, 46, 89, 0.12);
  pointer-events: none;
  line-height: 0;
}

.ms-testimonials__quote-mark svg {
  display: block;
  width: 64px;
  height: 64px;
}

.ms-testimonials__quote {
  position: relative;
  z-index: 1;
  margin: 0;
  flex: 1;
}

.ms-testimonials__quote p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text);
}

.ms-testimonials__author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 8px;
}

.ms-testimonials__avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 46, 89, 0.12);
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ms-testimonials__author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.ms-testimonials__name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

.ms-testimonials__role {
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-text-secondary);
}

/* â”€â”€â”€ MS: FAQ â”€â”€â”€ */
.ms-faq {
  padding: 72px 0 80px;
  background: var(--color-bg);
}

.ms-faq__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 1024px) {
  .ms-faq__inner {
    padding: 0 24px;
    max-width: 860px;
  }
}

.ms-faq__header {
  margin-bottom: 40px;
  text-align: center;
}

.ms-faq__title {
  margin: 0;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

.ms-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ms-faq__item {
  background: var(--color-bg);
  border-radius: 14px;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 12px rgba(30, 41, 59, 0.04);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ms-faq__item:hover {
  box-shadow: 0 4px 16px rgba(30, 41, 59, 0.06);
}

.ms-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

@media (min-width: 640px) {
  .ms-faq__question { padding: 22px 26px; }
}

.ms-faq__question span:first-child {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-text);
}

@media (min-width: 640px) {
  .ms-faq__question span:first-child { font-size: 16px; }
}

.ms-faq__chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: transform 0.35s ease, color 0.3s ease;
}

.ms-faq__chevron svg {
  display: block;
}

.ms-faq__answer {
  padding: 0 22px 20px;
}

@media (min-width: 640px) {
  .ms-faq__answer { padding: 0 26px 24px; }
}

.ms-faq__answer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

@media (min-width: 640px) {
  .ms-faq__answer p { font-size: 15px; }
}

.ms-faq__cta {
  margin: 32px 0 0;
  text-align: center;
  font-size: 15px;
  color: var(--color-text-secondary);
}

.ms-faq__cta a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
  transition: color 0.2s ease;
}

.ms-faq__cta a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* â”€â”€â”€ SMM: What We Offer â”€â”€â”€ */
.pm-services {
  padding: 72px 0 80px;
  background: linear-gradient(180deg, var(--color-bg-light) 0%, #f1f5f9 100%);
}

.pm-services__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 1024px) {
  .pm-services__inner { padding: 0 100px; }
}

.pm-services__header {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pm-services__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.pm-services__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

.pm-services__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.pm-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .pm-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (min-width: 1024px) {
  .pm-services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
}

.pm-services__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 220px;
  padding: 30px 26px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(30, 41, 59, 0.05);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
}

.pm-services__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pm-services__card--blue::before {
  background: linear-gradient(90deg, var(--color-primary), rgba(0, 46, 89, 0.4));
}

.pm-services__card--orange::before {
  background: linear-gradient(90deg, var(--color-secondary), rgba(221, 156, 28, 0.4));
}

.pm-services__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(30, 41, 59, 0.12);
}

.pm-services__card:hover::before {
  opacity: 1;
}

.pm-services__card--blue:hover {
  border-color: rgba(0, 46, 89, 0.28);
}

.pm-services__card--orange:hover {
  border-color: rgba(221, 156, 28, 0.28);
}

.pm-services__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.pm-services__card--blue .pm-services__icon {
  background: linear-gradient(145deg, rgba(0, 46, 89, 0.14), rgba(0, 46, 89, 0.06));
  color: var(--color-primary);
}

.pm-services__card--orange .pm-services__icon {
  background: linear-gradient(145deg, rgba(221, 156, 28, 0.14), rgba(221, 156, 28, 0.06));
  color: var(--color-secondary);
}

.pm-services__card:hover .pm-services__icon {
  transform: scale(1.06) translateY(-2px);
}

.pm-services__card--blue:hover .pm-services__icon {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(0, 46, 89, 0.3);
}

.pm-services__card--orange:hover .pm-services__icon {
  background: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(221, 156, 28, 0.3);
}

.pm-services__icon svg {
  display: block;
}

.pm-services__card-title {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
}

.pm-services__card-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

/* â”€â”€â”€ SMM: Why Choose Us â”€â”€â”€ */
.pm-why {
  padding: 72px 0 80px;
  background: var(--color-bg-light);
}

.pm-why__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .pm-why__inner {
    flex-direction: row;
    gap: 64px;
    padding: 0 100px;
    align-items: center;
  }
}

.pm-why__content {
  order: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 1024px) {
  .pm-why__content {
    flex: 1;
    min-width: 0;
    max-width: 52%;
  }
}

.pm-why__title {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

.pm-why__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.pm-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 8px;
}

@media (min-width: 540px) {
  .pm-why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 28px;
  }
}

.pm-why__point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pm-why__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(0, 46, 89, 0.14), rgba(0, 46, 89, 0.06));
  color: var(--color-primary);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.pm-why__point:hover .pm-why__icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.pm-why__icon svg {
  display: block;
}

.pm-why__point-body {
  flex: 1;
  min-width: 0;
}

.pm-why__point-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
}

.pm-why__point-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-secondary);
}

.pm-why__visual {
  order: 2;
  width: 100%;
}

@media (min-width: 1024px) {
  .pm-why__visual {
    flex: 1;
    min-width: 0;
    max-width: 48%;
  }
}

.pm-why__image-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(30, 41, 59, 0.12);
}

@media (min-width: 1024px) {
  .pm-why__image-wrap {
    max-width: none;
    margin: 0;
  }
}

.pm-why__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* â”€â”€â”€ SMM: Process Timeline â”€â”€â”€ */
.pm-process {
  padding: 72px 0 80px;
  background: var(--color-bg);
}

.pm-process__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 1024px) {
  .pm-process__inner { padding: 0 100px; }
}

.pm-process__header {
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pm-process__title {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

.pm-process__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.pm-process__track {
  position: relative;
}

.pm-process__line {
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: var(--color-border);
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
  z-index: 0;
}

.pm-process__line.is-visible {
  transform: scaleY(1);
}

@media (min-width: 1024px) {
  .pm-process__line {
    left: 6%;
    right: 6%;
    top: 28px;
    bottom: auto;
    width: auto;
    height: 2px;
    transform-origin: left center;
    transform: scaleX(0);
  }

  .pm-process__line.is-visible {
    transform: scaleX(1);
  }
}

.pm-process__steps {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .pm-process__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
}

.pm-process__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  margin: 0;
}

@media (min-width: 1024px) {
  .pm-process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }
}

.pm-process__badge {
  flex-shrink: 0;
  color: var(--color-primary);
  transition: transform 0.35s ease, color 0.35s ease;
}

.pm-process__step:hover .pm-process__badge {
  transform: scale(1.06);
  color: #001f3f;
}

.pm-process__badge-svg {
  display: block;
  width: 56px;
  height: 56px;
}

@media (min-width: 1024px) {
  .pm-process__badge-svg {
    width: 56px;
    height: 56px;
  }
}

.pm-process__body {
  min-width: 0;
  padding-top: 4px;
}

@media (min-width: 1024px) {
  .pm-process__body {
    padding-top: 0;
  }
}

.pm-process__step-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
}

.pm-process__step-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

@media (min-width: 1024px) {
  .pm-process__step-desc {
    font-size: 14px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* â”€â”€â”€ SMM: Stats â”€â”€â”€ */
.pm-stats {
  padding: 56px 0 64px;
  background: var(--color-primary);
}

.pm-stats__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 10px;
}

@media (min-width: 640px) {
  .pm-stats__inner {
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .pm-stats__inner {
    padding: 0 100px;
    gap: 48px;
  }
}

.pm-stats__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pm-stats__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  transition: transform 0.35s ease, background 0.35s ease;
}

.pm-stats__item:hover .pm-stats__icon {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

.pm-stats__icon svg {
  display: block;
}

.pm-stats__number {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
}

.pm-stats__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  max-width: 220px;
}

@media (min-width: 640px) {
  .pm-stats__label { font-size: 12px; }
}

/* â”€â”€â”€ SMM: Success Stories â”€â”€â”€ */
.pm-faq {
  padding: 72px 0 80px;
  background: var(--color-bg);
}

.pm-faq__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 1024px) {
  .pm-faq__inner {
    padding: 0 24px;
    max-width: 860px;
  }
}

.pm-faq__header {
  margin-bottom: 40px;
  text-align: center;
}

.pm-faq__title {
  margin: 0;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

.pm-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pm-faq__item {
  background: var(--color-bg-light);
  border-radius: 14px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.pm-faq__item:hover {
  box-shadow: 0 4px 16px rgba(30, 41, 59, 0.06);
}

.pm-faq__item.is-open {
  background: var(--color-bg-light);
}

.pm-faq__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 20px 22px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

@media (min-width: 640px) {
  .pm-faq__question { padding: 22px 26px; align-items: center; }
}

.pm-faq__question span:first-child {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-text);
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 640px) {
  .pm-faq__question span:first-child { font-size: 16px; }
}

.pm-faq__chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: transform 0.35s ease, color 0.3s ease;
}

.pm-faq__chevron svg {
  display: block;
}

.pm-faq__answer {
  padding: 0 22px 20px;
}

@media (min-width: 640px) {
  .pm-faq__answer { padding: 0 26px 24px; }
}

.pm-faq__answer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

@media (min-width: 640px) {
  .pm-faq__answer p { font-size: 15px; }
}

.pm-faq__cta {
  margin: 32px 0 0;
  text-align: center;
  font-size: 15px;
  color: var(--color-text-secondary);
}

.pm-faq__cta a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
  transition: color 0.2s ease;
}

.pm-faq__cta a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* â”€â”€â”€ SMM: CTA â”€â”€â”€ */
.pm-testimonials {
  padding: 72px 0 80px;
  background: var(--color-bg-light);
}

.pm-testimonials__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 1024px) {
  .pm-testimonials__inner {
    padding: 0 100px;
  }
}

.pm-testimonials__title {
  margin: 0 0 48px;
  text-align: center;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

.pm-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .pm-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (min-width: 1100px) {
  .pm-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.pm-testimonials__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 280px;
  padding: 36px 32px 32px;
  background: var(--color-bg);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(30, 41, 59, 0.07);
  border: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pm-testimonials__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(30, 41, 59, 0.11);
}

.pm-testimonials__quote-mark {
  position: absolute;
  top: 16px;
  left: 24px;
  color: rgba(100, 116, 139, 0.18);
  pointer-events: none;
  line-height: 0;
}

.pm-testimonials__quote-mark svg {
  display: block;
  width: 56px;
  height: 56px;
}

.pm-testimonials__quote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-top: 28px;
  flex: 1;
}

.pm-testimonials__quote p {
  margin: 0;
  font-size: 15px;
  font-style: italic;
  line-height: 1.75;
  color: var(--color-text-secondary);
}

.pm-testimonials__author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.pm-testimonials__avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 46, 89, 0.12);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pm-testimonials__author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.pm-testimonials__name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

.pm-testimonials__role {
  font-size: 13px;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-text-secondary);
}

/* â”€â”€â”€ PC: FAQ â”€â”€â”€ */
.pm-cta {
  padding: 64px 0 80px;
  background: var(--color-bg-light);
}

.pm-cta__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 1024px) {
  .pm-cta__inner {
    padding: 0 100px;
  }
}

.pm-cta__banner {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--color-primary);
  box-shadow: 0 24px 64px rgba(0, 46, 89, 0.28);
}

.pm-cta__pattern {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
  opacity: 0.08;
  pointer-events: none;
}

.pm-cta__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 24px;
}

@media (min-width: 768px) {
  .pm-cta__grid {
    padding: 48px 40px;
    gap: 36px;
  }
}

@media (min-width: 1024px) {
  .pm-cta__grid {
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 56px 56px;
  }
}

.pm-cta__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--color-white);
}

@media (min-width: 1024px) {
  .pm-cta__content {
    flex: 1;
    min-width: 0;
    max-width: 48%;
  }
}

.pm-cta__title {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

.pm-cta__desc {
  margin: 0;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.pm-cta__phone {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 8px;
}

.pm-cta__phone-icon {
  font-size: 28px;
  line-height: 1;
  color: var(--color-white);
}

.pm-cta__phone-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pm-cta__phone-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.pm-cta__phone-link {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.pm-cta__phone-link:hover {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.pm-cta__form-wrap {
  width: 100%;
}

@media (min-width: 1024px) {
  .pm-cta__form-wrap {
    flex: 1;
    min-width: 0;
    max-width: 52%;
  }
}

.pm-cta__form-card {
  background: var(--color-bg);
  border-radius: 20px;
  padding: 28px 24px 32px;
  box-shadow: 0 16px 48px rgba(15, 39, 68, 0.18);
}

@media (min-width: 640px) {
  .pm-cta__form-card {
    padding: 32px 32px 36px;
  }
}

.pm-cta__notice {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.pm-cta__notice--success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.pm-cta__notice--error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.pm-cta__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pm-cta__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pm-cta__field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.pm-cta__field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.pm-cta__field input,
.pm-cta__field select {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pm-cta__field input:focus,
.pm-cta__field select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 46, 89, 0.12);
}

.pm-cta__field input::placeholder {
  color: #94a3b8;
}

.pm-cta__select-wrap {
  position: relative;
}

.pm-cta__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-text-secondary);
  border-bottom: 2px solid var(--color-text-secondary);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.pm-cta__field select {
  appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.pm-cta__submit {
  width: 100%;
  margin-top: 4px;
  padding: 15px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-secondary);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.pm-cta__submit:hover {
  background: #b88719;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(221, 156, 28, 0.35);
}

.pm-cta__submit:active {
  transform: translateY(0);
}

/* â”€â”€â”€ About: Hero â”€â”€â”€ */

