@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");

:root {
  --bg: #f5f6f8;
  --surface: #ffffff;
  --surface-soft: #f1f4f7;
  --text: #1f2937;
  --body-text: #475569;
  --muted: #64748b;
  --primary: #2f3e52;
  --primary-dark: #1e2a3a;
  --accent: #b68b2d;
  --border: #dbe3ee;
  --success: #128c7e;
  --shadow: 0 18px 40px rgba(8, 40, 100, 0.1);
  --radius: 16px;
  --radius-sm: 12px;
  --max: 1120px;
  --font-heading: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body-text);
  background: radial-gradient(circle at top right, #eceff3 0, #f5f6f8 55%, #ffffff 100%);
  line-height: 1.6;
}

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

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

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

.section {
  padding: 3.5rem 0;
}

.section h2 {
  font-family: var(--font-heading);
  color: var(--text);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

.section-intro {
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(245, 246, 248, 0.9);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex: 0 0 64px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 0.9rem;
}

.footer-brand-logo {
  width: 148px;
  height: auto;
  object-fit: contain;
}

.menu-btn {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  font-size: 0.95rem;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 0 1rem;
}

.nav-links a {
  padding: 0.6rem 0.2rem;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--primary);
}

.nav-links.is-open {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 41, 55, 0.24);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.nav-cta {
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 0.65rem 1.6rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.15);
  border: 1px solid transparent;
}

.nav-cta:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--surface-soft);
}

.btn-gold {
  background: #5a708a;
  color: #f8fafc;
  border: 1px solid #4a5e76;
}

.btn-gold:hover {
  background: #4d6279;
}

.hero {
  padding: 4rem 0 2.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.portrait-container {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-portrait-img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain;
  border-radius: var(--radius);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
  background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%); /* Placeholder shimmer */
}

/* Fix for broken images looking nicer */
img:not([src]), img[src=""] {
  visibility: hidden;
}

.photo-frame, .portrait-container {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

.photo-frame::after, .portrait-container::after {
  content: "Portrait Photo";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.5;
}

.hero-form-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 280px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.4);
  z-index: 10;
}

@media (max-width: 968px) {
  .hero-form-card {
    position: static;
    width: 100%;
    margin-top: 2rem;
    right: auto;
    bottom: auto;
  }
}

.hero-form-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: var(--primary-dark);
}

.hero-form-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.form-field-compact {
  margin-bottom: 0.5rem;
}

.form-field-compact input,
.form-field-compact select {
  height: 2.8rem;
  font-size: 0.9rem;
  padding: 0 0.75rem;
  border-radius: 8px;
}

.btn-full {
  width: 100%;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #edf2f7;
  color: var(--primary);
  border: 1px solid #d7e0ea;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero h1 {
  font-family: var(--font-heading);
  color: var(--text);
  font-size: clamp(1.95rem, 7vw, 3.1rem);
  line-height: 1.12;
  margin: 0.8rem 0;
}

.hero p {
  color: var(--muted);
  margin: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.8rem;
}

.kpi {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.4rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.kpi strong {
  display: block;
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.kpi span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
  display: block;
}

.grid {
  display: grid;
  gap: 1rem;
}

.cards-2,
.cards-3,
.cards-4 {
  grid-template-columns: 1fr;
}

.logo-marquee {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  padding: 1rem 0;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 58px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f4f7fb 0%, transparent 100%);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f4f7fb 0%, transparent 100%);
}

.logo-track {
  display: flex;
  gap: 0.9rem;
  width: max-content;
  animation: marquee-ltr 35s linear infinite;
  padding: 0 0.9rem;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  flex: 0 0 auto;
  width: 170px;
  height: 140px;
  background: #fff;
  border: 1px solid #dce4ee;
  border-radius: 12px;
  padding: 0.75rem;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}

.logo-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}

.logo-item img {
  height: 85px;
  width: auto;
  max-width: 100%;
  max-height: 85px;
  object-fit: contain;
}

@keyframes marquee-ltr {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.1rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.card h3 {
  font-family: var(--font-heading);
  color: var(--text);
  margin: 0 0 0.7rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.card h2,
.card h3 {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.card h2::before,
.card h3::before {
  content: "";
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 999px;
  flex: 0 0 auto;
  background: radial-gradient(circle at center, var(--accent) 0 48%, #f7e7c0 49% 100%);
  box-shadow: 0 0 0 2px rgba(47, 62, 82, 0.16);
}

.card.process-step h3::before {
  display: none;
}

.who-card h3::before,
.trust-card h3::before,
.diff-card h3::before,
.who-card h2::before,
.card h2::before,
.card h3::before {
  display: none;
}

.mini-icon,
.mini-icon-svg {
  width: 1.02rem;
  height: 1.02rem;
  flex: 0 0 1.02rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.mini-icon {
  font-size: 0.88rem;
  line-height: 1;
  font-weight: 700;
}

.mini-icon-svg {
  stroke: currentColor;
}

.who-card h3 {
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.who-card .mini-icon-svg {
  width: 1.6rem;
  height: 1.6rem;
  flex: 0 0 1.6rem;
  margin-top: 0.08rem;
  color: var(--primary-dark);
}

.trust-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: block;
  margin-bottom: 0.8rem;
  color: var(--primary);
  stroke: var(--primary);
}

.diff-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(247, 231, 192, 0.4) 0%, rgba(247, 231, 192, 0.1) 100%);
  color: var(--accent);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(247, 231, 192, 0.6);
}

.diff-icon svg {
  width: 24px;
  height: 24px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 100px auto;
  gap: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-row span:first-child {
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding-top: 0.15rem;
}

.contact-row span:last-child {
  color: var(--body-text);
}

.icon-badge {
  display: none;
}

.split {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.check-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  margin-top: 0.05rem;
}

.process-step {
  position: relative;
  padding-left: 2.9rem;
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
}

.cta-banner {
  background: linear-gradient(130deg, #2f3e52, #253347);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.4rem;
  display: grid;
  gap: 0.9rem;
}

.cta-banner h2,
.cta-banner h3 {
  color: #f8fafc;
}

.cta-banner p {
  margin: 0;
  color: #d7dee8;
}

.cta-banner .btn-gold {
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-banner .btn-secondary {
  background: #e9eef4;
  color: #253347;
  border: 1px solid #ced8e6;
  box-shadow: none;
}

.cta-banner .btn-secondary:hover {
  background: #f3f6fa;
}

.testimonial-marquee {
  display: grid;
  gap: 1rem;
}

.testimonial-lane {
  overflow: hidden;
  position: relative;
}

.testimonial-row {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: testimonial-drift 42s linear infinite;
}

.testimonial-lane-alt .testimonial-row {
  animation-duration: 48s;
}

.testimonial {
  width: min(340px, calc(100vw - 4rem));
  min-height: 180px;
  border-left: 4px solid var(--accent);
  padding: 1.35rem;
}

blockquote {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

cite {
  margin-top: 0.75rem;
  display: block;
  font-style: normal;
  color: var(--text);
  font-weight: 700;
}

@keyframes testimonial-drift {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem;
  border: 0;
  background: transparent;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-answer {
  padding: 0 1rem 1rem;
  color: var(--muted);
  display: none;
}

.faq-item[open] .faq-answer {
  display: block;
}

form {
  display: grid;
  gap: 0.85rem;
}

.form-field {
  display: grid;
  gap: 0.62rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.25;
}

input,
select {
  width: 100%;
  border: 1px solid #c6d4f3;
  border-radius: 10px;
  padding: 0 0.9rem;
  font: inherit;
  line-height: normal;
  background: #fff;
  height: 3.5rem; /* Increased and standardized exact height */
  display: flex;
  align-items: center;
}

select {
  padding-right: 2.9rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
}

textarea {
  width: 100%;
  border: 1px solid #c6d4f3;
  border-radius: 10px;
  padding: 0.9rem;
  font: inherit;
  line-height: 1.5;
  background: #fff;
  resize: vertical;
  min-height: 120px;
  height: auto;
}

.inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.inline input[type="checkbox"],
.inline input[type="radio"] {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
  cursor: pointer;
  flex: 0 0 auto;
  appearance: auto; /* Reset to browser default for simplicity if customized too much */
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 0.6rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}

.radio-option input[type="radio"] {
  width: 1rem;
  height: 1rem;
  margin: 0;
  cursor: pointer;
}

.notice {
  font-size: 0.88rem;
  color: var(--muted);
}

.footer {
  margin-top: 3rem;
  background: #091933;
  color: #d6dff2;
  padding: 2.6rem 0 1.3rem;
}

.footer h3,
.footer h4 {
  color: #fff;
  margin-top: 0;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer a:hover {
  color: #fff;
}

.footer .disclaimer-box {
  border: 1px solid #1f3d73;
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  background: rgba(16, 45, 96, 0.55);
  margin-top: 1rem;
  font-size: 0.82rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #20447e;
  font-size: 0.75rem;
  color: #b5c5e8;
}

.whatsapp-sticky {
  position: fixed;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 130;
  background: var(--success);
  color: #fff;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 25px rgba(18, 140, 126, 0.35);
}

.hero-photo {
  height: 100%;
  border-radius: var(--radius);
  background: linear-gradient(140deg, #d9e7ff 0%, #f9fbff 50%, #f7efd9 100%);
  border: 1px dashed #b9c8e9;
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
}

.page-hero {
  padding: 2.6rem 0 1.6rem;
}

.page-hero h1 {
  font-family: var(--font-heading);
  color: var(--text);
  margin: 0.5rem 0;
  font-size: clamp(1.8rem, 5vw, 2.7rem);
}

.quick-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.15rem;
}

@media (min-width: 760px) {
  .menu-btn {
    display: none;
  }

  .nav-shell {
    padding: 0.9rem 0;
  }

  .nav-links,
  .nav-links.is-open {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.15rem;
    padding: 0;
  }

  .nav-cta {
    margin-left: 0.85rem;
    margin-right: 0.25rem;
    padding-inline: 1.7rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr; /* Slightly more balanced ratio */
    gap: 5rem; /* Even more breathing room */
    align-items: center;
  }

  .hero-media {
    margin-right: -2rem;
  }

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

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

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

  .logo-item {
    width: 220px;
    height: 160px;
    padding: 1rem;
  }

  .logo-item img {
    height: 100px;
    max-height: 100px;
  }

  .split {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
  }

  .split > .card,
  .split > .advisor-photo-card {
    height: 100%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Ensures content is centered if height expands */
  }

  .cta-banner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 1.2rem;
  }

  .whatsapp-sticky {
    right: 1.4rem;
    bottom: 1.4rem;
  }

/* New Advisor & Photo Card Styles */
.advisor-photo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition: transform 0.3s ease;
}

.advisor-photo-card:hover {
  transform: translateY(-5px);
}

.photo-frame {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.photo-info strong {
  display: block;
  font-size: 1.4rem;
  color: var(--primary-dark);
  font-family: var(--font-heading);
}

.photo-info p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0.3rem 0 0.8rem;
}

.license-tag {
  display: inline-block;
  background: rgba(182, 139, 45, 0.1);
  color: var(--accent);
  padding: 0.35rem 1rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.6);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-list li {
  display: flex;
  gap: 0.85rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--body-text);
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.4);
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.check-list li:hover {
  border-color: rgba(182, 139, 45, 0.2);
  background: #fff;
}

.check-list li::before {
  content: "✦";
  color: var(--accent);
  font-weight: 900;
  flex: 0 0 auto;
}

/* Legal Content Styling (12pt for PDPA/Law focus) */
.legal-content {
  font-size: 12pt;
  line-height: 1.6;
  color: var(--body-text);
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1, 
.legal-content h2, 
.legal-content h3 {
  color: var(--primary-dark);
  font-family: var(--font-heading);
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
}

.legal-content h2 {
  font-size: 1.4rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.4rem;
}

.legal-content h3 {
  font-size: 1.15rem;
}

.legal-content p, 
.legal-content li {
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content .highlight-box {
  background: rgba(182, 139, 45, 0.05);
  border-left: 4px solid var(--accent);
  padding: 1.2rem;
  margin: 1.5rem 0;
  font-weight: 500;
}

/* Global Micro-animations (Premium "Movement") */
.card, .kpi, .faq-item, .advisor-photo-card, .process-step, .diff-card {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover, .advisor-photo-card:hover, .process-step:hover, .diff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.kpi {
  transition: all 0.3s ease;
}

.kpi:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.check-list li {
  transition: all 0.25s ease;
}

.check-list li:hover {
  transform: translateX(6px);
  background: #fff;
  border-color: rgba(182, 139, 45, 0.3);
}

.nav-cta {
  padding: 0.7rem 1.8rem !important; /* Fixed padding for better pill shape */
}


