.page h1 {
  margin-top: 0;
}

.hero {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 10px);
  padding: 24px;
}

.section {
  margin-top: 32px;
}

.section h2 {
  margin: 0 0 14px;
}

.kicker {
  color: var(--muted-foreground);
}

.center {
  text-align: center;
}

.sub {
  color: var(--muted-foreground);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.home-heroSlider {
  position: relative;
  min-height: 600px;
  color: #fff;
  overflow: hidden;
  background: #0f1f35;
}

.home-heroSlider__slides {
  position: absolute;
  inset: 0;
}

.home-heroSlider__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .65s ease, transform 6s ease;
}

.home-heroSlider__slide.is-active {
  opacity: 1;
  transform: scale(1.0);
}

.home-heroSlider__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 35, .48);
}

.home-heroSlider__content {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 110px;
}

.home-heroSlider__kicker {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(11, 21, 37, 0.28);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.home-heroSlider__content h1 {
  margin: 0 0 14px;
  max-width: 760px;
  font-size: 66px;
  line-height: 1.03;
}

.home-heroSlider__content p {
  margin: 0;
  max-width: 690px;
  font-size: 33px;
  line-height: 1.25;
  color: rgba(255, 255, 255, .92);
}

.home-heroSlider__actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
}

.home-heroSlider__dots {
  margin-top: 26px;
  display: flex;
  gap: 10px;
}

.home-heroSlider__dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
}

.home-heroSlider__dot.is-active {
  width: 28px;
  background: #fff;
}

.home-main {
  background: #f4f6f9;
}

.home-services {
  padding: 64px 0 42px;
}

.home-services .container {
  padding-top: 0;
  padding-bottom: 0;
}

.home-services__header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.home-services__header h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.05;
}

.home-services__header p {
  margin: 14px auto 0;
  max-width: 690px;
  font-size: 21px;
  color: var(--muted-foreground);
}

.home-services__grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-serviceCard {
  display: block;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(16, 18, 23, .06);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.home-serviceCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(16, 18, 23, .10);
  border-color: rgba(30, 58, 95, .24);
}

.home-serviceCard__icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: #eef1f6;
  color: #2d4a6f;
  display: grid;
  place-items: center;
}

.home-serviceCard__icon svg {
  width: 27px;
  height: 27px;
}

.home-serviceCard h2 {
  margin: 18px 0 8px;
  font-size: 30px;
  line-height: 1.16;
}

.home-serviceCard p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 18px;
}

.home-how {
  padding: 34px 0 64px;
  background: #fff;
}

.home-how .container {
  padding-top: 0;
  padding-bottom: 0;
}

.home-how__header {
  text-align: center;
}

.home-how__header h2 {
  margin: 0;
  font-size: 42px;
}

.home-how__header p {
  margin: 10px auto 0;
  color: var(--muted-foreground);
}

.home-how__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-how__cta {
  margin-top: 40px;
  text-align: center;
}

.home-howCard {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 18, 23, .06);
}

.home-howCard__step {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(30, 58, 95, .10);
  color: var(--primary);
  font-weight: 700;
}

.home-howCard h3 {
  margin: 12px 0 8px;
  font-size: 22px;
}

.home-howCard p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 16px;
}

.home-start {
  padding: 0 0 84px;
  background: #fff;
}

.home-start .container {
  padding-top: 0;
  padding-bottom: 0;
}

.home-start__card {
  background: #1e3a5f;
  color: #fff;
  border-radius: 22px;
  padding: 60px 32px;
  text-align: center;
}

.home-start__card h2 {
  margin: 0;
  font-size: 54px;
  line-height: 1.04;
}

.home-start__card p {
  margin: 14px auto 24px;
  max-width: 680px;
  font-size: 22px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.4;
}

@media (max-width: 1240px) {
  .home-heroSlider {
    min-height: 520px;
  }

  .home-heroSlider__content {
    padding-top: 120px;
    padding-bottom: 88px;
  }

  .home-heroSlider__content h1 {
    font-size: 52px;
    max-width: 700px;
  }

  .home-heroSlider__content p {
    font-size: 25px;
    max-width: 620px;
  }

  .home-services__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .home-heroSlider {
    min-height: 460px;
  }

  .home-heroSlider__content {
    padding-top: 96px;
    padding-bottom: 72px;
  }

  .home-heroSlider__content h1 {
    font-size: 40px;
    max-width: 560px;
  }

  .home-heroSlider__content p {
    font-size: 20px;
    max-width: 540px;
  }

  .home-heroSlider__actions {
    flex-wrap: wrap;
  }

  .home-services {
    padding-top: 40px;
  }

  .home-services__header h1 {
    font-size: 40px;
  }

  .home-services__header p {
    font-size: 18px;
  }

  .home-serviceCard h2 {
    font-size: 24px;
  }

  .home-serviceCard p {
    font-size: 16px;
  }

  .home-how__header h2 {
    font-size: 34px;
  }

  .home-start {
    padding-bottom: 58px;
  }

  .home-start__card {
    padding: 40px 20px;
    border-radius: 18px;
  }

  .home-start__card h2 {
    font-size: 40px;
  }

  .home-start__card p {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .home-heroSlider {
    min-height: 400px;
  }

  .home-heroSlider__content {
    padding-top: 82px;
    padding-bottom: 56px;
  }

  .home-heroSlider__content h1 {
    font-size: 31px;
  }

  .home-heroSlider__content p {
    font-size: 17px;
  }

  .home-heroSlider__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-services__grid,
  .home-how__grid {
    grid-template-columns: 1fr;
  }
}

.service-page {
  background: #fff;
}

.service-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #38597f;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.service-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 42px 0;
  background-color: var(--primary, #0d1b2a);
  overflow: hidden;
}

/* Dark overlay for image/video variants */
.service-hero--has-image::before,
.service-hero--has-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .52);
  z-index: 1;
}

/* Background image (background-image set inline via style attribute) */
.service-hero--has-image {
  background-size: cover;
  background-position: center;
}

/* Background video */
.service-hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Content sits above overlay/video */
.service-hero .container {
  position: relative;
  z-index: 2;
}

.service-hero__copy {
  max-width: 72ch;
}

.service-hero__copy h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.06;
  color: #fff;
}

.service-hero__copy p {
  margin: 14px 0 0;
  color: #fff;
  font-size: 18px;
}

.service-hero__actions {
  margin-top: 20px;
}

.service-mediaCard {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 30px rgba(16, 18, 23, .09);
}

.service-mediaCard img {
  width: 100%;
  height: auto;
  display: block;
}

.service-section {
  padding: 52px 0;
}

.service-section--alt {
  background: #f8f9fb;
}

.service-section h2 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.08;
}

.service-overview {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: center;
}

.service-overview p {
  margin: 0 0 12px;
  color: var(--muted-foreground);
}

.service-overview p:last-child {
  margin-bottom: 0;
}

.service-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-benefitCard {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(16, 18, 23, .06);
}

.service-benefitCard h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.service-benefitCard p {
  margin: 0;
  color: var(--muted-foreground);
}

.service-whyCard {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  background: #fff;
  padding: 20px 20px 14px;
  box-shadow: 0 12px 26px rgba(16, 18, 23, .06);
}

.service-whyList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-whyList li {
  position: relative;
  padding-left: 26px;
  color: var(--muted-foreground);
}

.service-whyList li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.service-finalCta {
  border-radius: 18px;
  background: #1e3a5f;
  color: #fff;
  padding: 42px 28px;
  text-align: center;
}

.service-finalCta h2 {
  margin: 0;
  font-size: 38px;
}

.service-finalCta p {
  margin: 14px auto 22px;
  max-width: 900px;
  color: rgba(255, 255, 255, .88);
  line-height: 1.5;
}

.service-finalCta__actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── 3D Tour Showcase ── */
.service-tourShowcase {
  padding: 64px 0;
  background: linear-gradient(180deg, #0f1f35 0%, #1a3250 100%);
  color: #fff;
}

.service-tourShowcase__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}

.service-tourShowcase__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  margin-bottom: 16px;
}

.service-tourShowcase__badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.service-tourShowcase__header h2 {
  margin: 0 0 10px;
  font-size: 40px;
  line-height: 1.08;
  color: #fff;
}

.service-tourShowcase__header p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  line-height: 1.5;
}

.service-tourShowcase__frame {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .06),
    0 24px 60px rgba(0, 0, 0, .35),
    0 0 40px rgba(30, 58, 95, .25);
}

.service-tourShowcase__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 980px) {

  .service-overview,
  .service-benefits {
    grid-template-columns: 1fr;
  }

  .service-hero__copy h1 {
    font-size: 40px;
  }

  .service-tourShowcase__header h2 {
    font-size: 34px;
  }
}

@media (max-width: 680px) {
  .service-hero {
    min-height: 50vh;
    padding-top: 30px;
  }

  .service-hero__copy h1 {
    font-size: 33px;
  }

  .service-hero__copy p {
    font-size: 16px;
  }

  .service-section h2 {
    font-size: 30px;
  }

  .service-finalCta {
    padding: 32px 18px;
  }

  .service-finalCta h2 {
    font-size: 30px;
  }

  .service-finalCta__actions {
    display: grid;
    width: 100%;
  }

  .service-finalCta__actions .btn {
    width: 100%;
  }

  .service-tourShowcase {
    padding: 42px 0;
  }

  .service-tourShowcase__header h2 {
    font-size: 28px;
  }

  .service-tourShowcase__header p {
    font-size: 15px;
  }

  .service-tourShowcase__frame {
    border-radius: 12px;
  }
}

.home-hero {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 35, .45);
}

.home-hero__content {
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
  color: #fff;
}

.home-hero__content h1 {
  font-size: 52px;
  line-height: 1.06;
  max-width: 820px;
  margin: 0 0 14px;
}

.home-hero__content p {
  max-width: 720px;
  font-size: 16px;
  opacity: .95;
}

.home-hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

.btn--accent {
  background: var(--accent);
  color: #fff;
}

.btn--ghostLight {
  background: rgba(255, 255, 255, .95);
  color: #111827;
  border: 1px solid rgba(255, 255, 255, .7);
}

.home-section {
  padding: 70px 0;
  background: #fff;
}

.services-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 16px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 18, 23, .06);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef1f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.service-card h3 {
  margin: 8px 0 6px;
}

.service-card p {
  margin: 0;
  color: var(--muted-foreground);
}

.home-cta {
  padding: 70px 0;
  background: #f7f8fb;
}

.cta-box {
  background: #1e3a5f;
  color: #fff;
  border-radius: 22px;
  padding: 60px 40px;
  text-align: center;
}

.cta-box p {
  opacity: .9;
  max-width: 720px;
  margin: 14px auto 22px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .home-hero__content h1 {
    font-size: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .home-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   Inner Page Hero
========================= */
.page-hero {
  position: relative;
  padding: 84px 0 74px;
  color: #fff;
  overflow: hidden;
}

.page-hero--solid {
  background: linear-gradient(135deg, var(--primary) 0%, rgba(30, 58, 95, .80) 100%);
}

.page-hero--image {
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 35, .45);
}

.page-hero__content {
  position: relative;
  text-align: center;
}

.page-hero__content h1 {
  margin: 0 0 4px;
  font-size: 52px;
  line-height: 1.08;
  color: #ffffff;
}

.page-hero__sub {
  margin: 10px auto 0;
  max-width: 760px;
  opacity: .92;
  line-height: 1.5;
}

.page-hero__curve {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 86px;
  display: block;
  pointer-events: none;
}

.page-section {
  padding: 70px 0;
  background: #fff;
}

.page-section h2.center {
  margin-bottom: 10px;
}

.prose {
  max-width: 860px;
  margin: 0 auto;
}

.prose p {
  color: var(--muted-foreground);
}

.legal-page .page-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(200, 154, 95, 0.12), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f4f8ff 100%);
}

.legal-page__wrap {
  max-width: 1000px;
}

.legal-doc {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(15, 39, 68, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.98) 100%),
    #ffffff;
  box-shadow: 0 22px 50px rgba(11, 25, 44, 0.08);
}

.legal-doc>*:last-child {
  margin-bottom: 0;
}

.legal-doc h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.18;
  color: var(--primary-strong);
}

.legal-doc h2:not(:first-child) {
  margin-top: clamp(28px, 4vw, 42px);
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid rgba(21, 52, 91, 0.12);
}

.legal-doc p {
  margin: 0 0 14px;
  color: #4c5d75;
  font-size: 1.02rem;
  line-height: 1.78;
}

.legal-doc h2+p {
  margin-top: 14px;
}

.legal-doc ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.legal-doc li {
  position: relative;
  padding-left: 18px;
  color: #43536b;
  line-height: 1.72;
}

.legal-doc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #d7ad77 100%);
  box-shadow: 0 0 0 4px rgba(200, 154, 95, 0.12);
}

.legal-doc strong {
  color: var(--primary-strong);
}

@media (max-width: 640px) {
  .legal-page__wrap {
    padding-top: 0;
  }

  .legal-doc {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .legal-doc h2:not(:first-child) {
    margin-top: 24px;
    padding-top: 20px;
  }

  .legal-doc p,
  .legal-doc li {
    font-size: 0.98rem;
  }
}

/* =========================
   About
========================= */
.about-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

.about-intro {
  padding: 26px;
  border-radius: 18px;
}

.about-intro--premium {
  position: relative;
  padding: 40px 38px 36px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-left: 4px solid var(--primary);
  box-shadow: 0 12px 36px rgba(16, 18, 23, .06);
}

.about-intro--premium h2 {
  margin: 0 0 22px;
  font-size: 1.85rem;
  line-height: 1.2;
  color: var(--primary);
}

.about-intro--premium p {
  margin: 0 0 16px;
  color: #47556a;
  font-size: 1.05rem;
  line-height: 1.72;
}

.about-intro--premium p:last-of-type {
  margin-bottom: 0;
}

.about-intro__closing-line {
  margin-top: 24px !important;
  margin-bottom: 0 !important;
  font-size: 1.12rem !important;
  font-weight: 600;
  color: var(--primary) !important;
  line-height: 1.5;
}

.about-intro__highlight {
  background: linear-gradient(180deg, transparent 55%, rgba(166, 124, 82, .18) 55%);
  color: inherit;
  padding: 0 2px;
  font-style: normal;
}

.about-values-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-valueCard {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(16, 18, 23, .06);
}

.about-valueCard h3 {
  margin: 0 0 8px;
}

.about-valueCard p {
  margin: 0;
  color: var(--muted-foreground);
}

.about-outcomes-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-outcomeCard {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  background: #fff;
  padding: 16px;
}

.about-outcomeCard p {
  margin: 0;
  color: var(--muted-foreground);
}

.about-compare {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-compareCard {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(16, 18, 23, .06);
}

.about-compareCard h3 {
  margin: 0 0 10px;
}

.about-compareCard ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted-foreground);
}

.about-compareCard li {
  margin: 0 0 8px;
}

.about-compareCard li:last-child {
  margin-bottom: 0;
}

.about-compareCard--accent {
  border-color: rgba(166, 124, 82, .45);
  box-shadow: 0 16px 34px rgba(166, 124, 82, .15);
}

.about-cta {
  border-radius: 20px;
  background: linear-gradient(140deg, #15345b 0%, #214e84 100%);
  color: #fff;
  text-align: center;
  padding: 48px 26px;
}

.about-cta h2 {
  margin: 0;
  color: #ffffff;
  text-shadow: 0 1px 1px rgba(6, 17, 32, 0.3);
}

.about-cta p {
  margin: 14px auto 24px;
  color: rgba(255, 255, 255, .96);
  max-width: 860px;
  line-height: 1.55;
}

.about-owner {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  padding: 22px;
  border-radius: 18px;
}

.about-owner__media {
  border-radius: 14px;
  overflow: hidden;
  min-height: 220px;
  background: #eaf0fa;
}

.about-owner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-owner__body h2 {
  margin: 0;
}

.about-owner__body h3 {
  margin: 10px 0 4px;
  font-size: 1.45rem;
}

.about-owner__role {
  margin: 0 0 10px;
  font-weight: 650;
  color: #2e4f76;
}

.about-owner__body p {
  margin: 0;
  color: var(--muted-foreground);
}

@media (max-width: 980px) {
  .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-owner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {

  .about-values-grid,
  .about-outcomes-grid,
  .about-compare {
    grid-template-columns: 1fr;
  }

  .about-cta {
    padding: 34px 18px;
  }
}

@media (max-width: 520px) {
  .about-intro--premium {
    padding: 30px 20px 26px;
  }

  .about-intro--premium h2 {
    font-size: 1.55rem;
  }
}

/* Partners */
.about-partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.about-partnerCard {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.09);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
}

.about-partnerCard__avatarAndPerk {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 0 16px;
}

.about-partnerCard__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #d4b484;
  overflow: hidden;
  flex-shrink: 0;
}

.about-partnerCard__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.about-partnerCard__content {
  display: flex;
  flex-direction: column;
  padding: 0 24px 24px;
  flex-grow: 1;
}

.about-partnerCard__info {
  margin-bottom: 12px;
}

.about-partnerCard__info h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.about-partnerCard__role {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin: 0 0 3px;
  line-height: 1.4;
}

.about-partnerCard__company {
  font-weight: 600;
  color: #2e4f76;
  margin: 0;
  font-size: 0.82rem;
}

.about-partnerCard__body {
  font-size: 0.82rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  flex-grow: 1;
  text-align: left;
}

.about-partnerCard__footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
}

.about-partnerCard__link {
  font-size: 0.78rem;
  font-weight: 600;
  color: #1e3a5f;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.about-partnerContact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  border: 1px dashed rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  background: rgba(30, 58, 95, 0.02);
  grid-column: 1 / -1;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.about-partnerContact h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.about-partnerContact p {
  color: var(--muted-foreground);
  margin: 0 0 20px;
  max-width: 360px;
  font-size: 0.9rem;
}

@media (max-width: 680px) {
  .about-partners-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

/* =========================
   Contact Layout
========================= */
.contact-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.contact-left h2 {
  margin: 0 0 10px;
}

.contact-left p {
  margin: 0 0 22px;
  color: var(--muted-foreground);
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 18px 0;
}

.contact-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef1f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
}

.contact-ico svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.contact-item strong {
  display: block;
  margin-bottom: 2px;
}

.contact-item span {
  color: var(--muted-foreground);
}

.contact-card {
  padding: 18px;
  border-radius: 16px;
}

.contact-card h3 {
  margin: 6px 0 14px;
}

.contact-note {
  margin-top: 20px;
}

.contact-note h3 {
  margin: 0 0 6px;
}

.contact-note p {
  margin: 0;
  color: var(--muted-foreground);
}

.contact-alert {
  margin: 0 0 12px;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
}

.contact-alert--success {
  border: 1px solid rgba(24, 135, 72, .28);
  background: rgba(24, 135, 72, .10);
  color: #17653f;
}

.contact-alert--error {
  border: 1px solid rgba(212, 24, 61, .28);
  background: rgba(212, 24, 61, .08);
  color: #8b1029;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .10);
  outline: none;
  font: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .field {
  margin: 12px 0;
}

.contact-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #111827;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 12px;
}

@media (max-width: 920px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Blog (Index + Single)
========================= */
.post-card {
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 18, 23, .06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card--portfolio:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(16, 18, 23, .14);
}

.post-card__img {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  background: #eef1f6;
  overflow: hidden;
}

.post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.post-card--portfolio:hover .post-card__img img {
  transform: scale(1.08);
}

.post-card--portfolio .post-card__img {
  background: #e9eef7;
  aspect-ratio: 4/3;
}

.post-card--portfolio .post-card__img img {
  object-fit: cover;
  object-position: center center;
}

.post-card__body {
  padding: 16px;
}

.post-card__body h3 {
  margin: 0 0 8px;
}

.post-card__meta {
  font-size: 13px;
  color: var(--muted-foreground);
  margin-bottom: 8px;
}

.post-card__excerpt {
  margin: 0;
  color: var(--muted-foreground);
}

.loop-empty {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.loop-pagination {
  margin-top: 28px;
}

.loop-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.loop-pagination li a,
.loop-pagination li span {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  padding: 0 10px;
}

.loop-pagination li .current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.post-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.post-heroimg {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  background: #eef1f6;
}

.post-heroimg img {
  width: 100%;
  height: auto;
  display: block;
}

.post-title {
  margin: 18px 0 8px;
  font-size: 38px;
  line-height: 1.12;
}

.post-meta {
  color: var(--muted-foreground);
  font-size: 14px;
  margin-bottom: 18px;
}

.post-content p {
  color: var(--muted-foreground);
}

/* =========================
   Portfolio (CPT Archive)
========================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 980px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Services Packages (Figma)
========================= */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

@media (max-width: 980px) {
  .pkg-grid {
    grid-template-columns: 1fr;
  }
}

.pkg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, .08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(16, 18, 23, .06);
}

.pkg-card--popular {
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(16, 18, 23, .10);
}

.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  box-shadow: 0 10px 24px rgba(16, 18, 23, .12);
}

.pkg-title {
  font-size: 24px;
  font-style: normal;
  margin: 0 0 22px;
  text-align: center;
  line-height: 1.2;
}

.pkg-price {
  position: relative;
  margin: 4px 0 18px;
}

.pkg-price__blur {
  text-align: center;
  padding: 14px 0;
  filter: blur(4px);
  user-select: none;
}

.pkg-price__blur .pkg-price__val {
  font-size: 40px;
  line-height: 1;
}

.pkg-price__lock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lock-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 10px 24px rgba(16, 18, 23, .12);
  color: var(--muted-foreground);
  font-size: 13px;
}

.lock-pill svg {
  width: 16px;
  height: 16px;
  opacity: .8;
}

.pkg-features {
  list-style: none;
  padding: 0;
  flex: 1 1 auto;
  margin: 0 0 28px;
  display: grid;
  gap: 8px;
}

.pkg-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(26, 26, 26, .82);
}

.pkg-check {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 1px;
}

.pkg-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 0.92rem;
}

/* Individual services tiles (legacy) */
.svc-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 980px) {
  .svc-tiles {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .svc-tiles {
    grid-template-columns: 1fr;
  }
}

.svc-tile {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(16, 18, 23, .06);
  border: 1px solid rgba(0, 0, 0, .06);
  transition: transform .16s ease, box-shadow .16s ease;
}

.svc-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(16, 18, 23, .10);
}

.svc-tile p {
  margin: 0;
  color: var(--primary);
  font-size: 14px;
}

.svc-tile__desc {
  margin: 8px 0 0;
  color: var(--muted-foreground);
  font-size: 13px;
  line-height: 1.5;
}

/* ---- Enhanced Add-On Cards ---- */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.addon-card {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, .07);
  box-shadow: 0 8px 24px rgba(16, 18, 23, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
}

.addon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  opacity: 0;
  transition: opacity .22s ease;
}

.addon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(16, 18, 23, .12);
  border-color: rgba(200, 154, 95, .30);
}

.addon-card:hover::before {
  opacity: 1;
}

/* Center lone last card when it starts a new row (e.g. 13th in 3-col grid) */
.addon-card:last-child:nth-child(3n+1) {
  grid-column: 1 / -1;
  max-width: 33.33%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 980px) {
  .addon-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}

.addon-card__icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200, 154, 95, .14), rgba(21, 52, 91, .10));
  display: grid;
  place-items: center;
  color: var(--accent);
  transition: background .22s ease, transform .22s ease;
}

.addon-card:hover .addon-card__icon {
  background: linear-gradient(135deg, rgba(200, 154, 95, .22), rgba(21, 52, 91, .16));
  transform: scale(1.06);
}

.addon-card__icon svg {
  width: 22px;
  height: 22px;
}

.addon-card__body {
  flex: 1;
  min-width: 0;
}

.addon-card__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary-strong);
  line-height: 1.25;
}

.addon-card__desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted-foreground);
}

@media (max-width: 980px) {
  .addon-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .addon-grid {
    grid-template-columns: 1fr;
  }

  .addon-card {
    padding: 20px;
    gap: 14px;
  }

  .addon-card__icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .addon-card__icon svg {
    width: 20px;
    height: 20px;
  }
}

.page-section--secondary {
  background: var(--secondary);
}

/* =========================
   Login
========================= */
.auth-page {
  min-height: calc(100vh - 140px);
  background: var(--secondary);
  display: grid;
  place-items: center;
  padding: 42px 24px;
}

body.page-template-page-login .site-footer,
body.page-template-page-portal .site-footer,
body.page-template-admin-portal .site-footer {
  display: none;
}

.auth-page+.site-footer,
.portal-shell+.site-footer {
  display: none;
}

.auth-shell {
  width: 100%;
  max-width: 520px;
}

.auth-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 24px;
  box-shadow: 0 20px 44px rgba(16, 18, 23, .12);
  padding: 34px;
}

.auth-header {
  text-align: center;
  margin-bottom: 22px;
}

.auth-lock {
  width: 66px;
  height: 66px;
  margin: 0 auto 14px;
  border-radius: 16px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
}

.auth-lock svg {
  width: 34px;
  height: 34px;
}

.auth-header h1 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.1;
}

.auth-header p {
  margin: 0;
  color: var(--muted-foreground);
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-alert {
  margin: 0 0 14px;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(212, 24, 61, .28);
  background: rgba(212, 24, 61, .08);
  color: #8b1029;
  font-size: 14px;
}

.auth-field {
  display: grid;
  gap: 7px;
}

.auth-field label {
  font-size: 14px;
}

.auth-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: var(--input-background);
  outline: none;
  font: inherit;
}

.auth-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, .15);
}

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
}

.auth-row a {
  color: var(--primary);
}

.auth-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-foreground);
}

.auth-submit {
  width: 100%;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 12px;
}

.auth-switch {
  margin: 16px 0 0;
  text-align: center;
  color: var(--muted-foreground);
}

.auth-switch a {
  color: var(--primary);
  font-weight: 600;
}

.auth-signup {
  display: grid;
  gap: 16px;
}

.auth-signup p {
  margin: 0;
  color: var(--muted-foreground);
}

.auth-page--split {
  padding: 0;
  background: #edf0f4;
}

.auth-portalLayout {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(340px, 42%);
}

.auth-portalLayout__panel {
  display: grid;
  place-items: center;
  padding: 42px 24px;
}

.auth-card--portal {
  width: min(100%, 540px);
  border-radius: 14px;
}

.auth-portalBrand {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-align: center;
}

.auth-portalBrand img {
  display: block;
}

.auth-portalBrand strong {
  font-size: 15px;
  letter-spacing: .02em;
}

.auth-portalBrand__fallback {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: .06em;
}

.auth-optionList {
  display: grid;
  gap: 10px;
}

.auth-option {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 8px;
  padding: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.auth-option:hover {
  border-color: rgba(30, 58, 95, .34);
  box-shadow: 0 10px 26px rgba(16, 18, 23, .08);
  transform: translateY(-1px);
}

.auth-option__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #2f3f55;
}

.auth-option__icon svg {
  width: 22px;
  height: 22px;
}

.auth-option strong {
  display: block;
  font-size: 27px;
  line-height: 1.1;
}

.auth-option small {
  display: block;
  margin-top: 2px;
  color: var(--muted-foreground);
  font-size: 21px;
}

.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-field__optional {
  color: var(--muted-foreground);
  font-size: 12px;
}

.auth-signupHelp {
  margin: 0;
  color: var(--muted-foreground);
}

.auth-backLink {
  margin: 12px 0 0;
  text-align: center;
}

.auth-backLink a {
  color: var(--primary);
}

.auth-portalLayout__media {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #d3d8df;
}

/* =========================
   Portal / Dashboard
========================= */
.portal-shell {
  display: flex;
  min-height: calc(100vh - 80px);
}

.portal-sidebar {
  width: 280px;
  background: var(--sidebar);
  color: var(--sidebar-foreground);
  padding: 24px 18px;
  border-right: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  flex-direction: column;
}

.portal-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.portal-brand__logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--sidebar-primary);
  color: var(--sidebar-primary-foreground);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.portal-brand strong {
  display: block;
  line-height: 1.2;
}

.portal-brand small {
  display: block;
  font-size: 12px;
  opacity: .82;
}

.portal-nav {
  display: grid;
  gap: 6px;
}

.portal-nav a {
  color: var(--sidebar-foreground);
  text-decoration: none;
  padding: 11px 12px;
  border-radius: 12px;
  opacity: .9;
}

.portal-nav a:hover {
  background: rgba(255, 255, 255, .09);
  opacity: 1;
}

.portal-nav a.is-active {
  background: var(--sidebar-primary);
  color: var(--sidebar-primary-foreground);
  opacity: 1;
}

.portal-sidebar__footer {
  margin-top: auto;
  padding-top: 18px;
}

.portal-sidebar__footer .btn {
  width: 100%;
  justify-content: center;
}

.portal-main {
  flex: 1;
  background: var(--secondary);
}

.portal-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 24px 44px;
}

.portal-section h1 {
  margin: 0 0 8px;
  font-size: 36px;
  line-height: 1.12;
}

.portal-section .sub {
  margin: 0;
  max-width: none;
}

.portal-stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.portal-stats--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.portal-card {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 18, 23, .06);
}

.portal-card p {
  margin: 0;
  color: var(--muted-foreground);
}

.portal-card strong {
  display: block;
  margin-top: 8px;
  font-size: 34px;
  line-height: 1;
  color: var(--foreground);
}

.portal-actions {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.portal-action {
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(16, 18, 23, .06);
}

.portal-action h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.portal-action p {
  margin: 0;
  color: var(--muted-foreground);
}

.portal-action--primary {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}

.portal-action--primary p {
  color: rgba(255, 255, 255, .85);
}

.portal-tableCard {
  margin-top: 16px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 18, 23, .06);
}

.portal-tableCard__head {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.portal-tableCard__head h2 {
  margin: 0;
  font-size: 20px;
}

.portal-tableCard__head a {
  color: var(--primary);
  font-size: 14px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table th,
.table td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.table thead th {
  background: rgba(248, 249, 250, .9);
  color: var(--muted-foreground);
  font-weight: 600;
}

.table tbody tr:hover {
  background: rgba(248, 249, 250, .7);
}

.table tbody tr:last-child td {
  border-bottom: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.status-pill.is-completed {
  background: #d9fbe6;
  color: #17653f;
}

.status-pill.is-progress {
  background: #dbeafe;
  color: #1e40af;
}

.status-pill.is-scheduled {
  background: #ede9fe;
  color: #5b21b6;
}

.status-pill.is-pending {
  background: #fef3c7;
  color: #92400e;
}

.status-pill.is-cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.status-pill.is-active-order {
  background: #ccfbf1;
  color: #115e59;
}

.service-select {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-select__card {
  display: grid;
  gap: 8px;
}

.service-select__card h2 {
  margin: 0;
  font-size: 21px;
}

.service-select__card p {
  margin: 0;
}

.service-select__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.service-select__row strong {
  margin: 0;
  font-size: 22px;
  color: var(--primary);
}

.service-select__card .btn {
  margin-top: 6px;
  justify-content: center;
}

.portal-account {
  margin-top: 16px;
  display: grid;
  gap: 16px;
}

.portal-account h2 {
  margin: 0 0 10px;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.account-grid label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--muted-foreground);
}

.account-grid input {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: #f8f9fa;
  font: inherit;
}

@media (max-width: 1100px) {
  .portal-stats--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-select {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .portal-shell {
    flex-direction: column;
  }

  .portal-sidebar {
    width: 100%;
  }

  .portal-stats,
  .portal-stats--four,
  .portal-actions {
    grid-template-columns: 1fr;
  }

  .service-select {
    grid-template-columns: 1fr;
  }

  .portal-wrap {
    padding: 22px 16px 34px;
  }
}

@media (max-width: 680px) {
  .auth-card {
    padding: 26px 20px;
  }

  .auth-header h1 {
    font-size: 30px;
  }

  .auth-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .auth-grid {
    grid-template-columns: 1fr;
  }

  .auth-option strong {
    font-size: 22px;
  }

  .auth-option small {
    font-size: 17px;
  }

  .table th,
  .table td {
    padding: 11px 10px;
  }

  .account-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .auth-portalLayout {
    grid-template-columns: 1fr;
  }

  .auth-portalLayout__media {
    min-height: 260px;
  }
}

/* =========================
   UI Refresh Overrides
========================= */

.center {
  text-wrap: balance;
}

.sub {
  color: var(--muted-foreground);
  line-height: 1.65;
}

.home-main {
  background:
    linear-gradient(180deg, rgba(21, 52, 91, 0.03) 0%, rgba(21, 52, 91, 0) 22%),
    #f4f8ff;
}

.home-heroSlider {
  min-height: min(80vh, 760px);
}

.home-heroSlider__overlay {
  background:
    linear-gradient(to top, rgba(6, 14, 26, 0.90) 0%, rgba(6, 14, 26, 0.55) 40%, rgba(6, 14, 26, 0.15) 75%, transparent 100%),
    linear-gradient(105deg, rgba(8, 18, 33, 0.72) 0%, rgba(8, 18, 33, 0.22) 55%, transparent 100%),
    radial-gradient(circle at 20% 8%, rgba(200, 154, 95, 0.18), transparent 45%);
}

.home-heroSlider__content {
  padding-top: clamp(110px, 14vw, 180px);
  padding-bottom: clamp(76px, 10vw, 124px);
}

.home-heroSlider__content h1 {
  max-width: 16ch;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 1.02;
  margin-bottom: 16px;
  color: #ffffff;
}

.home-heroSlider__content p {
  max-width: 40ch;
  font-size: clamp(1.08rem, 2.2vw, 1.95rem);
  line-height: 1.36;
  color: rgba(255, 255, 255, 0.9);
}

.home-heroSlider__actions {
  margin-top: 34px;
}

.home-services {
  padding-top: 72px;
  padding-bottom: 58px;
}

.home-services__header h1 {
  font-size: clamp(2.05rem, 4.2vw, 3.6rem);
}

.home-services__header p {
  max-width: 42ch;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
}

/* Hero CTA: override global pill shape + padding for both buttons */
.home-heroSlider__actions .btn {
  border-radius: 8px;
  padding: 14px 32px;
}

.home-heroSlider__btn--primary {
  background: #0d1b2a;
  color: #ffffff;
  border: 2px solid #0d1b2a;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.30);
}

.home-heroSlider__btn--primary:hover {
  background: #162437;
  filter: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38);
}

.home-heroSlider__btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.70);
  font-weight: 400;
  box-shadow: none;
}

.home-heroSlider__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.88);
  filter: none;
}

.home-services__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-serviceCard {
  position: relative;
  border-color: rgba(15, 39, 68, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.home-serviceCard::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  background: linear-gradient(90deg, #d3a66c 0%, #1f4f83 100%);
}

.home-serviceCard:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 52, 91, 0.26);
}

.home-serviceCard:hover::after {
  transform: scaleX(1);
}

.home-serviceCard__icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  color: #1f4f83;
  background: linear-gradient(145deg, #e6efff 0%, #f5f9ff 100%);
}

.home-serviceCard h2 {
  margin-top: 20px;
  font-size: clamp(1.38rem, 2vw, 1.78rem);
}

.home-services__footer {
  margin-top: 44px;
  text-align: center;
}

.home-services__pricing {
  margin: 0 0 18px;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  font-style: italic;
  font-weight: 400;
}

.home-services__viewAll {
  display: inline-flex;
}

.home-how {
  padding: 100px 0;
  background: #ffffff;
}

.home-how__header h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
}

.home-how__grid {
  gap: 18px;
}

.home-howCard {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  border-color: rgba(15, 39, 68, 0.08);
}

.home-howCard__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #eef2f7;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 16px;
}

.home-howCard h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 10px;
  margin-top: 0;
}

.home-howCard p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* =========================
   Problem / Solution / Who
========================= */

/* btn--outline-light: rectangular ghost for dark backgrounds */
.btn--outline-light {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.50);
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 600;
  box-shadow: none;
}

.btn--outline-light:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  filter: none;
}

/* ── Problem ── */
.home-problem {
  background: #0d1b2a;
  color: #ffffff;
  padding: 100px 0;
}

.home-problem__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.home-problem h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
}

.home-problem__lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}

.home-problem__list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-problem__list li {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 28px;
  position: relative;
  text-align: left;
}

.home-problem__list li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #c9922a;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.4;
  font-family: var(--font-display);
}

.home-problem__close {
  font-size: 1.1rem;
  font-weight: 600;
  color: #c9922a;
  margin-bottom: 40px;
}

/* ── Solution ── */
.home-solution {
  background: #eef2f7;
  padding: 100px 0;
}

.home-solution__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.home-solution h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: 24px;
}

.home-solution__lead {
  font-size: 1.15rem;
  color: #4b5563;
  margin-bottom: 48px;
}

.home-solution__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
  text-align: left;
}

.home-solution__pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.home-solution__check {
  color: #c9922a;
  font-size: 1.3rem;
  font-weight: 800;
  margin-top: 2px;
  flex-shrink: 0;
}

.home-solution__pillar strong {
  font-size: 1rem;
  font-weight: 700;
  color: #0d1b2a;
  display: block;
  margin-bottom: 6px;
}

.home-solution__pillar p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}

/* ── Who We Help ── */
.home-who {
  background: #0d1b2a;
  color: #ffffff;
  padding: 100px 0;
}

.home-who__header {
  text-align: center;
  margin-bottom: 60px;
}

.home-who__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.home-who__header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.70);
}

.home-who__grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto 60px;
  align-items: start;
}

.home-who__divider {
  background: rgba(255, 255, 255, 0.15);
  width: 1px;
  min-height: 200px;
  align-self: stretch;
}

.home-who__col h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #c9922a;
  margin-bottom: 24px;
}

.home-who__col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-who__col ul li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 24px;
  position: relative;
}

.home-who__col ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #c9922a;
}

.home-who__bottom {
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .home-who__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-who__divider {
    display: none;
  }
}

@media (max-width: 600px) {
  .home-problem,
  .home-solution,
  .home-who {
    padding: 64px 0;
  }

  .home-solution__pillars {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Why Showcase
========================= */

.home-why {
  background: #eef2f7;
  padding: 100px 0;
}

.home-why__header {
  text-align: center;
  margin-bottom: 60px;
}

.home-why__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: 16px;
}

.home-why__header p {
  font-size: 1.1rem;
  color: #4b5563;
}

.home-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}

.home-why__card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-why__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #eef2f7;
  border-radius: 10px;
  color: #0d1b2a;
  flex-shrink: 0;
}

.home-why__icon svg {
  width: 22px;
  height: 22px;
}

.home-why__card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0d1b2a;
  margin: 0;
}

.home-why__card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

.home-why__cta {
  text-align: center;
}

@media (max-width: 768px) {
  .home-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .home-why__grid {
    grid-template-columns: 1fr;
  }
}

.home-start {
  padding-bottom: 92px;
}

.home-start__card {
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% -30%, rgba(200, 154, 95, 0.34), transparent 44%),
    linear-gradient(140deg, #123159 0%, #1f4e82 100%);
  box-shadow: var(--shadow-lg);
}

.home-start__card h2 {
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  color: #ffffff;
}

.home-start__card p {
  font-size: clamp(1rem, 2vw, 1.36rem);
}

.home-testimonials {
  padding: 58px 0 66px;
  background: #ffffff;
}

.home-testimonials__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.home-testimonials__header h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
}

.home-testimonials__header p {
  margin: 12px auto 0;
  max-width: 46ch;
  color: var(--muted-foreground);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.6;
}

.home-testimonials__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.tCard {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(15, 39, 68, 0.08);
  height: 100%;
}

.tCard__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
}

.tCard__who {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
}

.tCard__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(145deg, #e6efff 0%, #f7fbff 100%);
  border: 1px solid rgba(21, 52, 91, 0.12);
  display: grid;
  place-items: center;
  color: #16365b;
  font-weight: 750;
}

.tCard__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tCard__name {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.tCard__meta {
  margin-top: 2px;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.tCard__rating {
  text-align: right;
}

.tStars {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  justify-content: flex-end;
}

.tStar {
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
}

.tStar svg {
  width: 16px;
  height: 16px;
}

.tStar.is-on {
  color: #f2b01e;
}

.tStar.is-off {
  color: rgba(15, 39, 68, 0.22);
}

.tCard__source {
  margin-top: 6px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  color: var(--muted-foreground);
  font-size: 0.82rem;
}

.tCard__source span+span::before {
  content: "•";
  margin-right: 8px;
  color: rgba(15, 39, 68, 0.28);
}

.tCard__body {
  margin-top: 14px;
  flex: 1;
  overflow: hidden;
}

.tCard__body p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.65;
  color: #4b5563;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.home-testimonials__cta {
  margin-top: 40px;
  text-align: center;
}

.home-testimonials__ctaBtn {
  background: #0d1b2a;
  color: #ffffff;
  border-color: #0d1b2a;
  padding: 13px 30px;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.home-testimonials__ctaBtn:hover {
  background: #162437;
  filter: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.pBreadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 39, 68, 0.12);
  background: #fff;
  color: var(--primary);
  font-size: 14px;
  font-weight: 550;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(16, 18, 23, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  margin-bottom: 18px;
}

.pBreadcrumb:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(16, 18, 23, 0.10);
  border-color: rgba(15, 39, 68, 0.22);
}

.pBreadcrumb svg {
  flex-shrink: 0;
}

/* =========================
   Masonry Gallery
========================= */
.pMasonry {
  columns: 3;
  column-gap: 16px;
  margin-bottom: 32px;
}

.pMasonry__item {
  margin: 0 0 16px;
  break-inside: avoid;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #e9eef7;
  box-shadow: 0 6px 20px rgba(16, 18, 23, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pMasonry__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(16, 18, 23, 0.16);
}

.pMasonry__img,
.pMasonry__video {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.pMasonry__item:hover .pMasonry__img,
.pMasonry__item:hover .pMasonry__video {
  transform: scale(1.04);
}

.pMasonry__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.pMasonry__item:hover .pMasonry__overlay {
  opacity: 1;
}

.pMasonry__overlay svg {
  color: #fff;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.pMasonry__full {
  display: none;
}

@media (max-width: 980px) {
  .pMasonry {
    columns: 2;
    column-gap: 14px;
  }

  .pMasonry__item {
    margin-bottom: 14px;
  }
}

@media (max-width: 560px) {
  .pMasonry {
    columns: 1;
    column-gap: 0;
  }

  .pMasonry__item {
    margin-bottom: 12px;
    border-radius: 12px;
  }
}

/* =========================
   Masonry Lightbox
========================= */
.pLightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(6, 12, 22, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
}

.pLightbox[aria-hidden="false"] {
  display: flex;
}

.pLightbox__img {
  max-width: min(92vw, 1400px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transition: opacity 0.25s ease;
}

.pLightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.pLightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.06);
}

.pLightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.pLightbox__nav:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.06);
}

.pLightbox__nav--prev {
  left: 20px;
}

.pLightbox__nav--next {
  right: 20px;
}

.pLightbox__counter {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 550;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .pLightbox {
    padding: 16px;
  }

  .pLightbox__nav {
    width: 42px;
    height: 42px;
  }

  .pLightbox__nav--prev {
    left: 10px;
  }

  .pLightbox__nav--next {
    right: 10px;
  }

  .pLightbox__close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .pLightbox__img {
    max-height: 75vh;
  }
}

.pSlider {
  border: 1px solid rgba(15, 39, 68, 0.11);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 14px;
}

/* Full-width variant — edge-to-edge cinematic gallery */
.pSlider--full {
  border: none;
  border-radius: 0;
  background: #0d1520;
  box-shadow: none;
  padding: 0;
  margin-bottom: 32px;
}

.pSlider__stage {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #eef3fb;
}

.pSlider--full .pSlider__stage {
  border-radius: 0;
  background: #0d1520;
}

.pSlider__slides {
  position: relative;
  min-height: 480px;
  max-height: 70vh;
}

.pSlider--full .pSlider__slides {
  min-height: 420px;
  max-height: 75vh;
}

.pSlider__slide {
  margin: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 0.4s ease, transform 0.8s ease;
  display: grid;
  place-items: center;
  background: #e9eef7;
}

.pSlider--full .pSlider__slide {
  background: #0d1520;
}

.pSlider__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.pSlider__slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* Navigation arrows */
.pSlider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(11, 21, 37, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.pSlider__nav:hover {
  background: rgba(11, 21, 37, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.06);
}

.pSlider__nav--prev {
  left: 16px;
}

.pSlider__nav--next {
  right: 16px;
}

.pSlider__nav svg {
  width: 24px;
  height: 24px;
}

.pSlider__nav span {
  font-size: 30px;
  line-height: 1;
  margin-top: -2px;
}

/* Image counter badge */
.pSlider__counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 4;
  background: rgba(11, 21, 37, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

/* Thumbnail bar (full-width variant wraps thumbs in a container) */
.pSlider__bar {
  background: rgba(15, 25, 42, 0.92);
  padding: 14px var(--pad);
}

.pSlider__thumbs {
  margin: 0 auto;
  max-width: var(--container);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 90px;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

.pSlider:not(.pSlider--full) .pSlider__bar {
  background: transparent;
  padding: 0;
}

.pSlider:not(.pSlider--full) .pSlider__thumbs {
  margin-top: 12px;
  grid-auto-columns: 84px;
}

.pThumb {
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.pSlider:not(.pSlider--full) .pThumb {
  border-color: rgba(15, 39, 68, 0.14);
  background: #ffffff;
}

.pThumb img {
  width: 100%;
  height: 62px;
  object-fit: cover;
  display: block;
  border-radius: 7px;
}

.pThumb:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.40);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.pSlider:not(.pSlider--full) .pThumb:hover {
  border-color: rgba(21, 52, 91, 0.28);
  box-shadow: 0 10px 20px rgba(16, 18, 23, 0.08);
}

.pThumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(190, 143, 85, 0.22);
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .pSlider__slides {
    min-height: 280px;
    max-height: 60vh;
  }

  .pSlider--full .pSlider__slides {
    min-height: 240px;
    max-height: 55vh;
  }

  .pSlider__nav {
    width: 42px;
    height: 42px;
  }

  .pSlider__nav--prev {
    left: 10px;
  }

  .pSlider__nav--next {
    right: 10px;
  }

  .pSlider__nav svg {
    width: 20px;
    height: 20px;
  }

  .pSlider__counter {
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    padding: 5px 10px;
  }

  .pSlider__thumbs {
    grid-auto-columns: 72px;
  }

  .pThumb img {
    height: 52px;
  }
}



.slm-lightbox__video {
  max-width: min(94vw, 1500px);
  max-height: 80vh;
  outline: none;
  border-radius: 4px;
  background: #000;
}

.slm-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 100000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.slm-lightbox.is-open {
  display: flex;
}

.slm-lightbox__img {
  max-width: min(94vw, 1500px);
  max-height: 80vh;
  object-fit: contain;
}

.slm-lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  background: none;
  border: none;
}

.slm-lightbox__controls {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.slm-lightbox__btn {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.96rem;
}

.slm-lightbox__indicator {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

@media (max-width: 640px) {

  .slm-lightbox__video {
    max-width: 96vw;
    max-height: 70vh;
  }

  .slm-lightbox__controls {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.page-hero {
  padding-top: clamp(78px, 10vw, 118px);
  padding-bottom: clamp(72px, 8vw, 100px);
}

.page-hero--solid {
  background:
    radial-gradient(circle at 16% 14%, rgba(200, 154, 95, 0.28), transparent 44%),
    linear-gradient(135deg, #123159 0%, #1f4f83 100%);
}

.page-hero__content h1 {
  font-size: clamp(2rem, 4.5vw, 4.1rem);
  margin-bottom: 8px;
  color: #ffffff;
}

.page-hero__sub {
  font-size: clamp(1rem, 1.65vw, 1.34rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.page-section {
  padding: clamp(54px, 7vw, 90px) 0;
}

.page-section--secondary {
  background: #f6f9ff;
}

.about-valueCard,
.about-outcomeCard,
.about-compareCard,
.contact-card,
.contact-note,
.post-card,
.pkg-card,
.svc-tile,
.auth-card,
.portal-card,
.portal-action,
.portal-tableCard {
  border-color: rgba(15, 39, 68, 0.11);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.about-valueCard:hover,
.about-outcomeCard:hover,
.post-card:hover,
.svc-tile:hover,
.portal-action:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.auth-field input,
.account-grid input {
  border-color: rgba(15, 39, 68, 0.18);
  background: #fbfdff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.auth-field input:focus,
.account-grid input:focus {
  border-color: rgba(21, 52, 91, 0.38);
  box-shadow: 0 0 0 4px rgba(21, 52, 91, 0.12);
  outline: 0;
}

.post-card__body h3 {
  font-size: 1.27rem;
}

.pkg-card--popular {
  background:
    linear-gradient(180deg, rgba(211, 166, 108, 0.09) 0%, rgba(255, 255, 255, 0.96) 55%),
    #ffffff;
}

.auth-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(200, 154, 95, 0.16), transparent 35%),
    #f4f8ff;
}

.auth-option {
  border-color: rgba(15, 39, 68, 0.11);
}

.auth-option:hover {
  border-color: rgba(21, 52, 91, 0.32);
}

.portal-main {
  background:
    linear-gradient(180deg, rgba(21, 52, 91, 0.03) 0%, rgba(21, 52, 91, 0) 25%),
    #f4f8ff;
}

.portal-sidebar {
  background:
    radial-gradient(circle at 8% 8%, rgba(200, 154, 95, 0.2), transparent 35%),
    linear-gradient(180deg, #122d4d 0%, #0f2440 100%);
}

.table thead th {
  background: #eef3fb;
}

.table tbody tr:hover {
  background: #f8fbff;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease var(--reveal-delay, 0ms),
    transform 0.5s ease var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .home-services__grid,
  .home-how__grid,
  .home-testimonials__grid,
  .pkg-grid,
  .svc-tiles {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero__curve {
    bottom: -1px;
    pointer-events: none;
  }
}

@media (max-width: 640px) {

  .home-services__grid,
  .home-how__grid,
  .home-testimonials__grid,
  .pkg-grid,
  .svc-tiles {
    grid-template-columns: 1fr;
  }

  .home-heroSlider__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   Conversion + Portal Pass
========================= */

.home-heroSlider__trust {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-heroSlider__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(6, 12, 24, 0.60);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.88rem;
  font-weight: 560;
  backdrop-filter: blur(4px);
}

.home-heroSlider__trust li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d3a66c;
}

/* Tagline override — must beat .home-heroSlider__content p which sets large font-size */
.home-heroSlider__content .home-heroSlider__tagline,
.home-heroSlider__tagline {
  font-family: var(--font-sans) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.18em !important;
  color: rgba(255, 255, 255, 0.55) !important;
  text-transform: uppercase !important;
  margin-top: 20px !important;
  margin-bottom: 8px !important;
  display: block !important;
  line-height: 1.4 !important;
  max-width: none !important;
}

/* GSAP hero animation: hide elements before JS reveal */
.js-hero-title,
.js-hero-sub,
.js-hero-actions,
.js-hero-tagline,
.js-hero-trust {
  visibility: hidden;
  will-change: transform, opacity;
}

.js-hero-title .word-wrap {
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
}

.js-hero-title .word {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
}

.page-section--compact {
  padding-top: 36px;
  padding-bottom: 36px;
}

.services-proof {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.services-proof li {
  border: 1px solid rgba(15, 39, 68, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  padding: 12px 14px;
  font-size: 0.95rem;
  color: #244568;
  font-weight: 560;
}

.portal-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.portal-toolbar__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(20, 49, 84, 0.15);
  background: rgba(255, 255, 255, 0.75);
  color: #1f4267;
  font-size: 0.86rem;
  font-weight: 600;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.portal-toolbar__pill:hover {
  border-color: rgba(20, 49, 84, 0.35);
}

.portal-toolbar__pill.is-active {
  background: rgba(20, 49, 84, 0.14);
  border-color: rgba(20, 49, 84, 0.25);
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 16px 14px;
}

.table-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 16px;
  margin: 0 0 10px;
}

.table-control {
  display: grid;
  gap: 5px;
  min-width: 180px;
}

.table-control label {
  font-size: 0.77rem;
  font-weight: 600;
  color: #4c6381;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.table-control input,
.table-control select {
  width: 100%;
  height: 40px;
  padding: 8px 11px;
  border-radius: 10px;
  border: 1px solid rgba(20, 49, 84, 0.18);
  background: #ffffff;
  color: #173457;
  font: inherit;
}

.table-control input:focus,
.table-control select:focus {
  outline: 0;
  border-color: rgba(20, 49, 84, 0.44);
  box-shadow: 0 0 0 4px rgba(20, 49, 84, 0.12);
}

.table-control--action {
  align-self: end;
}

.table-reset {
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  box-shadow: none;
}

.table-controls.is-disabled {
  opacity: 0.72;
}

.table-controls.is-disabled input,
.table-controls.is-disabled select,
.table-controls.is-disabled button {
  cursor: not-allowed;
}

.table-controls__note {
  width: 100%;
  margin: 0;
  color: #4f6683;
  font-size: 0.85rem;
}

.table-controls--server .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.portal-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: space-between;
  padding: 6px 16px 16px;
}

.portal-pagination__summary {
  margin: 0;
  color: #4f6683;
  font-size: 0.9rem;
}

.portal-pagination__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.portal-pagination__page {
  font-size: 0.88rem;
  color: #173457;
  font-weight: 600;
}

.btn.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.order-detail {
  display: grid;
  gap: 14px;
  padding: 0 16px 16px;
}

.order-detail__summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.order-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.order-detail__items {
  margin: 0;
  padding-left: 18px;
}

.order-detail__items li {
  margin: 0 0 4px;
}

.order-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.order-timeline li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(20, 49, 84, 0.1);
}

.order-timeline li:last-child {
  border-bottom: 0;
}

.order-timeline span {
  color: #4f6683;
}

.muted {
  color: #7b8da5;
}

.notifications-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 16px 10px;
}

.portal-notice {
  margin: 0;
  padding: 9px 11px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.portal-notice--ok {
  background: rgba(0, 163, 42, 0.12);
  color: #0b6b27;
}

.portal-notice--warn {
  background: rgba(219, 166, 23, 0.14);
  color: #7b5b00;
}

.notif-pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(20, 49, 84, 0.14);
  background: #f3f6fb;
  color: #244669;
}

.notif-pill.is-sent {
  background: rgba(0, 163, 42, 0.12);
  color: #0b6b27;
  border-color: rgba(0, 163, 42, 0.2);
}

.notif-pill.is-failed-send,
.notif-pill.is-skipped-invalid-recipient,
.notif-pill.is-skipped-empty-body {
  background: rgba(214, 54, 56, 0.12);
  color: #8a1f21;
  border-color: rgba(214, 54, 56, 0.22);
}

.notif-pill.is-skipped-disabled {
  background: rgba(219, 166, 23, 0.14);
  color: #7b5b00;
  border-color: rgba(219, 166, 23, 0.25);
}

@media (max-width: 900px) {
  .order-detail__summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-detail__grid {
    grid-template-columns: 1fr;
  }
}

.service-mediaCard video,
.service-mediaCard iframe {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #0d1c2f;
  border: 0;
}

.service-mediaCard video {
  object-fit: cover;
}

.service-finalCta h2 {
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.service-finalCta p {
  max-width: 62ch;
}

.service-overview--single {
  grid-template-columns: 1fr;
}

.service-overview--single>div:first-child {
  max-width: 74ch;
}

.service-gallery {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-gallery .service-mediaCard {
  min-height: 220px;
}

.service-gallery .service-mediaCard img,
.service-gallery .service-mediaCard video,
.service-gallery .service-mediaCard iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.service-gallery .service-mediaCard img,
.service-gallery .service-mediaCard video {
  object-fit: cover;
}

.service-finalCta h2 {
  color: #ffffff;
}

.portal-tableCard {
  overflow: hidden;
}

.portal-tableCard__head {
  padding: 18px 18px 12px;
}

.table {
  min-width: 920px;
}

.table th,
.table td {
  white-space: nowrap;
}

.table th:nth-child(3),
.table td:nth-child(3),
.table th:nth-child(4),
.table td:nth-child(4) {
  white-space: normal;
  min-width: 240px;
}

@media (max-width: 980px) {
  .services-proof {
    grid-template-columns: 1fr;
  }

  .table-control {
    min-width: 160px;
  }

  .table {
    min-width: 760px;
  }

  .service-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-videoGrid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .service-gallery {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   Services Page — svc-* design system
   ================================================================ */

/* --- Page Hero --- */
.svc-hero {
  background: linear-gradient(135deg, #0d1b2a 0%, #15345b 100%);
  padding: 88px 0 80px;
  text-align: center;
}

.svc-hero__content {
  max-width: 860px;
  margin: 0 auto;
}

.svc-hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
  display: block;
}

.svc-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 auto 22px;
}

.svc-hero__sub {
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.65;
}

/* --- Sections --- */
.svc-section {
  padding: 80px 0;
}

.svc-section--alt {
  background: #eef2f7;
}

.svc-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.svc-section__header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem) !important;
  font-weight: 800 !important;
  color: #0d1b2a !important;
  margin: 0 0 12px !important;
  letter-spacing: -0.02em;
}

.svc-section__header p {
  font-size: 1.04rem;
  color: #5a6a7e;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.65;
}

.svc-section__note {
  text-align: center;
  font-size: 0.82rem;
  color: #7a8a9e;
  margin-top: 28px;
}

/* --- Grid --- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.svc-grid--2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

/* 5-card grid: 3-col top row, 2-col bottom row centered */
.svc-grid--5 {
  grid-template-columns: repeat(6, 1fr);
}

.svc-grid--5 .svc-card:nth-child(1) { grid-column: span 2; }
.svc-grid--5 .svc-card:nth-child(2) { grid-column: span 2; }
.svc-grid--5 .svc-card:nth-child(3) { grid-column: span 2; }
.svc-grid--5 .svc-card:nth-child(4) { grid-column: 2 / span 2; }
.svc-grid--5 .svc-card:nth-child(5) { grid-column: 4 / span 2; }

/* --- Cards --- */
.svc-card {
  background: #fff;
  border: 1px solid rgba(15, 39, 68, 0.12);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13, 27, 42, 0.12);
}

.svc-section--alt .svc-card {
  background: #fff;
}

.svc-card--popular {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(201, 146, 47, 0.07) 0%, #fff 52%);
}

.svc-card__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.svc-card__name {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #0d1b2a !important;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.svc-card__desc {
  font-size: 0.91rem;
  color: #5a6a7e;
  line-height: 1.65;
  margin: 0 0 20px;
}

.svc-card__label {
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7a8a9e;
  margin: 0 0 0.5rem;
}

.svc-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.svc-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: #2d3e52;
  line-height: 1.5;
}

.svc-card__features svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--accent);
}

.svc-card__cta {
  margin-top: 1rem;
}

.svc-card--assistance {
  height: 100%;
}

.svc-card--assistance .svc-card__cta {
  margin-top: auto;
}

.svc-card--assistance .svc-card__features li {
  margin-bottom: 0.3rem;
}

/* --- Responsive --- */
@media (max-width: 980px) {
  .svc-grid,
  .svc-grid--2col {
    grid-template-columns: 1fr 1fr;
  }

  .svc-grid--5 {
    grid-template-columns: 1fr 1fr;
  }

  .svc-grid--5 .svc-card:nth-child(1),
  .svc-grid--5 .svc-card:nth-child(2),
  .svc-grid--5 .svc-card:nth-child(3),
  .svc-grid--5 .svc-card:nth-child(4),
  .svc-grid--5 .svc-card:nth-child(5) {
    grid-column: span 1;
  }

  .svc-grid--5 .svc-card:nth-child(5):last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 580px) {
  .svc-grid,
  .svc-grid--2col,
  .svc-grid--5 {
    grid-template-columns: 1fr;
  }

  .svc-grid--5 .svc-card {
    grid-column: span 1 !important;
  }

  .svc-hero {
    padding: 64px 0 56px;
  }

  .svc-section {
    padding: 60px 0;
  }

}



/* --- Our Services Card Grid --- */
.svc-core-cards {
  background: #EEF2F7;
  padding: 80px 20px;
}

.svc-core-cards .svc-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.svc-core-cards .svc-section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #0D1B2A;
  margin-bottom: 12px;
}

.svc-core-cards .svc-section__header p {
  font-family: var(--font-sans);
  color: #555;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* 5-card grid: 3 top row, 2 centred on bottom */
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Cards 4 & 5 are placed explicitly in the 3-col grid so the bottom row appears centred */


/* Centred bottom-row: shift card 4 into column 1 of a 3-col row so the pair is centred */
.svc-cards-grid .svc-card:nth-child(4) { grid-column: 1; }
.svc-cards-grid .svc-card:nth-child(5) { grid-column: 2; }

/* Individual card */
.svc-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 26px rgba(16, 18, 23, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(16, 18, 23, 0.10);
  border-color: rgba(30, 58, 95, 0.24);
}

/* Icon — matches homepage .home-serviceCard__icon exactly */
.svc-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: #eef1f6;
  color: #2d4a6f;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-bottom: 18px;
}

.svc-card__icon svg {
  width: 27px;
  height: 27px;
}

.svc-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0D1B2A;
  line-height: 1.3;
  margin: 0 0 10px;
}

.svc-card__body {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 20px;
  flex: 1;
}

/* Pill CTA */
.svc-card__btn {
  display: inline-block;
  align-self: flex-start;
  padding: 8px 20px;
  border: 1.5px solid #0D1B2A;
  color: #0D1B2A;
  background: transparent;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}

.svc-card__btn:hover {
  background: #0D1B2A;
  color: #fff;
}

/* Responsive: tablet — 2 columns */
@media (max-width: 900px) {
  .svc-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .svc-cards-grid .svc-card:nth-child(4),
  .svc-cards-grid .svc-card:nth-child(5) {
    grid-column: auto;
  }
  /* Last card (5th) centred if it's alone */
  .svc-cards-grid .svc-card:nth-child(5):last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 12px);
    margin: 0 auto;
  }
}

/* Responsive: mobile — 1 column */
@media (max-width: 600px) {
  .svc-core-cards {
    padding: 60px 16px;
  }
  .svc-cards-grid {
    grid-template-columns: 1fr;
  }
  .svc-cards-grid .svc-card:nth-child(5):last-child {
    max-width: 100%;
    grid-column: auto;
  }
}



/* --- Why Choose Us --- */
.svc-why__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.svc-why__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0D1B2A;
}

.svc-why__list li svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #C9922A;
}

.svc-why__location {
  text-align: center;
  font-size: 0.85rem;
  color: #718096;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* --- Final CTA --- */

.svc-final-cta {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
  padding: 100px 0;
  text-align: center;
}

.svc-final-cta .container {
  max-width: 700px;
}

.svc-final-cta h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.svc-final-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  line-height: 1.6;
}

.svc-final-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.svc-final-cta__primary {
  background: #c9922a;
  color: #fff;
  border: 2px solid #c9922a;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.svc-final-cta__primary:hover {
  background: #b07d20;
  border-color: #b07d20;
  color: #fff;
}

.svc-final-cta__secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s;
}

.svc-final-cta__secondary:hover {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 600px) {
  .svc-final-cta__btns {
    flex-direction: column;
    align-items: center;
  }

  .svc-final-cta__primary,
  .svc-final-cta__secondary {
    width: 100%;
    max-width: 300px;
  }
}

/* ================================================================
   About Page — Redesign
   ================================================================ */

/* --- Section 1: Hero --- */
.about-hero {
  background: #0d1b2a;
  padding: 100px 0 96px;
  text-align: center;
}

.about-hero__content {
  max-width: 860px;
  margin: 0 auto;
}

.about-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 auto 28px;
}

.about-hero__sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin: 0 auto;
  max-width: 780px;
}

/* --- Section 2: Our Story --- */
.about-story {
  background: #eef2f7;
  padding: 88px 0;
}

.about-story__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-story__title {
  font-size: clamp(2rem, 4vw, 2.8rem) !important;
  font-weight: 700 !important;
  color: #0d1b2a !important;
  margin: 0 0 28px !important;
  letter-spacing: -0.02em;
}

.about-story__body {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: #3d4f62;
  line-height: 1.78;
  margin: 0 auto 20px;
  max-width: 750px;
}

.about-story__accent-list {
  list-style: none;
  padding: 0;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 360px;
}

.about-story__accent-list li {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: #c9922a;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 146, 42, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.2;
  width: 100%;
  justify-content: center;
}

.about-story__accent-list li:last-child {
  border-bottom: none;
}

.about-story__accent-list li::before {
  content: '→';
  font-size: 1.1em;
  opacity: 0.55;
  flex-shrink: 0;
}

/* --- Section 3: What We Believe --- */
.about-belief {
  background: #0d1b2a;
  padding: 88px 0;
  text-align: center;
}

.about-belief__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 auto 12px !important;
  max-width: 720px;
  line-height: 1.2;
}

.about-belief__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 44px;
}

.about-belief__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

.about-belief__card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.about-belief__card-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(201, 146, 42, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9922a;
}

.about-belief__card-icon svg {
  width: 20px;
  height: 20px;
}

.about-belief__card p {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0d1b2a;
  margin: 0;
  padding-top: 8px;
  line-height: 1.45;
}

.about-belief__closing {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.72;
}

.about-belief__cta {
  display: inline-block;
  background: #c9922a;
  color: #0d1b2a;
  border: 2px solid #c9922a;
  padding: 15px 40px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.about-belief__cta:hover {
  background: #b07d20;
  border-color: #b07d20;
  color: #0d1b2a;
}

/* --- Section 4: Meet the Founder --- */
.about-founder {
  background: #eef2f7;
  padding: 88px 0;
}

.about-founder__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-founder__media img {
  width: 100%;
  max-width: 480px;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: block;
}

.about-founder__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9922a;
  margin: 0 0 14px;
}

.about-founder__name {
  font-size: clamp(2rem, 3.5vw, 2.8rem) !important;
  font-weight: 800 !important;
  color: #0d1b2a !important;
  margin: 0 0 8px !important;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about-founder__role {
  font-size: 1rem;
  color: #7a8a9e;
  margin: 0 0 28px;
}

.about-founder__bio {
  font-size: clamp(1rem, 1.8vw, 1.05rem);
  color: #3d4f62;
  line-height: 1.82;
  margin: 0;
}

/* --- Section 5: Our Approach --- */
.about-approach {
  background: #0d1b2a;
  padding: 88px 0;
}

.about-approach__title {
  font-size: clamp(2rem, 4vw, 2.8rem) !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-align: center;
  margin: 0 0 48px !important;
}

.about-approach__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-approach__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid #c9922a;
  border-radius: 12px;
  padding: 28px 28px 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: background 0.22s ease;
}

.about-approach__card:hover {
  background: rgba(255, 255, 255, 0.07);
}

.about-approach__card-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: rgba(201, 146, 42, 0.32);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

.about-approach__card p {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  line-height: 1.55;
  padding-top: 4px;
}

/* --- Section 6: Partners --- */
.about-partners {
  background: #eef2f7;
  padding: 88px 0;
}

.about-partners__header {
  text-align: center;
  margin-bottom: 48px;
}

.about-partners__header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem) !important;
  font-weight: 700 !important;
  color: #0d1b2a !important;
  margin: 0 0 12px !important;
  letter-spacing: -0.02em;
}

.about-partners__header p {
  font-size: 1.05rem;
  color: #5a6a7e;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

.about-partners__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 24px;
}

.about-partner-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
}

.about-partner-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.about-partner-card__avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.about-partner-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-partner-card__info {
  flex: 1;
  min-width: 0;
}

.about-partner-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #0d1b2a !important;
  margin: 0 0 3px !important;
}

.about-partner-card__role {
  font-size: 0.875rem;
  color: #c9922a;
  font-weight: 600;
  margin: 0 0 2px;
  line-height: 1.4;
}

.about-partner-card__company {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
}

.about-partner-card__desc {
  font-size: 0.95rem;
  color: #0d1b2a;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.about-partner-card__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0d1b2a;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(201, 146, 42, 0.45);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.about-partner-card__link:hover {
  color: #c9922a;
  border-color: #c9922a;
}

/* Org/logo partner cards (Modern Florida + realMLS) */
.about-partner-card--org { align-items: flex-start; }

.about-partner-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9922a;
  background: rgba(201, 146, 42, 0.12);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 1rem;
}

.about-partner-card__logo {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.about-partner-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Become a Partner block */
.about-partners__cta {
  background: #fff;
  border: 1px solid rgba(15, 39, 68, 0.12);
  border-radius: 16px;
  padding: 44px;
  text-align: center;
}

.about-partners__cta h3 {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #0d1b2a !important;
  margin: 0 0 12px !important;
}

.about-partners__cta p {
  font-size: 1.02rem;
  color: #5a6a7e;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.about-partners__cta-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid #0d1b2a;
  border-radius: 8px;
  color: #0d1b2a;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.about-partners__cta-btn:hover {
  background: #c9922a;
  border-color: #c9922a;
  color: #fff;
}

/* --- Directional reveal variants (founder section) --- */
.js-reveal-left.reveal {
  transform: translateX(-32px);
}

.js-reveal-right.reveal {
  transform: translateX(32px);
}

.js-reveal-left.reveal.is-visible,
.js-reveal-right.reveal.is-visible {
  transform: translateX(0);
  opacity: 1;
}

/* --- Responsive --- */
@media (max-width: 980px) {
  .about-belief__cards {
    grid-template-columns: 1fr 1fr;
  }

  .about-founder__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-founder__media img {
    height: 380px;
    max-width: 100%;
  }

  .about-partners__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 72px 0 64px;
  }

  .about-story,
  .about-belief,
  .about-founder,
  .about-approach,
  .about-partners {
    padding: 64px 0;
  }

  .about-belief__cards,
  .about-approach__cards {
    grid-template-columns: 1fr;
  }

  .about-partners__cta {
    padding: 32px 24px;
  }
}

/* ================================================================
   Portfolio Page — port-* design system
   ================================================================ */

/* --- Section 1: Hero --- */
.port-hero {
  background: #0d1b2a;
  padding: 100px 0 80px;
  text-align: center;
}

.port-hero__content {
  max-width: 820px;
  margin: 0 auto;
}

.port-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 24px;
}

.port-hero__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin: 0 auto 20px;
  max-width: 680px;
}

.port-hero__trust {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #c9922a;
  letter-spacing: 0.04em;
}

/* --- Section 2: Featured --- */
.port-featured {
  background: #0d1b2a;
  padding: 0 0 72px;
}

.port-featured__eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #c9922a;
  margin: 0 0 16px;
}

.port-featured__frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  max-height: 560px;
}

.port-featured__frame img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

.port-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.88) 0%, rgba(13, 27, 42, 0.2) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
}

.port-featured__overlay-inner {
  padding: 28px 32px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.port-featured__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.port-featured__cat {
  display: inline-block;
  background: #c9922a;
  color: #0d1b2a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
}

.port-featured__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.port-featured__badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.port-featured__badge {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

/* --- Section 3: Grid --- */
.port-grid-section {
  background: #eef2f7;
  padding: 80px 0;
}

.port-grid-section__title {
  font-size: clamp(2rem, 4vw, 2.8rem) !important;
  font-weight: 700 !important;
  color: #0d1b2a !important;
  text-align: center;
  margin: 0 0 40px !important;
  letter-spacing: -0.02em;
}

/* Filter bar */
.port-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}

.port-filter {
  background: #fff;
  border: 1.5px solid #0d1b2a;
  color: #0d1b2a;
  border-radius: 999px;
  padding: 8px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.port-filter:hover {
  border-color: #c9922a;
  color: #c9922a;
}

.port-filter--active {
  background: #c9922a;
  border-color: #c9922a;
  color: #0d1b2a;
}

/* Masonry grid */
.port-masonry {
  columns: 3;
  column-gap: 1.25rem;
}

/* Cards */
.port-card {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.port-card__img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.port-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.9) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
}

.port-card:hover .port-card__overlay {
  opacity: 1;
}

.port-card__overlay-body {
  padding: 16px;
  width: 100%;
}

.port-card__cat {
  display: inline-block;
  background: #c9922a;
  color: #0d1b2a;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.port-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.3;
}

.port-card__metrics {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.port-card__metric {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}

/* --- Admin Panel --- */
.port-admin {
  display: none;
  background: #f8fafc;
  border-top: 3px solid #c9922a;
  padding: 48px 0;
}

.port-admin.is-open {
  display: block;
}

.port-admin__inner {
  max-width: 900px;
  margin: 0 auto;
}

.port-admin__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.port-admin__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0d1b2a;
  margin: 0;
}

.port-admin__close {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #6b7280;
  line-height: 1;
  padding: 4px 8px;
}

.port-admin__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 4px;
  margin-bottom: 24px;
}

.port-admin__row {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(15, 39, 68, 0.1);
  border-radius: 10px;
  padding: 12px;
}

.port-admin__thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.port-admin__fields {
  flex: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.port-admin__input,
.port-admin__select {
  flex: 1;
  min-width: 140px;
  padding: 8px 10px;
  border: 1px solid rgba(15, 39, 68, 0.18);
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: #0d1b2a;
  background: #fff;
}

.port-admin__input:focus,
.port-admin__select:focus {
  outline: none;
  border-color: #c9922a;
  box-shadow: 0 0 0 3px rgba(201, 146, 42, 0.14);
}

.port-admin__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.port-admin__save {
  background: #c9922a;
  color: #0d1b2a;
  border: 2px solid #c9922a;
  padding: 11px 28px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}

.port-admin__save:hover {
  background: #b07d20;
  border-color: #b07d20;
}

.port-admin__reset {
  background: transparent;
  color: #0d1b2a;
  border: 2px solid #0d1b2a;
  padding: 11px 28px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.port-admin__reset:hover {
  border-color: #c9922a;
  color: #c9922a;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .port-masonry {
    columns: 2;
  }

  .port-featured__overlay-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .port-featured__badges {
    align-items: flex-start;
  }
}

@media (max-width: 580px) {
  .port-hero {
    padding: 72px 0 60px;
  }

  .port-masonry {
    columns: 1;
  }

  .port-featured {
    padding-bottom: 52px;
  }

  .port-featured__overlay-inner {
    padding: 20px;
  }

  .port-admin__fields {
    flex-direction: column;
  }

  .port-admin__actions {
    flex-direction: column;
  }

  .port-admin__save,
  .port-admin__reset {
    width: 100%;
  }
}

/* ================================================================
   CONTACT PAGE — ctc-*
   ================================================================ */

/* ── Section 1: Hero ─────────────────────────────────────────── */
.ctc-hero {
  background: #0d1b2a;
  padding: 100px 0 80px;
  text-align: center;
}

.ctc-hero__h1 {
  font-family: Outfit, sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.1;
}

.ctc-hero__sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Section 2: Contact Split ────────────────────────────────── */
.ctc-split {
  background: #eef2f7;
  padding: 88px 0;
}

.ctc-split__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Left — info */
.ctc-info__h2 {
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #0d1b2a;
  margin: 0 0 16px;
}

.ctc-info__body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0d1b2a;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 32px;
}

.ctc-info__block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ctc-info__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.ctc-info__label {
  display: block;
  font-family: Outfit, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #0d1b2a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.ctc-info__value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0d1b2a;
  font-size: 1rem;
  text-decoration: none;
  display: block;
}

a.ctc-info__value:hover {
  color: #c9922a;
}

.ctc-response {
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  border-left: 4px solid #c9922a;
}

.ctc-response__title {
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0d1b2a;
  margin: 0 0 8px;
}

.ctc-response__body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #5a6a7e;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* Right — form card */
.ctc-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.ctc-form-card__title {
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #0d1b2a;
  margin: 0 0 1.5rem;
}

.ctc-label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: #0d1b2a;
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.ctc-optional {
  font-weight: 400;
  color: #9ca3af;
}

.ctc-input {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e5e9f0;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #0d1b2a;
  background: #fff;
  box-sizing: border-box;
  margin-bottom: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.ctc-input:focus {
  outline: none;
  border-color: #c9922a;
}

.ctc-textarea {
  resize: vertical;
  min-height: 130px;
}

.ctc-submit {
  display: block;
  width: 100%;
  background: #c9922a;
  color: #0d1b2a;
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
  transition: background 0.2s;
}

.ctc-submit:hover {
  background: #b07d20;
}

.ctc-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.ctc-alert--success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.ctc-alert--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ── Section 3: Three Quick Options ─────────────────────────── */
.ctc-options {
  background: #0d1b2a;
  padding: 88px 0;
}

.ctc-options__h2 {
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #fff;
  text-align: center;
  margin: 0 0 48px;
}

.ctc-options__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ctc-option-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.ctc-option-card__icon {
  display: block;
  margin-bottom: 1rem;
}

.ctc-option-card__title {
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 8px;
}

.ctc-option-card__body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0 0 16px;
  line-height: 1.5;
}

.ctc-option-card__link {
  font-family: Outfit, sans-serif;
  font-weight: 600;
  color: #c9922a;
  text-decoration: none;
  font-size: 0.95rem;
  word-break: break-word;
}

.ctc-option-card__link:hover {
  color: #e0aa4a;
}

.ctc-option-card__btn {
  display: inline-block;
  background: #c9922a;
  color: #0d1b2a;
  font-family: Outfit, sans-serif;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.ctc-option-card__btn:hover {
  background: #b07d20;
  color: #0d1b2a;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 980px) {
  .ctc-split__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ctc-options__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .ctc-hero {
    padding: 72px 0 56px;
  }

  .ctc-split {
    padding: 56px 0;
  }

  .ctc-split__grid {
    padding: 0 16px;
  }

  .ctc-form-card {
    padding: 1.5rem;
  }

  .ctc-options {
    padding: 56px 0;
  }
}
