:root {
  --navy: #0f2d5c;
  --navy-soft: #173f78;
  --charcoal: #1f2733;
  --text: #324154;
  --white: #ffffff;
  --offwhite: #f5f7fa;
  --line: #dbe2ea;
  --gold: #c8a45a;
  --gold-soft: #e1c993;
  --shadow: 0 14px 35px rgba(15, 39, 71, 0.1);
  --radius: 14px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.65;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 7vw, 6.2rem) 0;
}

.section-divider {
  position: relative;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 980px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1.1rem;
  color: var(--charcoal);
  line-height: 1.22;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 3.5rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  position: relative;
  display: inline-block;
  padding-bottom: 0.55rem;
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1.2rem;
}

.eyebrow {
  margin-bottom: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy-soft);
  font-size: 0.75rem;
}

.center-heading {
  display: block;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}

.center-heading::after {
  left: 50%;
  transform: translateX(-50%);
}

.center-eyebrow {
  text-align: center;
}

.center-subheading {
  margin: 0.2rem auto 1.2rem;
  max-width: 760px;
  text-align: center;
  color: #4c6076;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.18rem);
  margin-bottom: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.72rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease,
    color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold);
  color: #182739;
}

.btn-secondary {
  border-color: var(--line);
  color: var(--charcoal);
  background: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--gold);
  color: var(--navy);
  background: #fffaf0;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: #a88750;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(219, 226, 234, 0.8);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  max-width: 240px;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28rem;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-store {
  color: var(--navy);
}

.brand-hartanah {
  color: #b88b3d;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  padding: 0.55rem 0.82rem;
  border-radius: 999px;
  font-size: 0.92rem;
  color: #405267;
}

.nav-links .btn-nav {
  color: #ffffff;
}

.nav-links .btn-nav:hover,
.nav-links .btn-nav:focus-visible {
  color: #182739;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
  color: var(--navy);
  background: #eef3f9;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.mobile-menu {
  position: fixed;
  top: 79px;
  right: 1rem;
  left: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.35rem;
  transform: translateY(-14px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.28s ease;
}

.mobile-menu a {
  border-radius: 10px;
  padding: 0.72rem 0.85rem;
  text-align: center;
}

.mobile-menu a:not(.btn):hover {
  background: #f2f6fb;
}

.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-grid,
.split {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1fr;
  max-width: 880px;
  justify-content: center;
}

.hero {
  padding-top: clamp(3rem, 7vw, 6rem);
  background: #f9f5eb;
}

.hero-copy {
  padding: 0;
  text-align: center;
}

.hero-copy .eyebrow {
  color: #7a5a1f;
}

.hero-copy h1 {
  color: var(--navy);
}

.hero-highlight {
  color: #b88b3d;
}

.hero-copy .lead {
  color: #2f4866;
}

.hero-copy .hero-trust span {
  background: #fffdf8;
  border: 1px solid #e7d1a3;
  color: #5f7086;
}

.hero-copy .hero-trust .trust-badge {
  border-color: #cfab62;
}

.hero-media {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(62vh, 560px);
  margin-inline: auto;
  object-fit: contain;
  aspect-ratio: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 1.55rem;
}

.hero-copy .hero-actions {
  justify-content: center;
}

.hero-actions .btn {
  min-height: 56px;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  gap: 0.52rem;
  box-shadow: 0 12px 24px rgba(15, 45, 92, 0.12);
}

.hero-actions .btn .material-symbols-outlined {
  font-size: 1.08rem;
}

.hero-actions .btn-primary {
  background: linear-gradient(135deg, #0f2747 0%, #163863 100%);
  color: #ffffff;
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-primary:focus-visible {
  background: #0f2747;
  color: #ffffff;
}

.hero-actions .btn-secondary {
  border-color: rgba(15, 45, 92, 0.25);
  color: var(--navy);
  background: #ffffff;
}

.hero-actions .btn-secondary:hover,
.hero-actions .btn-secondary:focus-visible {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
}

.hero-trust {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  width: min(100%, 360px);
}

.hero-copy .hero-trust {
  margin-inline: auto;
}

.hero-trust span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff4fa;
  color: #5b6d82;
  border-radius: 10px;
  padding: 0.32rem 0.44rem;
  min-height: 34px;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.66rem, 1.6vw, 0.75rem);
}

.hero-trust .trust-badge {
  background: linear-gradient(145deg, #dbc187 0%, var(--gold) 100%);
  color: #1f2f46;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.card,
.service-card {
  background: var(--white);
  border: 1px solid #e4eaf1;
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: 0 8px 22px rgba(9, 29, 54, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover,
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.services-modern .services-grid {
  margin-inline: auto;
  max-width: 1320px;
  gap: 1.1rem;
}

.services-modern .service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 2rem 1.35rem 1.45rem;
  border-radius: 16px;
  background: #f9f5eb;
  border: 1px solid rgba(228, 211, 178, 0.7);
  box-shadow: 0 10px 24px rgba(15, 45, 92, 0.08);
}

.services-modern .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px rgba(15, 45, 92, 0.12);
}

.services-modern .services-intro {
  text-align: center;
  margin: 0 auto 2rem;
}

.services-modern .services-kicker {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold);
}

.services-modern .service-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: var(--navy);
  margin-bottom: 1.1rem;
  box-shadow: 0 8px 16px rgba(12, 34, 58, 0.09);
  border: 1px solid rgba(200, 164, 90, 0.35);
}

.services-modern .service-icon-svg {
  width: 34px;
  height: 34px;
  color: var(--navy);
}

.services-modern .service-icon-symbol {
  font-size: 2rem;
  color: var(--navy);
}

.services-modern .service-card h3 {
  margin: 0 0 0.6rem;
  color: #102b53;
  font-size: clamp(1.06rem, 1.8vw, 1.3rem);
}

.services-modern .service-card p {
  margin: 0 0 1.2rem;
  color: #3f546d;
  font-size: 0.97rem;
  line-height: 1.45;
  max-width: 29ch;
}

.services-modern .service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold);
  transition: gap 0.2s ease, color 0.2s ease;
}

.services-modern .service-link:hover,
.services-modern .service-link:focus-visible {
  gap: 0.72rem;
  color: #9d7a42;
}

.services-modern .service-link span {
  font-size: 0.92rem;
}

.services-modern .service-link-icon {
  font-size: 0.95rem;
}

.services-modern .service-link-button {
  min-height: 44px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(15, 39, 71, 0.16);
}

.services-modern .service-link-button:hover,
.services-modern .service-link-button:focus-visible {
  background: #163863;
  color: #ffffff;
}

.services-modern .service-arrow {
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
  opacity: 0.95;
}

.services-modern .center-cta {
  margin-top: 2rem;
}

.services-modern .center-cta .btn {
  width: min(100%, 420px);
  min-height: 56px;
  font-size: 1.15rem;
  border-radius: 999px;
}

.problem-grid,
.usp-grid,
.services-grid,
.testimoni-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.problem-grid {
  grid-template-columns: 1fr;
  max-width: 780px;
  margin: 1.45rem auto 0;
  gap: 1rem;
}

.problem-item {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  justify-items: center;
}

.problem-item h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.04rem, 2.5vw, 1.18rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.problem-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0.82rem;
  align-items: center;
  width: min(100%, 700px);
}

.problem-row-sub {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.problem-row-sub p {
  margin: 0;
  color: #eef3f9;
  font-size: 0.95rem;
  line-height: 1.35;
}

.problem-row h3,
.problem-row p {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 60px;
  border-radius: 14px;
  padding: 0.72rem 1rem 0.72rem 1.2rem;
  background: linear-gradient(140deg, #1f2733 0%, #273647 48%, #0f2d5c 100%);
  box-shadow: 0 10px 20px rgba(14, 33, 56, 0.16);
  clip-path: polygon(16px 0, 100% 0, 100% 100%, 16px 100%, 0 50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(200, 164, 90, 0.28);
}

.problem-row-head h3 {
  background: linear-gradient(140deg, #16345f 0%, #10315a 52%, #0f2d5c 100%);
  color: #ffffff;
  border-color: rgba(200, 164, 90, 0.24);
}

.problem-row-sub p {
  min-height: 54px;
  padding-top: 0.66rem;
  padding-bottom: 0.66rem;
  background: linear-gradient(145deg, #fffdf8 0%, #f6efe3 100%);
  color: #43566c;
  border-color: rgba(200, 164, 90, 0.26);
}

.problem-item:hover .problem-row h3,
.problem-item:hover .problem-row p {
  transform: translateX(2px);
  box-shadow: 0 14px 24px rgba(14, 33, 56, 0.24);
}

.problem-icon {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  object-fit: contain;
  aspect-ratio: 1 / 1;
}

.problem-icon-sub {
  width: 50px;
  height: 50px;
}

.assist-panel {
  margin: 1.8rem auto 0;
  width: min(100%, 780px);
  padding: 1.1rem 1.1rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(200, 164, 90, 0.32);
  background: linear-gradient(145deg, #f7fafd 0%, #f2f6fb 100%);
}

.assist-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.assist-list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  min-height: 48px;
  border-radius: 10px;
  padding: 0.68rem 0.8rem 0.68rem 0.95rem;
  border: 1px solid #d9e4f0;
  background: #ffffff;
  color: #243a55;
  font-weight: 600;
}

.assist-point-icon {
  color: var(--gold);
  font-size: 1.16rem;
  flex: 0 0 auto;
}

.testimoni-grid {
  align-items: stretch;
}

.testimoni-grid .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimoni-grid blockquote {
  margin: 0;
}

.testimoni-grid blockquote p {
  flex: 1;
  margin-bottom: 1rem;
}

.testimonial-stars {
  display: block;
  text-align: center;
  margin-bottom: 0.45rem;
  letter-spacing: 0.08em;
}

.testimoni-grid blockquote cite {
  margin-top: auto;
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-media-block {
  margin-top: 1.45rem;
}

.sold-counter-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.sold-counter-item {
  border: 1px solid #dce5ef;
  border-radius: 12px;
  background: #fbfdff;
  padding: 0.78rem 0.85rem;
  text-align: center;
  box-shadow: 0 8px 18px rgba(15, 45, 92, 0.06);
}

.sold-counter-item h3 {
  margin: 0;
  color: #17395f;
  font-size: clamp(0.98rem, 2.1vw, 1.1rem);
}

.testimonial-carousel {
  position: relative;
  width: min(100%, 980px);
  margin: 0 auto;
}

.testimonial-viewport {
  overflow: hidden;
  border-radius: 16px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.35s ease;
  touch-action: pan-y;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0;
  margin: 0;
}

.testimonial-frame {
  position: relative;
  height: clamp(290px, 60vw, 560px);
  border-radius: 16px;
  border: 1px solid #d9e4ef;
  background: linear-gradient(145deg, #1d2a3b 0%, #223952 50%, #193152 100%);
  box-shadow: 0 14px 30px rgba(14, 33, 56, 0.2);
  overflow: hidden;
}

.testimonial-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12), transparent 68%);
}

.testimonial-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: auto;
  border-radius: 0;
  cursor: zoom-in;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 39, 71, 0.78);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.testimonial-nav.prev {
  left: 0.6rem;
}

.testimonial-nav.next {
  right: 0.6rem;
}

.testimonial-nav:hover,
.testimonial-nav:focus-visible {
  background: rgba(200, 164, 90, 0.95);
  color: #16263d;
}

.testimonial-dots {
  display: none;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: #b8c5d4;
  cursor: pointer;
}

.testimonial-dot.is-active {
  width: 21px;
  background: var(--gold);
}

.testimonial-indicator {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.32rem;
  justify-items: center;
}

.testimonial-indicator-text {
  color: #4f647b;
  font-size: 0.84rem;
  font-weight: 600;
}

.testimonial-indicator-bar {
  width: min(100%, 320px);
  height: 6px;
  border-radius: 999px;
  background: #d3deea;
  overflow: hidden;
}

.testimonial-indicator-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, #dfc48f 100%);
  border-radius: inherit;
  transition: width 0.25s ease;
}

.testimonial-hint {
  margin: 0.7rem 0 0;
  text-align: center;
  color: #5a6e84;
  font-size: 0.87rem;
}

.testimonial-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(8, 14, 24, 0.95);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 1.2rem;
}

.testimonial-lightbox[hidden] {
  display: none;
}

.testimonial-lightbox-stage {
  width: min(94vw, 1180px);
  margin: 0 auto;
  height: min(86vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
  padding: clamp(0.35rem, 1.4vw, 0.85rem);
  box-sizing: border-box;
}

.testimonial-lightbox-stage img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  aspect-ratio: auto;
  border-radius: 12px;
}

.testimonial-lightbox-nav,
.testimonial-lightbox-close {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
}

.testimonial-lightbox-nav {
  width: 46px;
  height: 46px;
  font-size: 1.8rem;
}

.testimonial-lightbox-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  line-height: 1;
}

.testimonial-lightbox-count {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: #e9eff7;
  font-weight: 600;
}

.check-list,
.areas-list {
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.check-list li,
.areas-list li {
  position: relative;
  border-left: 2px solid var(--gold-soft);
  padding-left: 1rem;
}

.check-list li::before,
.areas-list li::before {
  content: "";
  position: absolute;
  left: 0.34rem;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.about-owner-img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
  aspect-ratio: 2 / 3;
}

.about-copy {
  max-width: 650px;
}

.about-copy h2 {
  margin-bottom: 0.9rem;
}

.about-pill {
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  padding: 0.52rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 164, 90, 0.4);
  background: #fbf4e7;
  color: #2d4059;
  font-weight: 700;
}

.about-pill .material-symbols-outlined {
  color: var(--gold);
  font-size: 1.05rem;
}

.about-areas {
  display: grid;
  gap: 0.75rem;
}

.about-area-card {
  border: 1px solid #dce5ef;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.78rem 0.9rem;
}

.about-area-card h3 {
  margin: 0 0 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #1b3352;
  font-size: 1.02rem;
}

.about-area-card h3 .material-symbols-outlined {
  color: var(--gold);
  font-size: 1.06rem;
}

.about-area-card p {
  margin: 0;
  color: #45586f;
}

.about-meta-grid {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.75rem;
}

.about-meta-card {
  border: 1px solid #e4eaf1;
  border-radius: 12px;
  background: #fcfdff;
  padding: 0.85rem 0.95rem;
}

.about-meta-card h3 {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  color: #3f5266;
}

.about-meta-card p {
  margin: 0;
}

.about-notes {
  margin-top: 1rem;
}

.about-notes p:last-child {
  margin-bottom: 0;
}

.listing-grid {
  margin-top: 1.35rem;
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.listing-card {
  border: 1px solid #e4eaf1;
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 26px rgba(12, 30, 52, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.listing-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem;
  overflow: hidden;
  background: #eef3f8;
  aspect-ratio: 16 / 10;
}

.listing-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  aspect-ratio: auto;
  border-radius: 0;
}

.listing-status {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(14, 38, 68, 0.9);
  color: #f4f8fc;
  border-radius: 999px;
  padding: 0.3rem 0.68rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.listing-counter {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  background: rgba(15, 39, 71, 0.75);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.22rem 0.5rem;
  font-size: 0.72rem;
}

.listing-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(15, 39, 71, 0.72);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.listing-gallery-btn.prev {
  left: 0.7rem;
}

.listing-gallery-btn.next {
  right: 0.7rem;
}

.listing-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.listing-content h3 {
  margin-bottom: 0.7rem;
  font-size: 1.12rem;
  min-height: 2.8rem;
}

.listing-description {
  margin-bottom: 0.9rem;
  color: #5b6d81;
  flex: 1;
}

.listing-meta {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 1rem;
  color: #4c6076;
}

.listing-meta span {
  position: relative;
  padding-left: 0.95rem;
}

.listing-meta span::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
}

.listing-price {
  font-weight: 700;
  color: #102947;
}

.listing-content .btn {
  margin-top: auto;
  width: 100%;
}

.listing-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.listing-more-btn {
  border-color: rgba(200, 164, 90, 0.72);
  background: #ffffff;
  color: var(--navy);
  box-shadow: 0 10px 20px rgba(15, 45, 92, 0.08);
  gap: 0.45rem;
}

.listing-more-btn .material-symbols-outlined {
  font-size: 1rem;
  color: var(--navy);
}

.listing-more-btn:hover,
.listing-more-btn:focus-visible {
  border-color: var(--gold);
  background: #fffdf8;
  color: var(--navy);
}

.listing-empty {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px dashed #cdd7e3;
  background: #f7fafd;
  text-align: center;
  color: #5e7187;
}

.listing-main .section {
  padding-top: clamp(3.5rem, 6vw, 5.2rem);
}

.listing-filter {
  margin-top: 1.6rem;
  border: 1px solid #e4eaf1;
  border-radius: var(--radius);
  background: #fbfdff;
  padding: 1rem;
}

.listing-filter-grid {
  display: grid;
  gap: 0.8rem;
}

.listing-filter label {
  display: grid;
  gap: 0.38rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: #42566d;
}

.listing-filter input,
.listing-filter select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d5e0eb;
  border-radius: 10px;
  padding: 0.62rem 0.78rem;
  font: inherit;
  color: #2e3e52;
  background: #fff;
}

.listing-filter input:focus,
.listing-filter select:focus {
  border-color: #9cb6d6;
  outline: none;
}

.listing-search-field {
  grid-column: 1 / -1;
}

.listing-filter-actions {
  margin-top: 0.9rem;
  display: flex;
  justify-content: flex-end;
}

.listing-count {
  margin-top: 1rem;
  margin-bottom: 0;
  color: #4a6079;
  font-weight: 600;
}

.process-list {
  list-style: none;
  margin: 1.45rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.process-list li {
  background: var(--white);
  border: 1px solid #e4eaf1;
  border-radius: var(--radius);
  padding: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.process-list span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #edf3fa;
  color: var(--navy);
  font-weight: 700;
  display: grid;
  place-items: center;
}

.faq-list {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid #e4eaf1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  border: 0;
  background: var(--white);
  padding: 1rem 3rem 1rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.45;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 1.05rem;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 1rem 1rem;
}

.center-cta {
  text-align: center;
  margin-top: 1.8rem;
}

.cta-panel {
  background: #f9f5eb;
  color: #44576d;
  border: 1px solid rgba(200, 164, 90, 0.28);
  box-shadow: 0 16px 34px rgba(15, 45, 92, 0.08);
  border-radius: 18px;
  padding: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.cta-panel h2 {
  color: var(--navy);
}

.cta-panel h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.cta-panel .btn-gold {
  background: var(--navy);
  color: #ffffff;
}

.cta-panel .btn-gold:hover,
.cta-panel .btn-gold:focus-visible {
  background: #163863;
  color: #ffffff;
}

.cta-panel .eyebrow {
  color: #d6e0ec;
}

.site-footer {
  background: #0f1f35;
  color: #d7e0eb;
  padding: 2.6rem 0 1.15rem;
}

.footer-simple {
  max-width: 820px;
  text-align: center;
  display: grid;
  gap: 0.9rem;
}

.footer-branding {
  display: grid;
  gap: 0.6rem;
}

.footer-simple h3,
.footer-simple h4 {
  margin-bottom: 0;
  color: #f5f8fc;
}

.footer-simple h3 {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.footer-simple h3 em {
  font-style: italic;
  font-weight: 500;
  color: #f4efe3;
}

.footer-simple h4 {
  margin-top: 0.15rem;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8d3a6;
}

.footer-simple p {
  margin: 0;
}

.footer-desc {
  max-width: none;
  width: 100%;
  margin-inline: auto;
  line-height: 1.6;
  text-align: center;
}

.footer-contact {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
}

.footer-contact p {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  border-radius: 0;
  flex: 0 0 auto;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  min-height: 34px;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 164, 90, 0.28);
  color: #eef3f8;
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.16);
}

.footer-ren {
  color: #dce6f1;
  font-weight: 700;
  font-size: 0.92rem;
}

.footer-simple a {
  color: #e6edf5;
  overflow-wrap: anywhere;
}

.footer-simple a:hover {
  color: #ffffff;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(200, 164, 90, 0.65);
  transform: translateY(-1px);
}

.footer-divider {
  width: min(100%, 540px);
  height: 1px;
  margin: 0.15rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(200, 164, 90, 0.55), transparent);
}

.footer-copy {
  color: #aebdce;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.footer-social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.7rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.footer-social-list li {
  line-height: 1;
  flex: 0 0 auto;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.46rem;
  min-height: 42px;
  padding: 0.56rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(230, 237, 245, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #eef4fb;
  font-weight: 600;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.footer-social-link img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  border-radius: 0;
}

.floating-wa svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.floating-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  position: fixed;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 950;
  min-height: 40px;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  background: #1fa855;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  box-shadow: 0 12px 22px rgba(12, 41, 20, 0.26);
}

.floating-wa:hover,
.floating-wa:focus-visible {
  background: #1a9149;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (min-width: 760px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 880px;
  }

  .split.reverse > :first-child {
    order: 2;
  }

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

  .usp-grid,
  .testimoni-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sold-counter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .listing-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-meta-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    text-align: left;
  }
}

@media (min-width: 980px) {
  .menu-toggle,
  .mobile-menu,
  .menu-backdrop {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .listing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .listing-filter-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 979px) {
  .section {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .hero {
    padding-top: 3.4rem;
    padding-bottom: 1.1rem;
  }

  .about.section {
    padding-top: 1.35rem;
  }

  .hero-copy,
  .hero-copy p,
  .section h2,
  .section .lead,
  .section .eyebrow,
  .cta-panel {
    text-align: center;
  }

  .services-modern .service-card {
    padding: 1.6rem 1rem 1.25rem;
  }

  .services-modern .services-intro {
    margin-bottom: 1.25rem;
  }

  .services-modern .services-kicker {
    margin-bottom: 0.35rem;
  }

  .services-modern .services-grid {
    margin-top: 1rem;
    gap: 0.82rem;
  }

  .services-modern .service-icon-circle {
    width: 58px;
    height: 58px;
    margin-bottom: 0.9rem;
  }

  .services-modern .service-icon-svg {
    width: 31px;
    height: 31px;
  }

  .services-modern .service-card h3 {
    font-size: 1.05rem;
  }

  .services-modern .service-card p {
    font-size: 0.95rem;
  }

  .services-modern .service-link {
    font-size: 0.66rem;
  }

  .cta-panel {
    padding: 1.35rem 1rem 1.45rem;
  }

  .cta-panel h2 {
    margin-bottom: 0.8rem;
  }

  .cta-panel p {
    margin-bottom: 1rem;
  }

  .faq-question {
    padding: 0.92rem 2.7rem 0.92rem 0.9rem;
  }

  .faq-question::after {
    right: 0.86rem;
    top: 0.98rem;
    font-size: 1.1rem;
  }

  .testimonial-nav {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
  }

  .testimonial-lightbox {
    grid-template-columns: 1fr;
    padding: 0.9rem;
  }

  .testimonial-lightbox-stage {
    width: 100%;
    height: min(80vh, 700px);
    padding-inline: 0.25rem;
  }

  .testimonial-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .testimonial-lightbox-nav.prev {
    left: 0.55rem;
  }

  .testimonial-lightbox-nav.next {
    right: 0.55rem;
  }

  .section h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 50px;
    padding: 0.62rem 0.72rem;
    font-size: 0.65rem;
    line-height: 1.15;
    white-space: normal;
    text-wrap: balance;
    text-align: center;
  }

  .hero-actions .btn .material-symbols-outlined {
    font-size: 0.94rem;
  }

  .hero-trust {
    width: min(100%, 390px);
  }

  .split > div,
  .split > figure {
    margin-inline: auto;
  }

  .about-pill {
    justify-content: center;
  }

  .about-area-card h3 {
    justify-content: center;
    width: 100%;
  }

  .problem-item {
    gap: 0.5rem;
    padding: 0;
  }

  .problem-icon {
    width: 52px;
    height: 52px;
  }

  .problem-icon-sub {
    width: 45px;
    height: 45px;
  }

  .problem-row {
    grid-template-columns: 52px 1fr;
    gap: 0.62rem;
    width: 100%;
  }

  .problem-item h3 {
    font-size: 1rem;
  }

  .problem-row-sub p {
    font-size: 0.89rem;
  }

  .problem-row h3,
  .problem-row p {
    min-height: 54px;
    border-radius: 11px;
    padding: 0.58rem 0.72rem 0.58rem 1rem;
    clip-path: polygon(14px 0, 100% 0, 100% 100%, 14px 100%, 0 50%);
  }

  .problem-row-sub p {
    min-height: 50px;
  }

  .assist-panel {
    margin-top: 1.6rem;
    padding: 0.95rem 0.85rem 0.85rem;
  }

  .assist-list li {
    font-size: 0.92rem;
    min-height: 44px;
    padding: 0.62rem 0.68rem 0.62rem 0.75rem;
  }

  .hero-media img {
    max-height: 420px;
  }

  .brand-wordmark {
    font-size: 1.95rem;
  }

  .brand {
    max-width: 190px;
  }

  .footer-simple {
    gap: 0.8rem;
  }

  .footer-simple h3 {
    font-size: 1.42rem;
    gap: 0.3rem;
  }

  .footer-simple h3 em {
    display: block;
    width: 100%;
    font-size: 0.94em;
  }

  .footer-badges {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.28rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .footer-badge {
    flex: 0 0 auto;
    min-height: 28px;
    padding: 0.3rem 0.52rem;
    font-size: 0.74rem;
    white-space: nowrap;
  }

  .footer-social-list {
    gap: 0.42rem;
  }

  .footer-social-link {
    min-height: 40px;
    padding: 0.48rem 0.78rem;
    font-size: 0.84rem;
  }

  .footer-social-link img {
    width: 15px;
    height: 15px;
  }

  .footer-copy {
    font-size: 0.72rem;
  }

  .floating-wa {
    right: 0.7rem;
    bottom: 0.7rem;
    min-height: 38px;
    padding: 0.42rem 0.7rem;
    font-size: 0.78rem;
  }

  .floating-wa span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
