/* ============================================================
   LMB VENTURES LIMITED · ValuAI — Shared Stylesheet
   Design: Refined Luxury Proptech | Dark Blue + Gold + White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── CSS Variables ─── */
:root {
  --navy:        #0f2b5e;
  --navy-deep:   #091e45;
  --navy-mid:    #163272;
  --navy-light:  #1e4080;
  --gold:        #c9a84c;
  --gold-light:  #e2c97e;
  --white:       #ffffff;
  --off-white:   #f7f8fc;
  --grey-light:  #eef0f6;
  --grey-mid:    #c8cdd8;
  --grey-text:   #6b7280;
  --dark-text:   #1a2340;
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', 'Segoe UI', system-ui, sans-serif;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px rgba(15,43,94,0.08);
  --shadow-md:   0 6px 24px rgba(15,43,94,0.12);
  --shadow-lg:   0 16px 48px rgba(15,43,94,0.18);
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
  --max-w:       1200px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--grey-light); }
::-webkit-scrollbar-thumb { background: var(--navy-mid); border-radius: 3px; }

/* ─── Container ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ─── Section Padding ─── */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }

/* ─── Section Labels ─── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-label::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy); font-weight: 700; line-height: 1.25;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--grey-text);
  max-width: 580px; line-height: 1.7;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-md);
  font-size: 0.95rem; font-weight: 500; transition: var(--transition);
  white-space: nowrap; letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--navy); color: var(--white);
  box-shadow: 0 4px 16px rgba(15,43,94,0.3);
}
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,43,94,0.35); }
.btn-secondary {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy); box-shadow: none;
}
.btn-secondary:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold); color: var(--navy-deep);
  font-weight: 600; box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ─── HEADER ─── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-light);
  box-shadow: 0 2px 16px rgba(15,43,94,0.07);
  transition: var(--transition);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
/* Logo */
.site-logo {
  display: flex; align-items: center; gap: 0; flex-shrink: 0;
  font-family: var(--font-display);
}
.logo-lmb {
  font-size: 1.15rem; font-weight: 700; color: var(--navy);
  letter-spacing: 0.02em;
}
.logo-sep {
  width: 1px; height: 22px; background: var(--grey-mid);
  margin: 0 10px; display: inline-block;
}
.logo-valu {
  font-size: 1.15rem; font-weight: 400; color: var(--navy);
}
.logo-ai {
  font-size: 1.15rem; font-weight: 700; color: var(--gold);
}
/* Nav */
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-size: 0.92rem; font-weight: 500; color: var(--dark-text);
  transition: var(--transition); position: relative;
}
.site-nav a:hover, .site-nav a.active { color: var(--navy); }
.site-nav a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px; height: 2px; background: var(--gold);
  border-radius: 2px; transition: var(--transition);
}
.site-nav a:hover::after, .site-nav a.active::after { transform: translateX(-50%) scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.btn-contact {
  padding: 9px 22px; border-radius: var(--radius-md);
  background: var(--navy); color: var(--white);
  font-size: 0.88rem; font-weight: 500;
  transition: var(--transition);
}
.btn-contact:hover { background: var(--navy-deep); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--transition);
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: absolute; top: 68px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--grey-light);
  box-shadow: var(--shadow-md); padding: 16px 24px 24px;
  flex-direction: column; gap: 4px;
  animation: slideDown 0.25s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 0.98rem; font-weight: 500; color: var(--dark-text);
  transition: var(--transition);
}
.mobile-menu a:hover { background: var(--grey-light); color: var(--navy); }
.mobile-menu .btn-contact { margin-top: 8px; text-align: center; }
@keyframes slideDown { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-mid) 75%, #1a4a8a 100%);
  position: relative; overflow: hidden;
  padding: 96px 0 80px;
}
/* Geometric background pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%),
    linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.015) 50%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom right, transparent 49%, var(--white) 50%);
  pointer-events: none;
}
/* Grid lines decoration */
.hero-grid {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-grid::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50px; padding: 6px 16px;
  font-size: 0.78rem; font-weight: 500; color: var(--gold-light);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.2;
  margin-bottom: 20px; color: var(--white);
}
.hero-title span { color: var(--gold-light); }
.hero-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,0.75);
  line-height: 1.75; margin-bottom: 36px;
  max-width: 460px;
}
/* Trust badges */
.trust-badges {
  display: flex; flex-direction: column; gap: 10px; margin-top: 28px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: rgba(255,255,255,0.82);
}
.trust-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(201,168,76,0.2); border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.72rem; flex-shrink: 0;
}

/* Valuation card */
.hero-card {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600; color: var(--navy);
  margin-bottom: 6px;
}
.hero-card-sub { font-size: 0.85rem; color: var(--grey-text); margin-bottom: 24px; }
.val-input-wrap { position: relative; margin-bottom: 12px; }
.val-input {
  width: 100%; padding: 14px 16px 14px 44px;
  border: 1.5px solid var(--grey-mid); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 0.92rem; color: var(--dark-text);
  background: var(--white); transition: var(--transition);
  outline: none;
}
.val-input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(15,43,94,0.08); }
.val-input::placeholder { color: var(--grey-mid); }
.val-input-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--grey-text); font-size: 1rem; pointer-events: none;
}
.val-btn {
  width: 100%; padding: 14px;
  background: var(--navy); color: var(--white);
  border-radius: var(--radius-md); font-size: 1rem; font-weight: 600;
  letter-spacing: 0.02em; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(15,43,94,0.3);
}
.val-btn:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,43,94,0.4); }
.val-disclaimer {
  text-align: center; font-size: 0.78rem; color: var(--grey-text); margin-top: 12px;
}
.val-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--grey-light);
}
.val-stat-item { text-align: center; }
.val-stat-num {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--navy); display: block;
}
.val-stat-label { font-size: 0.75rem; color: var(--grey-text); margin-top: 2px; }

/* ─── TRACK RECORD ─── */
.track-record { background: var(--navy); position: relative; overflow: hidden; }
.track-record::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.track-record .section-label { color: var(--gold-light); }
.track-record .section-label::before { background: var(--gold); }
.track-record .section-title { color: var(--white); }
.track-record .section-subtitle { color: rgba(255,255,255,0.65); }

/* Counters row */
.counters-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin: 48px 0 56px;
  background: rgba(255,255,255,0.06); border-radius: var(--radius-lg);
  overflow: hidden;
}
.counter-item {
  padding: 36px 24px; text-align: center;
  background: rgba(255,255,255,0.03);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.counter-item:last-child { border-right: none; }
.counter-item:hover { background: rgba(255,255,255,0.07); }
.counter-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; color: var(--white);
  display: block; line-height: 1; margin-bottom: 8px;
}
.counter-num .suffix { color: var(--gold-light); }
.counter-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.4; }

/* Testimonials */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: var(--transition); position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; right: 20px;
  font-family: var(--font-display); font-size: 4rem; line-height: 1;
  color: rgba(201,168,76,0.2);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 12px; }
.testimonial-text { font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--white); flex-shrink: 0;
}
.testimonial-name { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.testimonial-loc { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ─── SERVICES (scenario cards) ─── */
.services { background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; border: 1px solid var(--grey-light);
  box-shadow: var(--shadow-sm); transition: var(--transition);
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--grey-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--navy); }
.service-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--navy); }
.service-desc { font-size: 0.92rem; color: var(--grey-text); line-height: 1.65; flex: 1; }
.service-card .btn { align-self: flex-start; margin-top: 8px; }

/* ─── METHODOLOGY ─── */
.methodology { background: var(--white); }
.method-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; margin-top: 16px;
}
.method-items { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.method-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 24px; border-radius: var(--radius-md);
  border: 1px solid var(--grey-light); transition: var(--transition);
  background: var(--white);
}
.method-item:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.method-item-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--grey-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; flex-shrink: 0;
  transition: var(--transition);
}
.method-item:hover .method-item-icon { background: var(--navy); }
.method-item-title { font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.method-item-text { font-size: 0.88rem; color: var(--grey-text); line-height: 1.6; }

/* Method visual */
.method-visual {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg); padding: 40px 36px;
  color: var(--white); position: relative; overflow: hidden;
}
.method-visual::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%);
}
.method-visual-title {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 600; margin-bottom: 28px; color: var(--gold-light);
}
.method-steps { display: flex; flex-direction: column; gap: 0; }
.method-step { display: flex; gap: 16px; padding-bottom: 24px; position: relative; }
.method-step:last-child { padding-bottom: 0; }
.method-step-line {
  display: flex; flex-direction: column; align-items: center; flex-shrink: 0;
}
.method-step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(201,168,76,0.2); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: var(--gold); flex-shrink: 0;
}
.method-step-connector {
  width: 1px; flex: 1; background: rgba(201,168,76,0.2); margin: 4px 0;
}
.method-step:last-child .method-step-connector { display: none; }
.method-step-content { padding-top: 4px; }
.method-step-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.method-step-desc { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ─── WHY CHOOSE US ─── */
.why-us { background: var(--grey-light); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
.why-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  border: 1px solid transparent; transition: var(--transition);
  text-align: center;
}
.why-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-card-icon {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(15,43,94,0.25);
}
.why-card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.why-card-text { font-size: 0.9rem; color: var(--grey-text); line-height: 1.65; }
.why-card-price { font-size: 1.2rem; font-weight: 700; color: var(--gold); margin-top: 10px; }

/* ─── FOOTER ─── */
.site-footer { background: var(--navy-deep); color: var(--white); }
.footer-top { padding: 64px 0 48px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { max-width: 280px; }
.footer-logo { margin-bottom: 16px; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.84rem; color: rgba(255,255,255,0.6); margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-item svg, .footer-contact-item .fc-icon { flex-shrink: 0; margin-top: 2px; }
.footer-col-title {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 600;
  color: var(--gold-light); margin-bottom: 20px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem; color: rgba(255,255,255,0.6);
  transition: var(--transition); display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links a::before { content: '›'; color: var(--gold); font-size: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-text { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-reg { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ─── POLICY PAGES ─── */
.policy-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 56px 0 48px; position: relative; overflow: hidden;
}
.policy-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.policy-hero-content { position: relative; z-index: 1; }
.policy-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem; color: rgba(255,255,255,0.5); margin-bottom: 16px;
}
.policy-breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.policy-breadcrumb a:hover { color: var(--gold-light); }
.policy-breadcrumb span { color: var(--gold-light); }
.policy-hero-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700; color: var(--white); margin-bottom: 10px;
}
.policy-hero-date { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* Policy content layout */
.policy-layout {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 48px; padding: 56px 0;
}
.policy-toc {
  position: sticky; top: 84px; align-self: start;
  background: var(--off-white); border-radius: var(--radius-md);
  padding: 24px 20px; border: 1px solid var(--grey-light);
}
.policy-toc-title {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--grey-text); margin-bottom: 16px;
}
.toc-links { display: flex; flex-direction: column; gap: 4px; }
.toc-links a {
  font-size: 0.85rem; color: var(--grey-text); padding: 6px 8px;
  border-radius: var(--radius-sm); transition: var(--transition);
  border-left: 2px solid transparent;
}
.toc-links a:hover { color: var(--navy); background: var(--grey-light); border-left-color: var(--gold); }
.toc-links a.active { color: var(--navy); font-weight: 500; border-left-color: var(--navy); }

/* Policy body */
.policy-body { max-width: 760px; }
.policy-section { margin-bottom: 48px; }
.policy-section-title {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
  color: var(--navy); margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--grey-light); display: flex; align-items: center; gap: 12px;
}
.policy-section-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  flex-shrink: 0;
}
.policy-text {
  font-size: 0.95rem; color: var(--dark-text); line-height: 1.8;
  margin-bottom: 14px;
}
.policy-text:last-child { margin-bottom: 0; }
.policy-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  margin: 12px 0 16px 0;
}
.policy-list li {
  font-size: 0.93rem; color: var(--dark-text); line-height: 1.7;
  padding-left: 20px; position: relative;
}
.policy-list li::before {
  content: '›'; position: absolute; left: 0;
  color: var(--gold); font-weight: 700; font-size: 1rem;
}
.policy-box {
  background: var(--grey-light); border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px; margin: 16px 0;
  font-size: 0.9rem; color: var(--dark-text); line-height: 1.7;
}
.policy-box strong { color: var(--navy); }
.policy-contact-box {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  border-radius: var(--radius-md); padding: 24px 28px; color: var(--white);
  margin-top: 20px;
}
.policy-contact-box h4 { font-family: var(--font-display); margin-bottom: 12px; color: var(--gold-light); }
.policy-contact-box a { color: var(--gold-light); }
.policy-contact-box a:hover { color: var(--white); }
.policy-contact-box p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 6px; }

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(9,30,69,0.75);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 36px; max-width: 520px; width: 100%;
  box-shadow: 0 32px 80px rgba(9,30,69,0.3);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--grey-light); color: var(--grey-text);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition); cursor: pointer;
}
.modal-close:hover { background: var(--navy); color: var(--white); }
.modal-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}
.modal-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.modal-subtitle { font-size: 0.9rem; color: var(--grey-text); margin-bottom: 24px; }
.modal-address-display {
  background: var(--grey-light); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 0.9rem; color: var(--navy);
  font-weight: 500; margin-bottom: 20px; border-left: 3px solid var(--gold);
}
.modal-info {
  background: rgba(15,43,94,0.05); border: 1px solid rgba(15,43,94,0.12);
  border-radius: var(--radius-md); padding: 20px;
  margin-bottom: 24px;
}
.modal-info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid rgba(15,43,94,0.06);
}
.modal-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.modal-info-label { font-size: 0.83rem; color: var(--grey-text); }
.modal-info-value { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.modal-info-value.highlight { color: var(--gold); font-size: 1rem; }
.modal-demo-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px; padding: 4px 12px;
  font-size: 0.75rem; font-weight: 600; color: #8a6820;
  margin-bottom: 16px;
}
.modal-note { font-size: 0.83rem; color: var(--grey-text); line-height: 1.6; margin-bottom: 20px; }
.modal-actions { display: flex; gap: 12px; }
.modal-actions .btn { flex: 1; justify-content: center; }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 20px 24px;
  transform: translateY(100%); transition: transform 0.4s ease;
  box-shadow: 0 -8px 32px rgba(9,30,69,0.3);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-text { flex: 1; font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.6; min-width: 280px; }
.cookie-text a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept { padding: 10px 22px; background: var(--gold); color: var(--navy-deep); border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.btn-cookie-accept:hover { background: var(--gold-light); }
.btn-cookie-reject { padding: 10px 18px; background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-sm); font-size: 0.88rem; cursor: pointer; transition: var(--transition); }
.btn-cookie-reject:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(12px) scale(0.8);
  transition: var(--transition); cursor: pointer; border: none;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.back-to-top:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-3px) scale(1.05); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── SECTION DIVIDER ─── */
.divider-gold {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px; margin: 12px 0 20px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 480px; }
  .method-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .site-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .policy-layout { grid-template-columns: 1fr; gap: 0; }
  .policy-toc { display: none; }
  .modal { padding: 28px 20px; }
  .modal-actions { flex-direction: column; }
  .hero { padding: 64px 0 56px; }
  .hero::after { display: none; }
  .val-stats { grid-template-columns: 1fr 1fr; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .counters-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.8rem; }
  .counter-num { font-size: 2.2rem; }
}


/* ─── SERVICE CARD IMAGE (v2 upgrade) ─── */
.service-card-img {
  width: calc(100% + 56px);
  margin: -36px -28px 24px -28px;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  display: block;
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
}
/* icon sits on top of content, not top of card */
.service-card .service-icon {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(15,43,94,0.25);
  margin-top: -4px;
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--navy-deep);
}

/* ─── SHOWCASE GALLERY SECTION ─── */
.showcase { background: var(--off-white); }

.showcase-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  align-items: stretch;
}
.showcase-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.showcase-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.showcase-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
}
.showcase-hero .showcase-img-wrap { height: 480px; }
.showcase-col .showcase-item .showcase-img-wrap { height: 230px; }
.showcase-half .showcase-img-wrap { height: 300px; }

.showcase-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  filter: brightness(0.88);
}
.showcase-item:hover .showcase-img-wrap img {
  transform: scale(1.05);
  filter: brightness(0.75);
}

/* Overlay content */
.showcase-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 24px;
  background: linear-gradient(to top, rgba(9,30,69,0.9) 0%, rgba(9,30,69,0.4) 60%, transparent 100%);
  color: var(--white);
  transition: var(--transition);
}
.showcase-tag {
  display: inline-block;
  background: rgba(201,168,76,0.25);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.showcase-img-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 6px;
}
.showcase-hero .showcase-img-title { font-size: 1.5rem; }
.showcase-img-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  max-width: 380px;
}

/* Responsive showcase */
@media (max-width: 1024px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-hero .showcase-img-wrap { height: 340px; }
  .showcase-col { flex-direction: row; }
  .showcase-col .showcase-item .showcase-img-wrap { height: 200px; }
}
@media (max-width: 768px) {
  .showcase-col { flex-direction: column; }
  .showcase-row { grid-template-columns: 1fr; }
  .showcase-half .showcase-img-wrap { height: 240px; }
  .showcase-hero .showcase-img-wrap { height: 260px; }
  .showcase-col .showcase-item .showcase-img-wrap { height: 200px; }
  .service-card-img { height: 160px; }
}

/* ─── SERVICE ICON SPRITE (user-supplied three-icon image) ─── */
.service-icon--img {
  background: transparent !important;
  box-shadow: none !important;
  width: 80px !important;
  height: 80px !important;
  border-radius: 16px !important;
  overflow: visible !important;
  padding: 0 !important;
  flex-shrink: 0;
  position: relative;
  transition:
    transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  /* 内部需要裁剪图片本身 */
  isolation: isolate;
}
/* 图标背后的光晕圆盘 — 纯CSS实现，无额外DOM */
.service-icon--img::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(201, 168, 76, 0.22) 0%,
    rgba(201, 168, 76, 0.10) 45%,
    transparent 72%
  );
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.4s ease,
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
  pointer-events: none;
}
/* 外圈脉冲光环 */
.service-icon--img::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  border: 1.5px solid rgba(201, 168, 76, 0);
  transition:
    border-color 0.35s ease,
    inset 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-radius 0.42s ease;
  pointer-events: none;
}
.service-card:hover .service-icon--img {
  background: transparent !important;
  transform: translateY(-5px) scale(1.06);
  box-shadow:
    0 0 0 6px  rgba(201, 168, 76, 0.12),
    0 0 0 14px rgba(201, 168, 76, 0.06),
    0 8px 32px rgba(15, 43, 94, 0.18);
}
.service-card:hover .service-icon--img::before {
  opacity: 1;
  transform: scale(1);
}
.service-card:hover .service-icon--img::after {
  border-color: rgba(201, 168, 76, 0.45);
  inset: -10px;
  border-radius: 24px;
}
/* 裁剪层：隔离overflow与光晕visible的冲突 */
.icon-clip {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
}
.icon-sprite {
  width: 100%;
  height: 100%;
  background-image: url('https://oss.haisnap.com/resource-oss/tos-haisnap-resource/public/445327339489009664/images/756190c9-6304-4d66-afb7-2223ac569278_1778676711442.jpg');
  background-size: 300% 100%;
  background-repeat: no-repeat;
  border-radius: 10px;
  display: block;
  transition:
    transform 0.50s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.42s ease;
  filter: brightness(1) saturate(1);
  will-change: transform, filter;
}
.service-card:hover .icon-sprite {
  transform: scale(1.22) rotate(3deg);
  filter: brightness(1.08) saturate(1.15) drop-shadow(0 4px 14px rgba(201,168,76,0.40));
}
/* 左1/3 → 房屋图标 (Card 1: Selling/Remortgaging) */
.icon-sprite--house {
  background-position: 0% 50%;
}
/* 中1/3 → 折线图图标 (Card 2: Avoiding Overpayment) */
.icon-sprite--chart {
  background-position: 50% 50%;
}
/* 右1/3 → 公文包图标 (Card 3: Business Consulting) */
.icon-sprite--briefcase {
  background-position: 100% 50%;
}