:root {
  --navy: #052553;
  --navy-2: #0a3472;
  --ink: #101218;
  --muted: #5f6878;
  --line: #dbe2ec;
  --soft: #f7f9fc;
  --gold: #b79a3c;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(7, 22, 48, .12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --container: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 clamp(22px, 6vw, 110px);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.logo img { width: 216px; height: auto; }
.nav-links { display: flex; align-items: center; gap: clamp(20px, 2.8vw, 44px); font-weight: 600; }
.nav-links a { position: relative; color: #111827; white-space: nowrap; }
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 3px;
  background: var(--navy);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 30px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  color: var(--navy) !important;
  font-weight: 800;
  transition: .2s ease;
}
.nav-cta:hover { background: var(--navy); color: #fff !important; transform: translateY(-1px); }

.nav-toggle { display: none; background: none; border: 0; padding: 10px; }
.nav-toggle span { display:block; width:26px; height:2px; background:var(--ink); margin:6px 0; }

.section-pad { padding: clamp(70px, 8vw, 120px) clamp(22px, 6vw, 110px); }
.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(14, 69, 139, .10), transparent 35%),
    linear-gradient(180deg, #fff 0%, #f9fbfe 100%);
}
.hero-copy { max-width: 760px; }
.hero h1,
.contact-hero h2 {
  margin: 0;
  font-size: clamp(44px, 5.6vw, 80px);
  line-height: .98;
  letter-spacing: -0.052em;
  font-weight: 800;
}
.hero h1 span { color: var(--navy-2); }
.hero p,
.contact-hero p,
.showcase-copy p,
.management-card p {
  margin: 26px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 22px);
}
.hero-actions { display:flex; flex-wrap:wrap; gap:22px; margin-top:34px; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:14px;
  min-height:64px; padding:0 30px;
  border-radius:999px;
  font-size:18px; font-weight:800;
  transition:.2s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color:#fff; box-shadow:0 15px 35px rgba(5,37,83,.22); }
.btn-outline { background:#fff; border:2px solid var(--navy-2); color:var(--navy); }
.btn:hover { transform: translateY(-3px); }
.btn-icon { font-size:24px; line-height:1; }
.hero-visual { position: relative; margin-right: -40px; }
.hero-visual::before {
  content:""; position:absolute; inset:auto 15% -6% 10%; height:32%;
  background: radial-gradient(ellipse, rgba(5,37,83,.18), transparent 70%);
  filter: blur(10px); z-index:0;
}
.hero-visual img { position:relative; z-index:1; width:100%; border-radius: 24px; }

.what-we-do { background: #fff; padding-top: 72px; }
.section-heading { text-align: center; max-width: 820px; margin: 0 auto 28px; }
.what-we-do .section-heading h2 {
  display:inline-block;
  position:relative;
  font-size: clamp(28px, 2.3vw, 36px);
  line-height:1.15;
  letter-spacing:-0.025em;
  font-weight:800;
}
.what-we-do .section-heading h2::after {
  content:"";
  position:absolute;
  left:50%;
  bottom:-12px;
  width:70px;
  height:3px;
  border-radius:999px;
  transform:translateX(-50%);
  background:var(--navy-2);
}
.eyebrow {
  margin:0 0 14px !important;
  font-size:14px !important;
  letter-spacing:.34em;
  text-transform:uppercase;
  font-weight:800;
  color: var(--navy) !important;
}
.section-heading h2,
.solution-showcase h2,
.management-card h2,
.contact-copy h3 {
  margin:0;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
}
.feature-grid {
  max-width: var(--container);
  margin: 42px auto 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.feature-card {
  display:grid;
  grid-template-columns:88px 1fr;
  align-items:center;
  gap:10px 8px;
  padding: 30px 34px;
  border:1px solid var(--line);
  border-radius: 18px;
  background:#fff;
  box-shadow: 0 18px 45px rgba(6, 29, 61, .07);
  min-height: 170px;
  transition: .25s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-icon,
.contact-icon {
  width:64px; height:64px; display:grid; place-items:center;
  border-radius:50%; background:#edf2f8; color:var(--navy); font-size:28px; font-weight:800;
}
.feature-card .feature-icon { grid-row: 1 / span 3; align-self:start; margin-top:2px; }
.feature-card h3 { margin:0 0 6px; font-size:20px; line-height:1.25; letter-spacing:-.02em; font-weight:700; }
.feature-card p { color: var(--muted); margin:0 0 12px; font-size:16px; line-height:1.55; }
.feature-card a { color:var(--navy-2); font-weight:700; font-size:15px; }


.solution-showcase {
  display:grid; grid-template-columns: .95fr 1.05fr; align-items:center; gap:60px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}
.clean-list { margin:28px 0 0; padding:0; list-style:none; display:grid; gap:14px; color:#263142; font-weight:700; }
.clean-list li { display:flex; gap:12px; align-items:center; }
.clean-list li::before { content:""; width:10px; height:10px; border-radius:50%; background:var(--gold); box-shadow:0 0 0 6px rgba(183,154,60,.13); }
.phone-stack { position:relative; min-height:720px; display:grid; place-items:center; }
.phone-frame {
  width:min(360px, 78vw); aspect-ratio: 832/1792; padding:14px;
  border-radius:48px; background:#0a0d13;
  box-shadow: 0 30px 70px rgba(4,12,30,.25);
  overflow:hidden;
}
.phone-frame img { width:100%; height:100%; object-fit:cover; border-radius:36px; }
.main-phone { transform: rotate(2deg); }
.management-section { display:grid; grid-template-columns: 1fr .78fr; gap:44px; align-items:center; }
.management-card {
  padding: clamp(32px, 5vw, 62px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy), #071b3a);
  color:#fff;
  box-shadow: var(--shadow);
}
.management-card .eyebrow, .management-card p { color: rgba(255,255,255,.78) !important; }
.stats-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:16px; margin-top:34px; }
.stats-grid div { padding:22px; border:1px solid rgba(255,255,255,.16); border-radius:18px; background:rgba(255,255,255,.06); }
.stats-grid strong { display:block; font-size:34px; color:#fff; }
.stats-grid span { color:rgba(255,255,255,.74); font-weight:700; }
.login-preview { justify-self:center; }
.login-preview img { max-height:680px; border-radius:38px; filter: drop-shadow(0 32px 60px rgba(6,12,24,.22)); }

.contact {
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.82)),
    url('contact-line-art.png') right 8% top 10% / 44% auto no-repeat,
    #fbfdff;
  border-top:1px solid var(--line);
}
.contact-hero { max-width:880px; margin-bottom:70px; }
.contact-content { display:grid; grid-template-columns: .78fr 1fr; gap:70px; max-width:var(--container); margin:0 auto; align-items:center; }
.contact-copy p { color:var(--muted); font-size:20px; max-width:470px; }
.contact-copy .btn { margin-top:24px; min-width:320px; border-radius:10px; }
.contact-cards { display:grid; gap:18px; }
.contact-card {
  display:flex; gap:24px; align-items:center; padding:24px 30px;
  background:#fff; border:1px solid var(--line); border-radius:18px;
  box-shadow: 0 15px 38px rgba(5, 22, 48, .08);
  font-size:22px;
}
.contact-icon { background:var(--navy); color:#fff; flex:0 0 64px; font-size:30px; }
.contact-card small { display:block; margin-bottom:4px; color:var(--navy); letter-spacing:.24em; text-transform:uppercase; font-size:14px; font-weight:800; }

.site-footer {
  display:flex; justify-content:space-between; gap:24px; align-items:flex-start;
  padding:42px clamp(22px, 6vw, 110px);
  background:#071b3a; color:#fff;
}
.footer-logo {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:210px;
  min-height:70px;
  padding:8px 12px;
  border-radius:8px;
  background:#fff;
  overflow:hidden;
}
.footer-logo img { width:100%; height:auto; object-fit:contain; }
.footer-logo-fallback { display:none; color:#10131a; font-size:34px; line-height:1; font-weight:400; letter-spacing:-.04em; }
.footer-logo img:not([src]), .footer-logo img[src=""] { display:none; }
.footer-logo img:not([src]) + .footer-logo-fallback, .footer-logo img[src=""] + .footer-logo-fallback { display:block; }
.site-footer p { color:rgba(255,255,255,.72); margin:12px 0 0; }
.footer-links { display:flex; gap:22px; flex-wrap:wrap; font-weight:800; }
.copyright { text-align:right; }

.reveal { opacity:0; transform: translateY(22px); transition: .65s ease; }
.reveal.is-visible { opacity:1; transform:none; }
.delay-1 { transition-delay:.1s; }
.delay-2 { transition-delay:.18s; }

@media (max-width: 1120px) {
  .nav-toggle { display:block; }
  .nav-links {
    position:fixed; inset:98px 0 auto 0; display:none; flex-direction:column; align-items:flex-start;
    padding:24px; background:#fff; border-bottom:1px solid var(--line); box-shadow:var(--shadow);
  }
  .nav-links.open { display:flex; }
  .hero, .solution-showcase, .management-section, .contact-content { grid-template-columns:1fr; }
  .hero { min-height:auto; }
  .hero-visual { margin:0; }
  .feature-grid { grid-template-columns:1fr; }
  .feature-card { grid-template-columns:72px 1fr; }
  .login-preview img { max-height:560px; margin:auto; }
}
@media (max-width: 720px) {
  .site-header { height:84px; padding-inline:20px; }
  .logo img { width:165px; }
  .nav-links { inset:84px 0 auto 0; }
  .section-pad { padding:62px 20px; }
  .hero h1 { font-size:46px; }
  .hero-actions, .btn { width:100%; }
  .btn { justify-content:space-between; }
  .feature-card { padding:26px; }
  .phone-stack { min-height:560px; }
  .stats-grid { grid-template-columns:1fr; }
  .contact-card { align-items:flex-start; font-size:18px; padding:20px; }
  .contact-copy .btn { min-width:0; }
  .site-footer { flex-direction:column; }
  .copyright { text-align:left; }
}

/* Property Management page */
.pm-hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: clamp(42px, 6vw, 90px);
  background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
}
.pm-hero-copy { max-width: 620px; }
.pm-hero h1 {
  margin: 0;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 760;
}
.pm-hero-copy p:not(.eyebrow),
.pm-section-intro p,
.pm-section-heading p,
.pm-quote-card p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.65;
}
.pm-hero-image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(7, 22, 48, .10);
}
.muted-eyebrow { color: #6b7483 !important; }
.pm-approach { background: #fff; }
.pm-section-intro { max-width: 900px; margin-bottom: 54px; }
.pm-section-intro h2,
.pm-section-heading h2,
.pm-quote-card h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.08;
  letter-spacing: -.046em;
  font-weight: 760;
  color: #11141b;
}
.pm-service-row {
  max-width: var(--container);
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1.12fr) minmax(380px, .88fr);
  gap: 28px;
  align-items: center;
}
.pm-service-row:last-child { margin-bottom: 0; }
.pm-service-icon {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f3f0ea;
  color: var(--navy);
  font-size: 46px;
  box-shadow: inset 0 0 0 1px rgba(5,37,83,.02);
}
.mini-eyebrow {
  margin: 0 0 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6b7483;
  font-size: 15px;
  font-weight: 800;
}
.pm-service-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.2;
  letter-spacing: -.025em;
  font-weight: 760;
}
.pm-service-copy p:not(.mini-eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.pm-service-image {
  width: 100%;
  min-height: 230px;
  max-height: 270px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(7,22,48,.10);
}
.pm-areas {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}
.pm-line-art {
  display: none;
}
.pm-areas::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: min(520px, 34vw);
  height: min(520px, 34vw);
  opacity: .28;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 32%, rgba(6, 42, 84, .08) 33%, transparent 34%),
    linear-gradient(45deg, transparent 40%, rgba(6, 42, 84, .05) 41%, transparent 42%);
  border: 1px solid rgba(6, 42, 84, .04);
  border-radius: 22px 0 0 0;
  transform: translate(20%, 22%);
}
.pm-section-heading {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 76px;
  text-align: center;
}
.pm-section-heading .eyebrow::after {
  content: "";
  display: block;
  width: 82px;
  height: 3px;
  background: var(--navy);
  margin: 14px auto 0;
  border-radius: 999px;
}
.pm-card-grid {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.pm-area-card {
  min-height: 360px;
  padding: 48px 40px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 24px 70px rgba(6, 29, 61, .08);
}
.pm-area-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 34px;
  margin-bottom: 44px;
}
.pm-area-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.1;
  font-weight: 760;
  letter-spacing: -.03em;
}
.pm-area-card h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: var(--navy);
  margin: 22px 0;
  border-radius: 999px;
}
.pm-area-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.pm-quote {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.88)),
    url('property-line-art.png') right 8% center / 32% auto no-repeat,
    #fbfdff;
}
.pm-quote-card {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: clamp(38px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.90);
  box-shadow: 0 26px 80px rgba(7, 22, 48, .08);
}
.pm-quote-card h2 { max-width: 760px; }
.pm-quote-card .btn { border-radius: 12px; min-width: 270px; }
.footer-rich {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr 1.1fr;
  gap: 52px;
  padding-top: 64px;
  padding-bottom: 64px;
  background: radial-gradient(circle at 8% 0%, rgba(25,81,145,.35), transparent 28%), #071b3a;
}
.footer-brand p { max-width: 340px; line-height: 1.65; }
.footer-column { border-left: 1px solid rgba(255,255,255,.18); padding-left: 46px; }
.footer-column h4 {
  margin: 0 0 18px;
  color: #9fc3f3;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 15px;
}
.footer-column a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 260px;
  color: rgba(255,255,255,.92);
  padding: 8px 0;
  font-size: 17px;
}
.footer-details p { margin: 0; color: rgba(255,255,255,.83); line-height: 1.55; font-size: 17px; }

@media (max-width: 1120px) {
  .pm-hero,
  .pm-service-row,
  .pm-quote-card,
  .footer-rich { grid-template-columns: 1fr; }
  .pm-service-row { gap: 20px; }
  .pm-service-image { min-height: 280px; }
  .pm-card-grid { grid-template-columns: 1fr; gap: 24px; }
  .pm-area-card { min-height: auto; }
  .footer-column { border-left: 0; padding-left: 0; }
}
@media (max-width: 720px) {
  .pm-hero h1,
  .pm-section-intro h2,
  .pm-section-heading h2,
  .pm-quote-card h2 { font-size: 42px; }
  .pm-hero-image img { min-height: 320px; }
  .pm-service-icon { width: 88px; height: 88px; font-size: 36px; }
  .pm-area-card { padding: 34px 28px; }
  .pm-area-icon { margin-bottom: 30px; }
}

/* Stable Property Management page rebuild - prevents horizontal clipping on hosted pages */
html, body { max-width: 100%; overflow-x: hidden; }
.property-page, .property-page * { box-sizing: border-box; }
.pm-page-wrap { width: 100%; overflow: hidden; background: #fff; }
.pm-clean-section { width: 100%; padding: clamp(72px, 7vw, 118px) clamp(22px, 6vw, 110px); }
.pm-container { width: min(100%, var(--container)); margin: 0 auto; position: relative; }
.pm-clean-hero { background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%); }
.pm-clean-hero-grid { display: grid; grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr); gap: clamp(42px, 6vw, 88px); align-items: center; }
.pm-clean-copy { min-width: 0; }
.pm-eyebrow { margin: 0 0 18px; letter-spacing: .22em; text-transform: uppercase; font-size: 16px; line-height: 1.2; font-weight: 800; color: #6b7483; }
.pm-clean-copy h1,
.pm-clean-intro h2,
.pm-clean-centered h2,
.pm-clean-quote-card h2 { margin: 0; color: #101218; font-weight: 760; line-height: 1.06; letter-spacing: -.045em; }
.pm-clean-copy h1 { font-size: clamp(44px, 4.5vw, 68px); max-width: 650px; }
.pm-clean-copy p:not(.pm-eyebrow),
.pm-clean-intro p,
.pm-clean-centered p,
.pm-clean-quote-card p { margin: 26px 0 0; max-width: 760px; color: var(--muted); font-size: clamp(18px, 1.25vw, 21px); line-height: 1.65; }
.pm-clean-image { min-width: 0; }
.pm-clean-image img { width: 100%; height: clamp(390px, 42vw, 560px); object-fit: cover; border-radius: 18px; box-shadow: 0 30px 70px rgba(7, 22, 48, .10); }
.pm-clean-approach { background: #fff; }
.pm-clean-intro { max-width: 940px; margin: 0 0 62px; }
.pm-clean-intro h2 { font-size: clamp(40px, 4.4vw, 64px); max-width: 980px; }
.pm-clean-service { display: grid; grid-template-columns: 120px minmax(0, 1.08fr) minmax(360px, .92fr); gap: 30px; align-items: center; margin: 0 0 64px; }
.pm-clean-service:last-child { margin-bottom: 0; }
.pm-clean-icon { width: 116px; height: 116px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: #f3f0ea; color: var(--navy); font-size: 44px; line-height: 1; }
.pm-clean-service-copy { min-width: 0; }
.pm-mini { margin: 0 0 12px; letter-spacing: .16em; text-transform: uppercase; color: #6b7483; font-size: 15px; line-height: 1.3; font-weight: 800; }
.pm-clean-service h3 { margin: 0 0 12px; color: #101218; font-size: clamp(24px, 2vw, 30px); line-height: 1.22; letter-spacing: -.025em; font-weight: 760; }
.pm-clean-service p:not(.pm-mini) { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.pm-clean-service img { width: 100%; height: 255px; object-fit: cover; border-radius: 12px; box-shadow: 0 20px 50px rgba(7,22,48,.10); }
.pm-clean-areas { position: relative; background: linear-gradient(180deg, #fff 0%, #fbfdff 100%); }
.pm-clean-line-art { position: absolute; right: clamp(18px, 4vw, 80px); top: 70px; width: min(32vw, 470px); max-width: 470px; opacity: .16; pointer-events: none; }
.pm-clean-centered { max-width: 850px; margin: 0 auto 74px; text-align: center; }
.pm-clean-centered .pm-eyebrow::after { content: ""; display: block; width: 82px; height: 3px; margin: 14px auto 0; border-radius: 999px; background: var(--navy); }
.pm-clean-centered h2 { font-size: clamp(42px, 4.6vw, 68px); color: var(--navy); }
.pm-clean-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 44px); }
.pm-clean-card { min-width: 0; min-height: 350px; padding: clamp(34px, 3.5vw, 48px) clamp(28px, 3vw, 40px); border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: 0 24px 70px rgba(6, 29, 61, .08); }
.pm-card-icon { width: 72px; height: 72px; display: grid; place-items: center; margin-bottom: 42px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 32px; line-height: 1; }
.pm-clean-card h3 { margin: 0; color: var(--navy); font-size: clamp(28px, 2.4vw, 36px); line-height: 1.08; letter-spacing: -.03em; font-weight: 760; }
.pm-clean-card h3::after { content: ""; display: block; width: 44px; height: 3px; margin: 22px 0; border-radius: 999px; background: var(--navy); }
.pm-clean-card p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.pm-clean-quote { background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.88)), url('property-line-art.png') right 8% center / min(32%, 430px) auto no-repeat, #fbfdff; }
.pm-clean-quote-card { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 42px; align-items: center; padding: clamp(40px, 5vw, 72px); border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.92); box-shadow: 0 26px 80px rgba(7, 22, 48, .08); }
.pm-clean-quote-card h2 { max-width: 760px; font-size: clamp(42px, 4.6vw, 68px); color: var(--navy); }
.pm-clean-quote-card .btn { min-width: 270px; border-radius: 12px; }

@media (max-width: 1120px) {
  .pm-clean-hero-grid,
  .pm-clean-service,
  .pm-clean-quote-card { grid-template-columns: 1fr; }
  .pm-clean-service { gap: 22px; }
  .pm-clean-service img { height: 320px; }
  .pm-clean-cards { grid-template-columns: 1fr; }
  .pm-clean-card { min-height: auto; }
  .pm-clean-line-art { width: 420px; opacity: .10; }
}
@media (max-width: 720px) {
  .pm-clean-section { padding: 62px 20px; }
  .pm-clean-copy h1,
  .pm-clean-intro h2,
  .pm-clean-centered h2,
  .pm-clean-quote-card h2 { font-size: 42px; }
  .pm-clean-image img { height: 320px; }
  .pm-clean-icon { width: 88px; height: 88px; font-size: 34px; }
  .pm-clean-service img { height: 240px; }
  .pm-clean-quote-card .btn { width: 100%; min-width: 0; }
}

/* PropTech Solutions page */
.proptech-page, .proptech-page * { box-sizing: border-box; }
.proptech-page { overflow-x: hidden; background: #fff; }
.proptech-wrap { width: 100%; overflow: hidden; }
.pt-section { width: 100%; padding: clamp(74px, 7vw, 120px) clamp(22px, 6vw, 110px); }
.pt-container { width: min(100%, var(--container)); margin: 0 auto; position: relative; }
.pt-eyebrow { margin: 0 0 22px; color: var(--navy); text-transform: uppercase; letter-spacing: .22em; font-weight: 800; font-size: 15px; line-height: 1.2; }
.pt-eyebrow::after { content: ""; display: block; width: 82px; height: 3px; margin-top: 22px; border-radius: 999px; background: var(--navy-2); }
.pt-eyebrow.muted { color: #626b7a; }
.pt-hero { min-height: 760px; display: flex; align-items: center; background: linear-gradient(180deg, #fff 0%, #fbfdff 100%); }
.pt-hero-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: clamp(42px, 6vw, 88px); align-items: center; }
.pt-hero-copy { min-width: 0; }
.pt-hero h1,
.pt-product-card h2,
.pt-micro h2,
.pt-quote-card h2 { margin: 0; color: #071b3a; font-weight: 760; letter-spacing: -.045em; line-height: 1.08; }
.pt-hero h1 { font-size: clamp(46px, 5vw, 74px); max-width: 740px; }
.pt-hero-copy p:not(.pt-eyebrow),
.pt-product-card p,
.pt-micro-copy > p,
.pt-quote-card p { color: var(--muted); font-size: clamp(18px, 1.3vw, 21px); line-height: 1.65; }
.pt-hero-copy p:not(.pt-eyebrow) { max-width: 620px; margin: 32px 0 0; }
.pt-hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 36px; }
.pt-hero-visual { min-width: 0; border-radius: 26px; overflow: hidden; filter: drop-shadow(0 34px 70px rgba(7,22,48,.12)); }
.pt-hero-visual img { width: 100%; height: clamp(420px, 44vw, 620px); object-fit: cover; object-position: right center; }

.pt-products { background: linear-gradient(180deg, #fbfdff 0%, #fff 100%); }
.pt-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 3vw, 42px); align-items: stretch; }
.pt-product-card { min-width: 0; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.96); box-shadow: 0 24px 70px rgba(6,29,61,.08); padding: clamp(34px, 3.6vw, 50px); overflow: hidden; }
.pt-product-top { display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, .78fr); gap: 22px; align-items: start; }
.pt-product-top.qplus-top { grid-template-columns: minmax(0, 1fr) minmax(210px, .52fr); align-items: center; }
.pt-product-card h2 { font-size: clamp(30px, 3vw, 45px); color: var(--navy); }
.pt-product-card p { margin: 24px 0 0; font-size: 17px; }
.pt-product-device { justify-self: end; align-self: start; max-width: 100%; }
.pt-product-device.laptop { width: 420px; margin-top: -10px; }
.pt-product-device.phone { width: 240px; border-radius: 32px; filter: drop-shadow(0 22px 40px rgba(6, 22, 48, .16)); }
.pt-list { margin: 32px 0 0; padding-top: 24px; border-top: 1px solid var(--line); display: grid; gap: 16px; color: #1f2b3b; font-size: 17px; }
.pt-list.compact { border-top: 0; padding-top: 0; margin-top: 26px; gap: 13px; }
.pt-list div { display: flex; gap: 16px; align-items: center; }
.pt-list span { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 38px; border-radius: 50%; background: #eaf2ff; color: #0642b8; font-weight: 800; }
.pt-commercial,
.pt-audience-row { display: grid; grid-template-columns: 76px 1fr; gap: 22px; align-items: center; margin-top: 30px; padding: 28px; border-radius: 20px; background: linear-gradient(135deg, #f7f9fd, #fff); border: 1px solid #e7edf5; }
.pt-audience-row { background: #fff; border-radius: 0; border: 0; border-top: 1px solid var(--line); padding: 24px 0 0; }
.pt-circle-icon { width: 70px; height: 70px; display: grid; place-items: center; border-radius: 50%; background: #eaf2ff; color: #0642b8; font-size: 30px; font-weight: 800; }
.pt-circle-icon.gold { color: var(--gold); background: #f4f0e7; }
.pt-commercial h3,
.pt-audience-row h3,
.pt-micro-cards h3 { margin: 0; color: #0642b8; font-size: 22px; line-height: 1.2; font-weight: 760; }
.pt-commercial p,
.pt-audience-row p { margin: 10px 0 0; font-size: 16px; line-height: 1.55; }

.pt-micro { background: radial-gradient(circle at 72% 26%, rgba(5,37,83,.05), transparent 34%), #fff; }
.pt-micro-grid { display: grid; grid-template-columns: minmax(0, .94fr) minmax(310px, .48fr); gap: clamp(44px, 6vw, 90px); align-items: center; }
.pt-micro h2 { font-size: clamp(44px, 4.8vw, 72px); max-width: 760px; color: #101218; }
.pt-micro-copy > p { max-width: 760px; margin: 26px 0 0; }
.pt-micro-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 36px; }
.pt-micro-cards article { padding: 34px 34px 38px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 20px 60px rgba(7,22,48,.08); }
.pt-micro-cards h3 { margin-top: 18px; color: #101218; font-size: 24px; }
.pt-micro-cards p { color: var(--muted); font-size: 16px; line-height: 1.65; margin: 20px 0 0; }
.pt-micro-phone { justify-self: center; }
.pt-micro-phone img { max-height: 720px; width: min(360px, 76vw); object-fit: contain; border-radius: 38px; filter: drop-shadow(0 30px 65px rgba(6,12,24,.22)); }

.pt-quote { background: linear-gradient(180deg, #fbfdff 0%, #fff 100%); }
.pt-quote-card { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 40px; align-items: center; border: 1px solid var(--line); border-radius: 28px; padding: clamp(40px, 5vw, 72px); background: rgba(255,255,255,.92); box-shadow: 0 26px 80px rgba(7,22,48,.08); }
.pt-quote-card h2 { font-size: clamp(40px, 4.4vw, 64px); max-width: 840px; }
.pt-quote-card p { max-width: 720px; margin: 24px 0 0; }
.pt-quote-card .btn { min-width: 260px; border-radius: 12px; }

@media (max-width: 1120px) {
  .pt-hero-grid,
  .pt-product-grid,
  .pt-micro-grid,
  .pt-quote-card { grid-template-columns: 1fr; }
  .pt-hero { min-height: auto; }
  .pt-product-top,
  .pt-product-top.qplus-top { grid-template-columns: 1fr; }
  .pt-product-device { justify-self: center; }
  .pt-product-device.phone { width: min(300px, 70vw); }
  .pt-micro-cards { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .pt-section { padding: 62px 20px; }
  .pt-hero h1,
  .pt-micro h2,
  .pt-quote-card h2 { font-size: 42px; }
  .pt-hero-visual img { height: 360px; }
  .pt-product-card { padding: 28px 22px; border-radius: 22px; }
  .pt-product-card h2 { font-size: 34px; }
  .pt-commercial,
  .pt-audience-row { grid-template-columns: 1fr; }
  .pt-quote-card .btn { width: 100%; min-width: 0; }
}

/* About Us page */
.about-page, .about-page * { box-sizing: border-box; }
.about-page { overflow-x: hidden; background: #fff; }
.about-wrap { width: 100%; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%); }
.about-section { padding: clamp(72px, 6.8vw, 118px) clamp(22px, 6vw, 110px); }
.about-card {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(32px, 3.6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 26px 80px rgba(7, 22, 48, .08);
}
.about-row {
  display: grid;
  grid-template-columns: 150px minmax(0,1fr);
  gap: clamp(34px, 4.6vw, 76px);
  align-items: start;
  padding: 0 0 clamp(38px, 4.2vw, 58px);
  margin: 0 0 clamp(34px, 3.8vw, 50px);
  border-bottom: 1px solid rgba(7, 22, 48, .16);
}
.about-row:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.about-icon-large {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f2eee7;
  color: #0a234a;
}
.about-icon svg { width: 62px; height: 62px; stroke: #0a234a; fill: none; stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }
.about-icon svg circle:nth-of-type(1),
.about-intro-row .about-icon svg path:nth-of-type(1) { stroke: #b79a3c; }
.about-copy h1,
.about-copy h2 {
  margin: 0 0 14px;
  color: #101218;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: -.038em;
}
.about-copy p {
  margin: 0;
  max-width: 860px;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.72;
}
.about-copy p + p { margin-top: 26px; }
.focus-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 0;
  margin-top: 18px;
}
.focus-item {
  min-width: 0;
  padding: 4px clamp(18px, 2vw, 28px);
  border-left: 1px solid rgba(7, 22, 48, .16);
}
.focus-item:first-child { border-left: 0; padding-left: 0; }
.focus-icon {
  display: block;
  color: #0a234a;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 16px;
}
.focus-item:nth-child(3) .focus-icon,
.focus-item:nth-child(5) .focus-icon { color: #b79a3c; }
.focus-item p {
  margin: 0;
  color: #263142;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}

@media (max-width: 1120px) {
  .about-row { grid-template-columns: 1fr; gap: 24px; }
  .focus-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px 0; }
  .focus-item:nth-child(odd) { border-left: 0; padding-left: 0; }
}
@media (max-width: 720px) {
  .about-section { padding: 56px 20px; }
  .about-card { padding: 28px 22px; border-radius: 22px; }
  .about-icon-large { width: 92px; height: 92px; }
  .about-icon svg { width: 48px; height: 48px; }
  .about-copy h1,
  .about-copy h2 { font-size: 34px; }
  .focus-grid { grid-template-columns: 1fr; }
  .focus-item { border-left: 0; padding: 0; }
}

/* Contact Us page */
.contact-page, .contact-page * { box-sizing: border-box; }
.contact-page { overflow-x: hidden; background: #fff; }
.contact-page-wrap { width: 100%; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%); }
.contact-page-container { width: min(100%, 1280px); margin: 0 auto; position: relative; }
.contact-page-hero {
  padding: clamp(62px, 6vw, 92px) clamp(22px, 6vw, 110px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.contact-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: clamp(34px, 5vw, 90px);
  align-items: center;
}
.contact-eyebrow {
  margin: 0 0 18px;
  color: #5f6878;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
}
.contact-page-hero h1 {
  margin: 0;
  color: #101218;
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 760;
}
.contact-page-hero p:not(.contact-eyebrow) {
  margin: 18px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.65;
}
.contact-illustration { display: flex; justify-content: center; align-items: center; min-height: 180px; }
.contact-city-mark {
  width: min(420px, 100%);
  height: 220px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #f4f0ea 0%, rgba(244,240,234,.55) 48%, transparent 70%);
}
.contact-city-mark svg { width: 90%; height: 90%; overflow: visible; }
.contact-city-mark svg path { fill: none; stroke: #0a234a; stroke-width: 3.4; stroke-linecap: round; stroke-linejoin: round; }
.contact-city-mark svg path:nth-child(2) { opacity: .12; stroke-width: 9; }
.contact-city-mark .gold-stroke { stroke: var(--gold); }
.contact-page-section {
  padding: clamp(42px, 5.6vw, 76px) clamp(22px, 6vw, 110px) clamp(70px, 7vw, 110px);
  background: linear-gradient(180deg, #fff 0%, #fbfaf8 100%);
}
.contact-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(24px, 3vw, 34px);
  align-items: stretch;
}
.consult-card,
.contact-detail-panel {
  border: 1px solid rgba(7,22,48,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 26px 80px rgba(7, 22, 48, .07);
}
.consult-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  padding: clamp(32px, 4vw, 54px);
}
.consult-icon,
.detail-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex: 0 0 auto;
  background: #f2eee7;
  color: #0a234a;
}
.consult-icon { width: 78px; height: 78px; }
.consult-icon svg { width: 54px; height: 54px; fill: none; stroke: #0a234a; stroke-width: 3.1; stroke-linecap: round; stroke-linejoin: round; }
.consult-icon .gold-stroke { stroke: var(--gold); }
.consult-card h2 {
  margin: 0 0 18px;
  color: #101218;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 760;
}
.consult-card p {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.consult-card p + p { margin-top: 20px; }
.contact-message-btn {
  margin-top: 28px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 16px;
  box-shadow: none;
}
.contact-detail-panel { overflow: hidden; }
.detail-row {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 22px 36px;
  border-bottom: 1px solid rgba(7,22,48,.12);
  color: #101218;
  font-size: 17px;
  line-height: 1.45;
}
.detail-row:last-child { border-bottom: 0; }
.detail-icon { width: 56px; height: 56px; font-size: 26px; }
.detail-icon.gold { color: var(--gold); background: #f2eee7; }
.detail-row small {
  display: block;
  margin-bottom: 6px;
  color: #4d5767;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
}
.social-row { display: flex; gap: 16px; margin-top: 22px; }
.social-row a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: #fff; font-weight: 700; }

@media (max-width: 1120px) {
  .contact-page-hero-grid,
  .contact-panel-grid { grid-template-columns: 1fr; }
  .contact-illustration { justify-content: flex-start; }
  .contact-city-mark { width: 340px; height: 180px; }
}
@media (max-width: 720px) {
  .contact-page-hero,
  .contact-page-section { padding-inline: 20px; }
  .consult-card { grid-template-columns: 1fr; padding: 28px 22px; }
  .detail-row { padding: 20px; gap: 18px; align-items: flex-start; font-size: 16px; }
  .detail-icon { width: 48px; height: 48px; font-size: 22px; }
  .contact-page-hero h1 { font-size: 42px; }
}


/* PropTech visual fixes - clean device images and prevent clipped screenshots */
.proptech-page .pt-hero-grid {
  grid-template-columns: minmax(360px, .78fr) minmax(560px, 1.22fr);
  overflow: visible;
}
.proptech-page .pt-hero-visual {
  overflow: visible;
  filter: none;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proptech-page .pt-hero-visual img {
  display: block;
  width: min(100%, 980px);
  height: auto;
  max-height: 640px;
  object-fit: contain;
  object-position: center;
  border-radius: 24px;
  filter: drop-shadow(0 34px 70px rgba(7,22,48,.10));
}
.proptech-page .pt-product-card {
  position: relative;
  isolation: isolate;
}
.proptech-page .pt-product-top {
  grid-template-columns: minmax(0, 1fr) minmax(190px, .74fr);
  align-items: start;
  overflow: visible;
}
.proptech-page .pt-product-top.qplus-top {
  grid-template-columns: minmax(0, 1fr) minmax(190px, .46fr);
  align-items: start;
}
.proptech-page .pt-product-device {
  display: block;
  position: relative;
  z-index: 1;
  object-fit: contain;
}
.proptech-page .pt-product-device.laptop {
  width: min(100%, 360px);
  margin: -6px 0 0 auto;
  border-radius: 18px;
}
.proptech-page .pt-product-device.phone {
  width: min(100%, 210px);
  margin: 0 auto;
  background: transparent;
  border-radius: 34px;
}
.proptech-page .pt-micro-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}
.proptech-page .pt-micro-phone img {
  display: block;
  width: min(345px, 100%);
  max-height: 680px;
  object-fit: contain;
  background: transparent;
  border-radius: 38px;
}
@media (max-width: 1280px) {
  .proptech-page .pt-product-top,
  .proptech-page .pt-product-top.qplus-top {
    grid-template-columns: 1fr;
  }
  .proptech-page .pt-product-device.laptop,
  .proptech-page .pt-product-device.phone {
    justify-self: center;
    margin-top: 24px;
  }
  .proptech-page .pt-product-device.laptop { width: min(420px, 100%); }
  .proptech-page .pt-product-device.phone { width: min(230px, 80vw); }
}
@media (max-width: 1120px) {
  .proptech-page .pt-hero-grid { grid-template-columns: 1fr; }
  .proptech-page .pt-hero-visual img { max-height: none; }
}


/* Legal pages aligned to the uploaded Techiprop website design */
.legal-page { background:#fff; overflow-x:hidden; }
.legal-page .legal-hero {
  padding: clamp(72px, 6vw, 105px) clamp(22px, 6vw, 110px);
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
  border-bottom: 1px solid var(--line);
}
.legal-page .legal-hero .container { width:min(100%, 980px); margin:0 auto; }
.legal-page .legal-hero h1 {
  margin:0;
  color:#101218;
  font-size: clamp(42px, 4.2vw, 64px);
  line-height:1.04;
  letter-spacing:-.045em;
  font-weight:760;
}
.legal-page .legal-hero p:not(.eyebrow) {
  max-width:720px;
  margin:18px 0 0;
  color:var(--muted);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height:1.65;
}
.legal-page .legal-body {
  padding: clamp(56px, 6vw, 90px) clamp(22px, 6vw, 110px);
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}
.legal-page .legal-content {
  width:min(100%, 960px);
  margin:0 auto;
}
.legal-page .legal-card {
  padding:24px 28px;
  margin-bottom:34px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fbfaf8;
  box-shadow:0 14px 40px rgba(7,22,48,.05);
}
.legal-page .legal-card p { margin:0; font-size:15px; line-height:1.75; color:#4d586a; }
.legal-page .legal-content section {
  margin:0 0 34px;
  padding-bottom:0;
}
.legal-page .legal-content h2 {
  margin:0 0 12px;
  color:#101218;
  font-size: clamp(22px, 2vw, 28px);
  line-height:1.2;
  letter-spacing:-.025em;
  font-weight:760;
}
.legal-page .legal-content h3 {
  margin:22px 0 10px;
  color:#101218;
  font-size:20px;
  line-height:1.25;
  letter-spacing:-.015em;
  font-weight:760;
}
.legal-page .legal-content p,
.legal-page .legal-content li {
  color:#4d586a;
  font-size:16px;
  line-height:1.78;
}
.legal-page .legal-content p { margin:0 0 12px; }
.legal-page .legal-content ul,
.legal-page .legal-content ol { padding-left:24px; margin:12px 0 0; }
.legal-page .notice {
  padding:18px 22px;
  margin:22px 0;
  border-left:4px solid var(--gold);
  border-radius:12px;
  background:#fbfaf4;
}
.legal-page .site-footer.footer-rich { margin-top:0; }
@media(max-width:720px){
  .legal-page .legal-hero,
  .legal-page .legal-body { padding-inline:20px; }
  .legal-page .legal-hero h1 { font-size:40px; }
  .legal-page .legal-card { padding:20px; }
}

/* Consistent footer across every page */
.site-footer.footer-rich {
  display: grid !important;
  grid-template-columns: 1.25fr .9fr .95fr 1.15fr !important;
  gap: clamp(36px, 4vw, 72px) !important;
  align-items: start !important;
  padding: clamp(46px, 5vw, 70px) clamp(28px, 6vw, 110px) !important;
  background: #071f42 !important;
  color: #fff !important;
}
.site-footer.footer-rich .footer-brand,
.site-footer.footer-rich .footer-column {
  min-width: 0 !important;
}
.site-footer.footer-rich .footer-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 210px !important;
  min-height: 76px !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  background: #fff !important;
  overflow: hidden !important;
}
.site-footer.footer-rich .footer-logo img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: 62px !important;
  object-fit: contain !important;
}
.site-footer.footer-rich .footer-logo-fallback { display: none; }
.site-footer.footer-rich .footer-brand p {
  max-width: 360px !important;
  margin: 16px 0 0 !important;
  color: rgba(255,255,255,.84) !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
}
.site-footer.footer-rich .footer-column {
  border-left: 1px solid rgba(255,255,255,.18) !important;
  padding-left: clamp(28px, 3vw, 48px) !important;
}
.site-footer.footer-rich .footer-column h4 {
  margin: 0 0 24px !important;
  color: #9fc3f3 !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}
.site-footer.footer-rich .footer-column a {
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline !important;
  gap: 24px !important;
  max-width: 280px !important;
  padding: 7px 0 !important;
  color: rgba(255,255,255,.96) !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}
.site-footer.footer-rich .footer-column a span {
  color: rgba(255,255,255,.9) !important;
  font-size: 22px !important;
  line-height: 1 !important;
}
.site-footer.footer-rich .footer-details p {
  margin: 0 !important;
  color: rgba(255,255,255,.95) !important;
  font-size: 18px !important;
  line-height: 1.45 !important;
}
@media (max-width: 1120px) {
  .site-footer.footer-rich {
    grid-template-columns: 1fr 1fr !important;
  }
  .site-footer.footer-rich .footer-column {
    border-left: 0 !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 720px) {
  .site-footer.footer-rich {
    grid-template-columns: 1fr !important;
    padding: 42px 22px !important;
  }
  .site-footer.footer-rich .footer-logo { width: 190px !important; }
}


/* Payment gateway clarity sections */
.compliance-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}
.compliance-grid {
  max-width: var(--container);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.compliance-card {
  padding: 30px 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(6, 29, 61, .07);
}
.compliance-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.compliance-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.revenue-note {
  max-width: var(--container);
  margin: 26px auto 0;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 24px;
  background: #071f42;
  color: #fff;
  box-shadow: var(--shadow);
}
.revenue-note h3 {
  margin: 0 0 14px;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.1;
}
.revenue-note p {
  max-width: 1080px;
  margin: 0 0 16px;
  color: rgba(255,255,255,.86);
  font-size: 17px;
  line-height: 1.7;
}
.revenue-note .btn-outline {
  margin-top: 8px;
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.qplus-clarity {
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf4 100%);
}
.qplus-grid {
  margin-top: 34px;
}
@media (max-width: 980px) {
  .compliance-grid { grid-template-columns: 1fr; }
}
