/* ===================================================
   Pasangin Arsitek — Landing Page Design System
   Exact Figma Replica (Web Pasangin Arsitek)
   =================================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700&display=swap");

:root {
  /* Primary Colors */
  --primary-maroon: #c20d00;
  --primary-dark-maroon: #700700;
  --primary-gradient: linear-gradient(
    -51deg,
    rgba(210, 116, 109, 1) 7%,
    rgba(194, 13, 0, 1) 100%
  );

  /* Neutrals */
  --bg-light: #f2f2f2;
  --bg-white: #ffffff;
  --text-dark: #0f172a;
  --text-black: #1e1e1e;
  --text-muted: #64748b;
  --border-light: #e8edf3;
  --gold: #f1c216;

  /* Typography */
  --font-primary: "Poppins", sans-serif;
  --font-heading: "Inter", sans-serif;

  /* Transitions */
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background-color: var(--primary-dark-maroon);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  background: none;
}

/* ─── FLOATING PILL NAVBAR SYSTEM ─── */
.header-wrapper {
  position: fixed;
  top: 14px;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: var(--transition-base);
}

.navbar {
  pointer-events: auto;
  background: var(--primary-dark-maroon);
  padding: 10px 32px;
  width: 95%;
  max-width: 1340px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar.scrolled {
  padding: 8px 28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 40px;
}

.navbar__logo img {
  height: 32px;
  width: auto;
  transition: var(--transition-base);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar__menu a {
  font-weight: 500;
  font-size: 14.5px;
  color: #ffffff;
  opacity: 0.9;
  transition: var(--transition-base);
  position: relative;
  padding: 4px 0;
}

.navbar.scrolled .navbar__menu a {
  color: #0f172a;
  opacity: 0.85;
}

.navbar__menu a:hover,
.navbar__menu a.active {
  opacity: 1;
  color: #ffffff;
}

.navbar.scrolled .navbar__menu a:hover,
.navbar.scrolled .navbar__menu a.active {
  opacity: 1;
  color: var(--primary-maroon);
}

.navbar__menu a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

.navbar.scrolled .navbar__menu a.active::after {
  background: var(--primary-maroon);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: var(--primary-dark-maroon);
  padding: 7px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 13.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: var(--transition-base);
}

.navbar.scrolled .btn-cta {
  background: linear-gradient(
    135deg,
    var(--primary-maroon),
    var(--primary-dark-maroon)
  );
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(112, 7, 0, 0.3);
}

.btn-cta--mobile {
  display: none !important;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.navbar__contact-number {
  font-weight: 400;
  opacity: 0.9;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: var(--transition-base);
}

.navbar.scrolled .mobile-toggle span {
  background: #0f172a;
}

/* ─── HERO SECTION WRAPPER ─── */
.hero-section-wrapper {
  background: var(--primary-dark-maroon);
  position: relative;
  width: 100%;
}

.hero {
  background: var(--bg-white);
  min-height: calc(100vh - 40px);
  padding-top: 140px;
  padding-bottom: 70px;
  border-radius: 0 0 100px 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Keyframe Animations */
@keyframes starburstSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatArchitect {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Hero Header Title */
.hero__header {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 20px;
}

.hero__title-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1100px;
}

.hero__starburst {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  animation: starburstSpin 20s linear infinite;
}

.hero__starburst g {
  stroke: var(--text-dark);
}

.hero__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 58px;
  color: var(--text-dark);
  line-height: 1.22;
  text-align: center;
  letter-spacing: -0.8px;
}

/* Hero 3-Column Grid */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  min-height: 480px;
  width: 100%;
}

/* Left Column */
.hero__col-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 360px;
  padding-right: 20px;
}

.hero__scribble {
  margin-bottom: 12px;
}

.hero__scribble path {
  stroke: var(--text-dark);
  stroke-width: 2px;
}

.hero__desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.68;
  margin-bottom: 28px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border-radius: 30px;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--primary-maroon),
    var(--primary-dark-maroon)
  );
  border: 1px solid rgba(194, 13, 0, 0.2);
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(112, 7, 0, 0.3);
  transition: var(--transition-base);
}

.btn-hero:hover {
  background: var(--primary-dark-maroon);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(112, 7, 0, 0.45);
}

/* Center Column (Architect Image) */
.hero__col-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 480px;
}

.hero__architect-img {
  position: absolute;
  bottom: -80px;
  z-index: 2;
  height: 560px;
  width: auto;
  object-fit: contain;
}

/* Right Column (Rating & Trust Card) */
.hero__col-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding-left: 0;
  padding-right: 20px;
}

.hero__trust-card {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 330px;
}

.hero__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.hero__stars .star-icon {
  width: 20px;
  height: 20px;
  fill: #f59e0b;
  stroke: none;
}

.hero__rating-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.hero__right-desc {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
}

.hero__stat-pill {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-maroon);
  background: #ffe6e6;
  border: 1px solid rgba(194, 13, 0, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
}

.hero__exp-label {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}

/* ─── DIGITALISASI SECTION ─── */
.digitalisasi {
  background: var(--primary-dark-maroon);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.digitalisasi__container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  width: 100%;
  min-height: calc(100vh - 160px);
}

.digitalisasi__card-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 400px;
  border-radius: 0 48px 48px 0;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
}

.digitalisasi__card-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.digitalisasi__card-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-40%);
  width: 440px;
  height: 460px;
  border-radius: 48px 0 0 48px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
}

.digitalisasi__card-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.digitalisasi__content {
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 0 20px;
}

.digitalisasi__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 42px;
  color: var(--bg-white);
  line-height: 1.25;
  margin-bottom: 18px;
}

.digitalisasi__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.btn-digitalisasi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 38px;
  background: var(--bg-white);
  color: var(--text-dark);
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition-base);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-digitalisasi:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ─── CLIENT SECTION ─── */
.client {
  background: var(--bg-white);
  padding: 100px 0;
  border-radius: 0 0 160px 160px;
}

.client__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}

.client__tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.client__tab {
  padding: 12px 36px;
  border-radius: 26px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition-base);
  border: 1px solid var(--text-dark);
  background: transparent;
  color: var(--text-dark);
}

.client__tab.active {
  background: var(--primary-maroon);
  color: var(--bg-white);
  border-color: var(--primary-maroon);
}

.client__body {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.client__info {
  flex: 1;
}

.client__title {
  font-weight: 600;
  font-size: 48px;
  color: var(--text-dark);
  margin-bottom: 20px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.client__desc {
  font-size: 18px;
  color: rgba(15, 23, 42, 0.7);
  line-height: 1.6;
  margin-bottom: 32px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.client__carousel-dots {
  display: flex;
  gap: 10px;
}

.client__dot {
  width: 14px;
  height: 14px;
  border-radius: 8px;
  background: var(--primary-maroon);
  cursor: pointer;
  transition: var(--transition-base);
  opacity: 0.5;
}

.client__dot.active {
  width: 48px;
  opacity: 1;
}

.client__photos {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  position: relative;
}

.client__photo-main {
  width: 440px;
  height: 440px;
  object-fit: cover;
  border-radius: 36px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.client__right-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.client__nav {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.client__nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  background: var(--bg-white);
  transition: var(--transition-base);

  cursor: pointer;
}

.client__nav-btn:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
  background: #f1f5f9;
  transform: scale(1.08);
}

.client__photo-secondary {
  width: 200px;
  height: 220px;
  object-fit: cover;
  border-radius: 28px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ─── KEUNGGULAN SECTION ─── */
.keunggulan {
  background: var(--primary-dark-maroon);
  padding: 80px 0 100px;
  width: 100%;
}

.keunggulan__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.keunggulan__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 40px;
}

.keunggulan__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.keunggulan__left-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.keunggulan__card {
  background: #f5f6f8;
  border-radius: 36px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  height: 240px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: var(--transition-base);
}

.keunggulan__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.keunggulan__card-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 30px;
  color: #0f172a;
  line-height: 1.25;
  position: relative;
  z-index: 2;
  max-width: 250px;
}

/* Card 1 Wallet Image */
.keunggulan__card:nth-child(1) .keunggulan__card-img {
  position: absolute;
  right: -10px;
  bottom: -15px;
  width: 270px;
  height: auto;
  object-fit: contain;
  z-index: 1;
}

/* Card 2 Document Signature Image */
.keunggulan__card:nth-child(2) .keunggulan__card-img {
  position: absolute;
  right: -5px;
  bottom: -10px;
  width: 240px;
  height: auto;
  object-fit: contain;
  z-index: 1;
}

/* Right Highlight Card */
.keunggulan__card--highlight {
  background: linear-gradient(150deg, #df3434 0%, #c20d00 55%, #8b0000 100%);
  border-radius: 36px;
  padding: 44px 44px;
  position: relative;
  overflow: hidden;
  height: 510px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.keunggulan__card--highlight .keunggulan__card-title {
  color: #ffffff;
  font-size: 38px;
  line-height: 1.25;
  max-width: 320px;
}

.keunggulan__card--highlight .keunggulan__card-img {
  position: absolute;
  right: -25px;
  bottom: 0;
  width: 400px;
  height: auto;
  object-fit: contain;
  z-index: 1;
}

.keunggulan__preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 26px;
  background: #ffffff;
  color: #0f172a;
  border-radius: 40px;
  font-weight: 600;
  font-size: 17px;
  position: absolute;
  bottom: 36px;
  left: 44px;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition-base);
}

.keunggulan__preview-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.keunggulan__preview-icon {
  width: 28px;
  height: 28px;
  background: #0f172a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

/* ─── APLIKASI GALLERY SECTION (Scattered Background App Mockups) ─── */
.gallery {
  background: var(--bg-white);
  padding: 100px 0 100px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.gallery__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Center Content - Clean & Centered */
.gallery__header {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 540px;
  margin: 0 auto;
}

.gallery__subtitle {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 40px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.gallery__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 54px;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.15;
}

.gallery__desc {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 28px;
}

.btn-gallery {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  background: var(--primary-maroon);
  color: #ffffff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(194, 13, 0, 0.3);
  transition: var(--transition-base);
}

.btn-gallery:hover {
  background: #a00b00;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(194, 13, 0, 0.4);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--primary-dark-maroon);
  padding: 80px 0 40px;
  color: var(--bg-white);
  border-radius: 60px 60px 0 0;
  position: relative;
  z-index: 5;
}

.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 50px;
  text-align: left;
}

.footer__brand-logo {
  max-width: 160px;
  margin-bottom: 16px;
  height: auto;
}

.footer__brand-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer__col-title {
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer__col a,
.footer__col p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer__col a {
  transition: var(--transition-base);
}

.footer__col a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__social-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__bottom-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition-base);
}

.footer__socials a:hover {
  background: #ffffff;
  color: var(--primary-dark-maroon);
  transform: translateY(-3px);
}

.footer__copyright {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__bottom-right a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
  text-decoration: none;
  transition: var(--transition-base);
}

.footer__bottom-right a:hover {
  color: #ffffff;
}

.footer__app-downloads {
  display: flex;
  gap: 12px;
}

.footer__app-downloads a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition-base);
}

.footer__app-downloads a:hover {
  background: #ffffff;
  color: var(--primary-dark-maroon);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .header-wrapper {
    top: 10px;
  }

  .navbar {
    padding: 8px 18px;
    width: 92%;
  }

  .navbar.scrolled {
    padding: 6px 14px;
  }

  .navbar__logo img {
    height: 26px;
  }

  .navbar > .btn-cta {
    display: none !important;
  }

  .navbar__menu {
    display: none;
  }

  .navbar__menu .btn-cta--mobile {
    display: inline-flex !important;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    padding: 12px 20px;
    font-size: 14px;
    background: linear-gradient(135deg, var(--primary-maroon), var(--primary-dark-maroon));
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(112, 7, 0, 0.3);
    border-radius: 30px;
  }

  .navbar__menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: var(--primary-dark-maroon);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 20px 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    gap: 16px;
    align-items: flex-start;
    z-index: 1001;
  }

  .navbar.scrolled .navbar__menu.open {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.9);
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-section-wrapper {
    padding-top: 0;
  }

  .hero {
    min-height: auto;
    justify-content: flex-start;
    padding-top: 95px;
    padding-bottom: 0;
    border-radius: 0 0 50px 50px;
  }

  .hero__header {
    padding: 0 16px;
    margin-bottom: 10px;
  }

  .hero__title-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .hero__starburst {
    width: 40px;
    height: 40px;
  }

  .hero__title {
    font-size: 25px;
    line-height: 1.28;
    letter-spacing: -0.3px;
    margin-top: 0 !important;
  }

  .hero__title br {
    display: none;
  }

  .hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 16px;
    padding: 0 16px;
    min-height: auto;
    text-align: center;
  }

  .hero__col-left {
    grid-column: 1 / -1;
    grid-row: 1;
    align-items: center;
    max-width: 100%;
    padding: 0;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .hero__col-center {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: auto;
    position: static;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-self: flex-end;
    margin: 0;
  }

  .hero__col-right {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    height: auto;
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    margin-bottom: 20px;
  }

  .hero__scribble {
    margin-bottom: 10px;
  }

  .hero__desc {
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 20px;
    text-align: center;
  }

  .btn-hero {
    width: 100%;
    max-width: 280px;
    padding: 12px 24px;
    font-size: 14px;
    margin: 0 auto;
  }

  .hero__architect-img {
    position: static;
    bottom: auto;
    max-width: 175px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
    vertical-align: bottom;
    margin-bottom: -5px;
  }

  .hero__trust-card {
    width: 100%;
    max-width: 100%;
    padding: 14px 12px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    background: #ffffff;
    margin: 0;
  }

  .hero__stars {
    gap: 2px;
    margin-bottom: 4px;
  }

  .hero__stars .star-icon {
    width: 13px;
    height: 13px;
  }

  .hero__rating-title {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    margin: 4px 0;
  }

  .hero__right-desc {
    font-size: 10.5px;
    line-height: 1.35;
  }

  .digitalisasi__card-left,
  .digitalisasi__card-right {
    width: 220px;
    opacity: 0.3;
  }

  .keunggulan__grid {
    grid-template-columns: 1fr;
  }

  .keunggulan__card--highlight {
    height: auto;
    min-height: 450px;
  }

  .footer {
    padding: 50px 0 30px;
    border-radius: 40px 40px 0 0;
  }

  .footer__inner {
    padding: 0 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 36px;
  }

  .footer__brand-desc {
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 100%;
  }

  .footer__col-title {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .footer__col a,
  .footer__col p {
    font-size: 14px;
    margin-bottom: 10px;
    word-break: break-word;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 24px;
  }

  .footer__bottom-left {
    width: 100%;
  }

  .footer__social-group {
    width: 100%;
    justify-content: flex-start;
  }

  .footer__copyright {
    font-size: 12.5px;
    line-height: 1.5;
    margin-top: 4px;
  }

  .footer__bottom-right {
    width: 100%;
    margin-top: 4px;
  }
}

  .digitalisasi__card-left,
  .digitalisasi__card-right {
    display: none;
  }

  .client__tabs {
    flex-wrap: wrap;
  }

  .client__body {
    flex-direction: column;
  }

  .client__photos {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .client__photo-main {
    width: 100%;
    height: 320px;
  }

  .client__photo-secondary {
    display: none;
  }
}

/* ════════════════════════════════════════════
   SUB-PAGE & MULTI-PAGE STYLING EXTENSIONS
   ════════════════════════════════════════════ */

/* Page Banner - Figma Design System Full Viewport Hero Card */
.about-hero-wrapper {
  background: var(--primary-dark-maroon);
  position: relative;
  width: 100%;
}

.about-hero {
  background: var(--bg-white);
  min-height: calc(100vh - 40px);
  padding-top: 150px;
  padding-bottom: 70px;
  border-radius: 0 0 100px 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 650px;
  height: 650px;
  background: radial-gradient(
    circle,
    rgba(194, 13, 0, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-banner__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: #ffe6e6;
  color: var(--primary-maroon);
  border: 1px solid rgba(194, 13, 0, 0.18);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.page-banner__title-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.page-banner__starburst {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  animation: starburstSpin 25s linear infinite;
}

.page-banner__starburst g {
  stroke: var(--primary-maroon);
}

.page-banner__title {
  font-family: var(--font-primary);
  font-size: 44px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.5px;
}

.page-banner__title span.highlight {
  color: var(--primary-maroon);
}

.page-banner__desc {
  font-size: 17.5px;
  color: #475569;
  line-height: 1.75;
  margin: 16px 0 28px 0;
}

.page-banner__stats-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.page-banner__stat-card {
  background: #f8fafc;
  padding: 14px 20px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  min-width: 130px;
  transition: var(--transition-base);
}

.page-banner__stat-card:hover {
  border-color: var(--primary-maroon);
  transform: translateY(-2px);
}

.page-banner__stat-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-maroon);
  margin-bottom: 2px;
}

.page-banner__stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.page-banner__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.page-banner__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 24px;
  border-radius: 30px;
}

.page-banner__breadcrumb a {
  color: var(--primary-maroon);
  font-weight: 600;
}

.page-banner__breadcrumb a:hover {
  text-decoration: underline;
}

.about-hero__visual {
  position: relative;
  text-align: center;
}

.about-hero__img-card {
  position: relative;
  border-radius: 32px;
  padding: 0;
  background: transparent;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
  animation: floatArchitect 7s ease-in-out infinite;
  overflow: hidden;
}

.about-hero__img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 32px;
  display: block;
}

.about-hero__badge-top {
  position: absolute;
  top: 30px;
  left: -20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.about-hero__badge-bottom {
  position: absolute;
  bottom: -15px;
  right: 20px;
  background: #ffffff;
  padding: 14px 24px;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #e2e8f0;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
}

@media (max-width: 1024px) {
  .about-hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .about-hero__grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
    text-align: center;
  }

  .about-hero__visual {
    order: -1;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-app-slider-container {
    max-width: 200px !important;
  }

  .hero-app-controls {
    margin-top: 10px;
    transform: scale(0.9);
  }

  .page-banner__title-wrapper {
    justify-content: center;
  }

  .page-banner__actions {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-app-slider-container {
    max-width: 175px !important;
  }

  .hero-app-controls {
    margin-top: 8px;
    transform: scale(0.85);
  }
}

/* Service Row Styling (Layanan Utama) */
.service-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
  gap: 0 60px;
  width: 100%;
}

.service-row__header {
  grid-column: 1;
  grid-row: 1;
}

.service-row__body {
  grid-column: 1;
  grid-row: 2;
}

.service-row__visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

/* Reverse layout for Construction row */
.service-row--reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.service-row--reverse .service-row__header {
  grid-column: 2;
  grid-row: 1;
}

.service-row--reverse .service-row__body {
  grid-column: 2;
  grid-row: 2;
}

.service-row--reverse .service-row__visual {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
}

.service-row__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Section Maroon Intro (Membangun Hunian Impian) */
.section-maroon {
  background: var(--primary-dark-maroon);
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 50px;
  width: 100%;
}

.about-intro__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 90px;
}

.about-intro__title {
  font-size: 38px !important;
  line-height: 1.25 !important;
  margin-bottom: 20px !important;
  text-align: left !important;
  font-weight: 800 !important;
}

.about-intro__text p {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
}

.about-intro__visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  margin-bottom: -120px;
}

.about-intro__img {
  width: 100%;
  max-width: 580px;
  max-height: 650px;
  object-fit: contain;
  display: block;
  margin: 0 0 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  vertical-align: bottom;
}

@media (max-width: 1024px) {
  .section-maroon {
    padding: 60px 24px !important;
  }

  .about-intro__grid {
    display: block;
    width: 100%;
  }

  .about-intro__content {
    display: block;
    width: 100%;
    padding-bottom: 0 !important;
  }

  .about-intro__content .page-banner__tag {
    font-size: 14px !important;
    padding: 7px 18px !important;
    margin-bottom: 18px !important;
    display: inline-flex;
  }

  .about-intro__title {
    width: 100% !important;
    font-size: 30px !important;
    line-height: 1.35 !important;
    text-align: left !important;
    margin-bottom: 20px !important;
    font-weight: 800 !important;
  }

  .about-intro__text {
    width: 100% !important;
  }

  .about-intro__text p {
    font-size: 16px !important;
    line-height: 1.75 !important;
    margin-bottom: 18px !important;
    color: rgba(255, 255, 255, 0.92) !important;
  }

  /* Hide image on mobile view */
  .about-intro__visual {
    display: none !important;
  }

  .service-row,
  .service-row--reverse {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .service-row__header {
    width: 100%;
  }

  .service-row__header h3 {
    font-size: 24px !important;
  }

  .service-row__visual {
    width: 100%;
    margin: 4px 0 8px;
  }

  .service-row__img {
    height: 240px !important;
    border-radius: 20px;
  }

  .service-row__body {
    width: 100%;
  }

  .service-row__body p {
    font-size: 14.5px !important;
  }

  .service-row__body li {
    font-size: 13.5px !important;
  }
}

@media (max-width: 640px) {
  .section-maroon {
    padding: 44px 20px !important;
  }

  .about-intro__content .page-banner__tag {
    font-size: 13px !important;
    padding: 6px 16px !important;
    margin-bottom: 16px !important;
  }

  .about-intro__title {
    font-size: 27px !important;
    line-height: 1.35 !important;
    margin-bottom: 16px !important;
  }

  .about-intro__text p {
    font-size: 15px !important;
    line-height: 1.7 !important;
  }

  .service-row__img {
    height: 200px !important;
  }

  .service-row__header h3 {
    font-size: 21px !important;
  }
}

/* Contact Info Section (#kontak-info) */
.contact-info__container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 0 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info__header {
  grid-column: 2;
  grid-row: 1;
}

.contact-info__visual {
  grid-column: 1;
  grid-row: 1 / span 2;
  position: relative;
}

.contact-info__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.contact-info__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-info__list {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item__title {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.contact-item__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  word-break: break-word;
}

@media (max-width: 1024px) {
  #kontak-info {
    padding: 40px 20px !important;
    min-height: auto !important;
  }

  .contact-info__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .contact-info__header {
    width: 100%;
    margin-bottom: 0;
  }

  .contact-info__title {
    font-size: 26px !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }

  .contact-info__subtitle {
    font-size: 13.5px !important;
    margin-bottom: 0 !important;
  }

  .contact-info__visual {
    display: block !important;
    width: 100%;
    max-width: 320px;
    margin: 10px auto 16px;
    position: relative;
  }

  .contact-info__img {
    height: 220px !important;
    border-radius: 20px !important;
    object-fit: cover;
    display: block;
    width: 100%;
  }

  .contact-info__badge {
    position: absolute;
    bottom: 10px !important;
    left: 10px !important;
    padding: 8px 12px !important;
    border-radius: 12px !important;
    gap: 8px !important;
  }

  .contact-info__badge p:first-child {
    font-size: 11.5px !important;
  }

  .contact-info__badge p:last-child {
    font-size: 9.5px !important;
  }

  .contact-info__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-item {
    gap: 14px;
  }

  .contact-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .contact-item__title {
    font-size: 15px;
  }

  .contact-item__text {
    font-size: 13.5px;
    line-height: 1.55;
  }
}

.section-white {
  background: var(--bg-white);
  padding: 100px 0;
}

/* Visi & Misi Styling */
.visi-card {
  background: linear-gradient(135deg, #8B0000, #C20D00) !important;
  border-radius: 32px;
  padding: 40px 48px;
  color: #FFFFFF !important;
  box-shadow: 0 15px 35px rgba(194, 13, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.visi-card h3 {
  color: #FFFFFF !important;
}

.visi-card p {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
}

.misi-container {
  background: #FFFFFF;
  border-radius: 32px;
  padding: 40px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.misi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.misi-item {
  display: flex;
  gap: 16px;
  background: #F8FAFC;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #F1F5F9;
}

.misi-item--full {
  grid-column: span 2;
}

@media (max-width: 1024px) {
  .visi-card {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .visi-card h3 {
    font-size: 20px !important;
  }

  .visi-card p {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  .misi-container {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .misi-container h3 {
    font-size: 20px !important;
  }

  .misi-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .misi-item--full {
    grid-column: span 1;
  }

  .misi-item {
    padding: 16px;
    border-radius: 16px;
  }
}

@media (max-width: 640px) {
  .visi-card {
    padding: 24px 16px;
    border-radius: 20px;
  }

  .visi-card h3 {
    font-size: 18px !important;
  }

  .visi-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  .misi-container {
    padding: 20px 14px;
    border-radius: 20px;
  }

  .misi-item {
    padding: 14px;
    gap: 12px;
  }
}

/* Fullscreen Section Cara Kerja Pasangin */
/* Fullscreen Section Cara Kerja Pasangin */
.section-cara-kerja {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 50px;
  width: 100%;
}

.section-cara-kerja > div,
.section-cara-kerja .gallery__container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
}

/* Step-by-Step Premium Unified Cards */
.step-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 38px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.04);
  border: 1.5px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-maroon), #ff5c5c);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: rgba(194, 13, 0, 0.35);
  box-shadow: 0 22px 50px rgba(112, 7, 0, 0.14);
}

.step-card:hover::before {
  opacity: 1;
  height: 6px;
}

/* Unified Badge & Icon Wrapper */
.step-card__badge-wrapper {
  position: relative;
  margin-bottom: 24px;
  display: inline-block;
}

.step-card__icon-box {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1.5px solid #e2e8f0;
  color: var(--primary-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.step-card:hover .step-card__icon-box {
  background: linear-gradient(
    135deg,
    var(--primary-maroon),
    var(--primary-dark-maroon)
  );
  color: #ffffff;
  border-color: var(--primary-maroon);
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 14px 30px rgba(194, 13, 0, 0.35);
}

.step-card__badge-num {
  position: absolute;
  top: -8px;
  right: -10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-maroon),
    var(--primary-dark-maroon)
  );
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(194, 13, 0, 0.4);
  border: 2.5px solid #ffffff;
  transition: all 0.3s ease;
}

.step-card:hover .step-card__badge-num {
  background: #ffffff;
  color: var(--primary-maroon);
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.step-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.step-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.section-maroon {
  background: var(--primary-dark-maroon);
  padding: 100px 0;
  color: var(--bg-white);
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: center;
}

.section-title--white {
  color: #ffffff;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.section-subtitle--white {
  color: rgba(255, 255, 255, 0.8);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1280px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-5 {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ════════════════════════════════════════════
   PRIVY-STYLE FEATURE CARDS SLIDER REPLICA
   ════════════════════════════════════════════ */
.privy-slider-wrapper {
  position: relative;
  width: 100%;
  padding: 10px 0 20px;
}

.privy-card-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 5px 25px 5px;
}

.privy-card-grid::-webkit-scrollbar {
  display: none;
}

/* Individual Privy Card (3 Columns Layout) */
.privy-card {
  position: relative;
  flex: 0 0 calc(33.333% - 16px);
  min-width: 320px;
  height: 440px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .privy-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 280px;
    height: 410px;
  }
}

@media (max-width: 640px) {
  .privy-card {
    flex: 0 0 calc(88% - 10px);
    min-width: 260px;
    height: 390px;
  }
}

.privy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
}

/* Background Image & Dark Gradient Overlay */
.privy-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition:
    transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
    filter 0.4s ease;
  filter: brightness(0.85);
}

.privy-card:hover .privy-card__bg {
  transform: scale(1.06);
  filter: brightness(0.95);
}

.privy-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(10, 15, 25, 0.95) 0%,
    rgba(10, 15, 25, 0.55) 45%,
    rgba(10, 15, 25, 0.15) 100%
  );
  z-index: 2;
  transition: background 0.4s ease;
}

.privy-card:hover .privy-card__overlay {
  background: linear-gradient(
    to top,
    rgba(112, 7, 0, 0.95) 0%,
    rgba(10, 15, 25, 0.5) 50%,
    rgba(10, 15, 25, 0.15) 100%
  );
}

/* Top Badge & Icon Overlay */
.privy-card__top {
  position: relative;
  z-index: 3;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.privy-card__icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.privy-card:hover .privy-card__icon-box {
  background: #ffffff;
  color: var(--primary-maroon);
  transform: scale(1.08);
}

.privy-card__badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}

/* Bottom Content Overlay (Privy Style) */
.privy-card__bottom {
  position: relative;
  z-index: 3;
  padding: 24px;
}

.privy-card__title {
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.privy-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.privy-card__desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* White Circle Arrow Button (Like Privy) */
.privy-card__circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
}

.privy-card:hover .privy-card__circle-btn {
  background: #ffffff;
  color: var(--primary-dark-maroon);
  transform: translateX(4px) scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Floating Navigation Arrows (Red Circle Buttons like Privy) */
.privy-slider__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-maroon);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(112, 7, 0, 0.45);
  cursor: pointer;
  z-index: 10;
  border: 2.5px solid #ffffff;
  transition: all 0.3s ease;
}

.privy-slider__nav-btn--prev {
  left: -22px;
}

.privy-slider__nav-btn--next {
  right: -22px;
}

.privy-slider__nav-btn:hover {
  background: #e60000;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Feature & Service Cards with Image Thumbnail & Micro-Animations */
.feature-card {
  position: relative;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card--white {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #c20d00, #ff5c5c);
  z-index: 5;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
  border-color: rgba(194, 13, 0, 0.35);
}

.feature-card:hover::before {
  opacity: 1;
  height: 5px;
}

/* Image Thumbnail Header */
.feature-card__thumb {
  position: relative;
  width: 100%;
  height: 145px;
  overflow: hidden;
  background: #0f172a;
}

.feature-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
    filter 0.4s ease;
  filter: brightness(0.92);
}

.feature-card:hover .feature-card__img {
  transform: scale(1.08);
  filter: brightness(1);
}

.feature-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Card Body Content */
.feature-card__body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(194, 13, 0, 0.08);
  color: var(--primary-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-card__icon {
  background: var(--primary-maroon);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(194, 13, 0, 0.35);
  transform: scale(1.05);
}

.feature-card__title {
  font-size: 18.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.feature-card__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-maroon);
  margin-top: auto;
  transition: color 0.3s ease;
}

.feature-card__link i {
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-card__link i {
  transform: translateX(6px);
}

/* Ecosystem / Partner Cards (Xendit, Privy, Unity, Mekari) */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1140px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }
}

.ecosystem-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ecosystem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.ecosystem-card__badge {
  display: inline-block;
  padding: 4px 14px;
  background: #f1f5f9;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
  color: var(--primary-maroon);
  margin-bottom: 16px;
}

.ecosystem-card__logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ecosystem-card__logo {
  height: 38px;
  width: auto;
  max-width: 48px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.ecosystem-card:hover .ecosystem-card__logo {
  transform: scale(1.1);
}

.ecosystem-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.2;
}

.ecosystem-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Step-by-Step Flow Grid & Cards */
.step-grid-7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.step-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 22px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-maroon);
  box-shadow: 0 18px 40px rgba(112, 7, 0, 0.12);
}

.step-card__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-maroon),
    var(--primary-dark-maroon)
  );
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 18px rgba(194, 13, 0, 0.35);
  flex-shrink: 0;
}

.step-card__title {
  font-size: 18.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.step-card__desc {
  font-size: 13.8px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Form Styles */
.form-box {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid #cbd5e1;
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--text-dark);
  background: #f8fafc;
  transition: var(--transition-base);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-maroon);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(194, 13, 0, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 14px 28px;
  background: var(--primary-maroon);
  color: #ffffff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(194, 13, 0, 0.3);
  transition: var(--transition-base);
}

.btn-submit:hover {
  background: #a00b00;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(194, 13, 0, 0.4);
}

/* Map Embed Frame */
.map-frame {
  width: 100%;
  height: 400px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: none;
}

/* Responsive Grid Overrides */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .page-banner__title {
    font-size: 32px;
  }
}
