@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap);

@keyframes rotate-text {

  0%,
  28%,
  to {
    transform: translateY(0);
  }

  33%,
  60% {
    transform: translateY(-100%);
  }

  66%,
  94% {
    transform: translateY(-200%);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  to {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse-dot {

  0%,
  to {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes float-card {

  0%,
  to {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes builder-float {

  0%,
  to {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

:root {
  --navy: #0b1c3a;
  --navy-mid: #122248;
  --navy-light: #1a2f5a;
  --charcoal: #111827;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gold: #d4a843;
  --gold-light: #e6c06a;
  --gold-dark: #b88c2a;
  --electric: #3b82f6;
  --electric-lt: #60a5fa;
  --green: #10b981;
  --yellow: #f59e0b;
  --red: #ef4444;
  --text-primary: #ffffff;
  --text-muted: #94a3b8;
  --text-dark: #1e293b;
  --text-body: #64748b;
  --border: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: "Manrope", sans-serif;
  --font-serif: "Playfair Display", serif;
  --font-body: "Manrope", sans-serif;
}

*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.dl-logo:focus-visible {
  outline: 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-label::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.section-title-white {
  color: var(--white);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-body);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-subtitle-white {
  color: var(--text-muted);
}

.dl-logo-name span,
.gold-text,
.mobile-nav a:hover,
.nav-phone i {
  color: var(--gold);
}

.btn-outline-navy,
.btn-outline-white,
.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-size: 14px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  font-weight: 700;
  border: 0;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.35);
  letter-spacing: 0.3px;
}

.btn-primary-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.5);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline-navy,
.btn-outline-white {
  background: 0 0;
}

.btn-outline-white {
  color: var(--white);
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  color: var(--navy);
  font-weight: 700;
  border: 2px solid var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 15px;
}


.btn-outline-white:hover .btn-arrow,
.btn-primary-gold:hover .btn-arrow,
.fp-next-btn:hover i,
.report-card:hover .report-card-cta i {
  transform: translateX(4px);
}

.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.section-pad-lg {
  padding: 110px 0;
}

.text-center {
  text-align: center;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-56 {
  margin-bottom: 56px;
}

.mt-40 {
  margin-top: 40px;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto 24px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.status-low,
.status-verified {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.status-moderate {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.status-warning {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.status-fair {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.status-clear {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot-green {
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.status-dot-yellow {
  background: #f59e0b;
  box-shadow: 0 0 6px #f59e0b;
}

.status-dot-red {
  background: #ef4444;
  box-shadow: 0 0 6px #ef4444;
}

.status-dot-blue {
  background: #60a5fa;
  box-shadow: 0 0 6px #60a5fa;
}

.dl-navbar,
.navbar-inner {
  transition: var(--transition);
}

.dl-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: 0 0;
}

.dl-navbar.scrolled {
  background: rgba(11, 28, 58, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  padding: 0;
}

.navbar-inner {
  justify-content: space-between;
  padding: 18px 0;
}

.dl-navbar.scrolled .navbar-inner {
  padding: 12px 0;
}

.dl-logo,
.dl-logo-icon,
.navbar-inner {
  display: flex;
  align-items: center;
}

.dl-logo {
  gap: 10px;
  text-decoration: none;
}

.dl-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 10px;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.dl-logo-text {
  line-height: 1.15;
}

.dl-logo-name {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 35px;
}

.dl-logo-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}

.nav-links,
.nav-links>li>a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links>li>a {
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links>li>a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu-dl {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 10px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu-dl {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-dl li a {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-sm);
}

.dropdown-menu-dl li a:hover {
  background: rgba(212, 168, 67, 0.1);
  color: var(--gold);
}

.nav-cta,
.nav-phone {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-phone {
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: 0 0;
  border: 0;
}

.dropdown-menu-dl li a,
.hamburger span,
.mobile-nav a {
  display: block;
  transition: var(--transition);
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  padding: 80px 15px 20px;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-close {
  position: absolute;
  top: 10px;
  right: 30px;
  background: 0 0;
  border: 0;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/banner-img.jpg);
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  background-color: #0f1f41e6;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
}

.hero-grid-overlay,
.hero-orb {
  position: absolute;
  pointer-events: none;
}

.hero-grid-overlay {
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-orb {
  border-radius: 50%;
  filter: blur(80px);
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0, transparent 70%);
  top: -100px;
  right: 100px;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0, transparent 70%);
  bottom: 0;
  left: 200px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}


label.ct-radio-label {
  color: #999;
  display: inline-flex;
}

.ct-radio-group {
  display: flex;
  gap: 10px;
}

span.ct-toggle-btn {
  color: #999;
  display: inline-flex;
}

.ct-toggle-group {
  display: flex;
  gap: 15px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}

.hero-rotating-wrap {
  display: block;
  height: 1.1em;
  overflow: hidden;
}

.hero-rotating-text {
  display: block;
}

.hero-rotating-text span {
  display: block;
  height: 1.1em;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 34px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-visual-col {
  position: relative;
  padding-top: 100px;
  padding-bottom: 40px;
  z-index: 2;
}

.hero-card-main {
  background: #0e1f41;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: float-card 5s ease-in-out infinite;
}

.risk-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.risk-card-title {
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.risk-score-main {
  text-align: center;
  margin-bottom: 24px;
  padding: 20px 0;
  position: relative;
}

.risk-score-circle svg {
  transform: rotate(-90deg);
}

.risk-params {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  animation: float-card 4s ease-in-out infinite;
}

.hero-float-1 {
  top: 80px;
  right: -20px;
  animation-delay: 1s;
}

.hero-float-2 {
  bottom: 80px;
  left: -20px;
  animation-delay: 2.5s;
}

.float-card-inner,
.service-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.float-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.float-icon-gold {
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
}

.float-icon-green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
}

.float-card-text {
  line-height: 1.2;
}

.float-card-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.float-card-value {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
}

.property-location-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.prop-loc-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prop-loc-value {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 5px;
}

.prop-loc-value i {
  color: var(--gold);
}

.trust-bar {
  background: var(--navy);
  border-top: 1px solid #ffffff47;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 22px 0;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.trust-bar-item i {
  font-size: 22px;
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(212, 168, 67, 0.4));
}

.trust-bar-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
}

.core-services-section {
  background: var(--off-white);
}

.service-card-big {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-card-big::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--electric));
  opacity: 0;
  transition: var(--transition);
}

.service-card-big.card-gold::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.service-card-big:hover,
.service-mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-card-big:hover::before {
  opacity: 1;
}

.service-card-icon {
  width: 66px;
  height: 66px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.service-card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 22px;
  line-height: 1.7;
}

.service-checklist {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-checklist li {
  font-size: 13.5px;
  color: var(--text-body);
  font-weight: 500;
}

.service-checklist li i {
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
}

.service-card-bg-icon {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 120px;
  opacity: 0.04;
  color: var(--navy);
  pointer-events: none;
}

.how-works-section {
  background: var(--white);
}

.sample-report-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.sample-report-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.report-preview-wrap {
  position: relative;
  z-index: 1;
}

.report-header {
  background: rgba(212, 168, 67, 0.1);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.report-body {
  padding: 24px;
}

.report-params-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.report-param-row {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.report-param-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.report-blur-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 110px;
  background: linear-gradient(to bottom, transparent, rgba(11, 28, 58, 0.95));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.report-text-side {
  position: relative;
  z-index: 1;
}

.report-verify-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.report-verify-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.comparison-table-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.comp-td-portals,
.comp-th-portals {
  text-align: center;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.comp-th-portals {
  background: #f8fafc;
  color: var(--text-body);
}

.pkg-comp-table tbody tr:hover {
  background: rgba(11, 28, 58, 0.02);
}

.comp-td-portals {
  padding: 18px 28px;
}

.service-mini-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  height: 100%;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-mini-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-mini-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 20px 50px rgba(11, 28, 58, 0.2);
}

.about-value-card:hover::before,
.contact-opt-card:hover::before,
.service-mini-card:hover::after {
  transform: scaleX(1);
}

.service-mini-card:hover .svc-icon {
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
}

.service-mini-card:hover .svc-title {
  color: var(--white);
}

.about-breadcrumb a,
.service-mini-card:hover .svc-desc {
  color: rgba(255, 255, 255, 0.5);
}

.svc-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(11, 28, 58, 0.07);
  color: var(--navy);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.svc-desc,
.svc-icon,
.svc-title {
  transition: var(--transition);
}

.svc-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.svc-desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}

.audience-section {
  background: var(--off-white);
}

.audience-icon-wrap {
  color: var(--navy);
}

.intelligence-section {
  background: var(--white);
}

.intel-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  transition: var(--transition);
}

.intel-card:hover {
  box-shadow: 0 12px 35px rgba(11, 28, 58, 0.1);
  border-color: rgba(11, 28, 58, 0.15);
  transform: translateY(-3px);
}

.intel-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.intel-card-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

.intel-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.intel-tag-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}

.intel-tag-gold {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold-dark);
}

.intel-tag-blue {
  background: rgba(59, 130, 246, 0.1);
  color: var(--electric);
}

.bar-chart,
.bar-row {
  display: flex;
  gap: 10px;
}

.bar-chart {
  flex-direction: column;
}

.bar-row {
  align-items: center;
}

.bar-label {
  font-size: 12px;
  color: var(--text-body);
  font-weight: 500;
  width: 80px;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: rgba(11, 28, 58, 0.07);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--navy), var(--electric));
  transition: width 1.5s ease;
}

.bar-fill-gold {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.bar-pct {
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  width: 36px;
  text-align: right;
}

.city-map-visual {
  position: relative;
  height: 160px;
  background: rgba(11, 28, 58, 0.04);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
}

.map-dot,
.map-dot::before {
  position: absolute;
  border-radius: 50%;
}

.map-dot {
  width: 12px;
  height: 12px;
  background: var(--gold);
  cursor: pointer;
  transition: var(--transition);
}

.map-dot::before {
  content: "";
  inset: -6px;
  background: rgba(212, 168, 67, 0.2);
  animation: ripple 2s infinite;
}

.map-dot-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.testimonials-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 40px;
  font-family: var(--font-serif);
  font-size: 250px;
  color: rgba(212, 168, 67, 0.06);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateY(-4px);
}

.test-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.test-star {
  color: var(--gold);
  font-size: 15px;
}

.test-quote {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-avatar,
.test-name {
  font-weight: 800;
  color: var(--white);
}

.test-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--electric));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.test-name {
  font-size: 14px;
  margin-bottom: 2px;
}

.test-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.test-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 10px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.about-breadcrumb a:hover,
.test-tag {
  color: var(--gold);
}

.final-cta-section::before {
  background-image: url(https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=1600&q=80);
  background-size: cover;
  background-position: center;
}

.dl-footer {
  overflow: hidden;
}

.footer-links li a::before {
  content: "";
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
  flex-shrink: 0;
}

.trust-bar-item img {
  width: 40px;
}

.footer-links li a:hover::before {
  width: 12px;
}

.whatsapp-float {
  gap: 12px;
  font-weight: 700;
  cursor: pointer;
}

.whatsapp-float:hover {
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
  font-size: 35px;
}

.dl-logo-text img {
  width: 100px;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: 0.1s;
}

.fade-up-delay-2 {
  transition-delay: 0.2s;
}

.fade-up-delay-3 {
  transition-delay: 0.3s;
}

.fade-up-delay-4 {
  transition-delay: 0.4s;
}

.fade-up-delay-5 {
  transition-delay: 0.5s;
}

@media (max-width: 1366px) {
  .container {
    max-width: 95% !important;
  }
}

@media (max-width: 1199px) {
  .steps-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .steps-timeline::before {
    display: none;
  }

  .media-logos-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {

  .nav-cta,
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-visual-col {
    display: none;
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .section-pad {
    padding: 40px 0;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px;
  }
}

@media (max-width: 767px) {

  .trust-bar-divider,
  .whatsapp-float span {
    display: none;
  }

  .trust-bar-inner {
    justify-content: center;
  }

  .steps-timeline {
    grid-template-columns: 1fr;
  }

  .report-summary-row {
    grid-template-columns: 1fr 1fr;
  }

  .final-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .comp-table {
    font-size: 13px;
  }

  .comp-td-deallens,
  .comp-td-feature,
  .comp-td-portals,
  .comp-th-deallens,
  .comp-th-label,
  .comp-th-portals {
    padding: 14px;
  }

  .whatsapp-float {
    bottom: 80px;
    padding: 12px 14px;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    justify-content: center;
  }

  .media-logos-row {
    gap: 20px 28px;
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 36px;
  }

  section.privacy-layout-section {
    overflow: hidden;
  }

  .privc-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .btn-outline-white,
  .btn-primary-gold {
    width: 100%;
    justify-content: center;
  }

  .service-card-big {
    padding: 30px 24px;
  }

  .checks-section .col-6.col-md-3,
  .pricing-section .col-6.col-lg-3,
  .trust-strip-5col .col-6.col-md-4.col-lg {
    width: 100%;
  }

  .check-col-header {
    font-size: 18px !important;
  }

  .check-list li {
    font-size: 15px !important;
  }

  .section-pad-lg {
    padding: 60px 0;
  }

  .check-list li::before {
    top: 7px !important;
  }
}

.nav-active-link {
  color: var(--gold) !important;
  position: relative;
}

.nav-active-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.about-hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/banner-img.jpg);
  background-size: cover;
  background-position: center;
}

.about-hero-bg::after {
  background-color: #0f1f41e6;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
}

.about-hero-grid-overlay,
.about-mission-section::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.035) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.about-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.about-orb-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0, transparent 70%);
  top: -120px;
  right: 50px;
}

.about-orb-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.07) 0, transparent 70%);
  bottom: -50px;
  left: 150px;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 60px;
  width: 100%;
}

.min-vh-hero {
  min-height: calc(100vh - 110px);
}

.about-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.about-breadcrumb a {
  transition: color 0.3s;
}

.about-breadcrumb i {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.25);
}

.about-breadcrumb span {
  color: var(--gold);
  font-weight: 600;
}

.about-hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}

.about-hero-accent {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.about-hero-sub {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 500px;
  line-height: 1.78;
  margin-bottom: 36px;
}

.about-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.about-hero-visual-col {
  padding-top: 20px;
  padding-bottom: 20px;
}

.about-hero-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  animation: float-card 5s ease-in-out infinite;
}

.about-mission-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.18);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 22px;
}

.about-mission-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(212, 168, 67, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
}

.about-mission-label {
  font-size: 10px;
  color: rgba(212, 168, 67, 0.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.about-mission-value {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  font-style: italic;
}

.about-hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
}

.about-hero-stat {
  text-align: center;
}

.about-hero-stat-num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}

.about-hero-stat-num span {
  font-size: 18px;
}

.about-hero-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.about-hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
}

.about-checks-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.about-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: var(--transition);
}

.about-check-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 168, 67, 0.15);
}

.about-check-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.check-green {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.check-gold {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
}

.check-blue {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
}

.check-purple {
  background: rgba(139, 92, 246, 0.12);
  color: #a78bfa;
}

.about-check-text {
  flex: 1;
  line-height: 1.25;
}

.about-check-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.about-check-desc {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 2px;
}

.about-card-footer-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
  font-style: italic;
}

.about-card-footer-tag i {
  color: var(--gold);
  font-size: 13px;
}

.about-why-section {
  background: var(--white);
  overflow: hidden;
}

.about-why-para {
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-why-highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-left: 4px solid #ef4444;
  border-radius: 0 12px 12px 0;
  padding: 18px 20px;
  margin-top: 32px;
}

.about-why-highlight-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.about-why-highlight-title {
  font-size: 14px;
  font-weight: 800;
  color: #ef4444;
  margin-bottom: 5px;
}

.about-why-highlight-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

.about-risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-risk-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 22px 18px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-risk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
  border-color: rgba(0, 0, 0, 0.1);
}

.about-risk-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
}

.about-risk-title {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 7px;
}

.about-risk-desc {
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.6;
}

.about-risk-cta-tag {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-mission-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.about-mission-section::before {
  content: "";
  background-image: linear-gradient(rgba(212, 168, 67, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
}

.about-mission-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-mission-desc {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.82;
  max-width: 460px;
}

.about-serif-italic {
  font-style: normal;
  color: var(--gold);
  font-size: inherit;
}

.about-mission-quote-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 168, 67, 0.18);
  border-radius: 18px;
  padding: 32px 30px;
  margin-bottom: 28px;
  position: relative;
}

.about-mission-quote-icon {
  font-family: var(--font-serif);
  font-size: 72px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 20px;
}

.about-mission-quote-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.about-mission-quote-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(212, 168, 67, 0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-mission-quote-dot {
  width: 20px;
  height: 2px;
  background: var(--gold);
  opacity: 0.5;
}

.about-mission-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.about-pillar {
  text-align: center;
  padding: 18px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  transition: var(--transition);
  cursor: default;
}

.about-pillar:hover {
  background: rgba(212, 168, 67, 0.08);
  border-color: rgba(212, 168, 67, 0.2);
}

.about-pillar-icon {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 8px;
}

.about-pillar-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

.about-diff-key-msg {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(11, 28, 58, 0.05);
  border: 1px solid rgba(11, 28, 58, 0.1);
  border-radius: 12px;
  padding: 18px 22px;
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

.about-diff-key-msg i,
.about-trust-value-item>i {
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.about-diff-key-msg strong {
  color: var(--navy);
}

.about-approach-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 30px 26px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.about-approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11, 28, 58, 0.12);
  border-color: rgba(11, 28, 58, 0.12);
  background: var(--white);
}

.about-approach-card-highlight {
  background: var(--navy);
  border-color: transparent;
}

.about-approach-card-highlight .about-approach-num {
  color: rgba(212, 168, 67, 0.25);
}

.about-approach-card-highlight .about-approach-icon {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
}

.about-approach-card-highlight .about-approach-title {
  color: var(--white);
}

.about-approach-card-highlight .about-approach-desc {
  color: rgba(255, 255, 255, 0.55);
}

.about-approach-card-highlight .about-tag {
  background: rgba(212, 168, 67, 0.1);
  color: var(--gold);
  border-color: rgba(212, 168, 67, 0.2);
}

.about-approach-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 14px;
}

.about-approach-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(11, 28, 58, 0.07);
  color: var(--navy);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}

.about-approach-card:hover .about-approach-icon {
  background: var(--navy);
  color: var(--gold);
}

.about-approach-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.about-approach-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-approach-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.about-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(11, 28, 58, 0.06);
  color: var(--navy);
  border: 1px solid rgba(11, 28, 58, 0.1);
  border-radius: 100px;
}

.about-audience-card {
  position: relative;
  overflow: hidden;
}

.about-audience-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.about-audience-feature,
.about-audience-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-audience-icon-wrap {
  text-align: center;
  margin-bottom: 20px;
}

.about-audience-feature {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  gap: 6px;
}

.about-trust-section {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.about-trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0, transparent 50%), radial-gradient(circle at 10% 80%, rgba(212, 168, 67, 0.06) 0, transparent 50%);
  pointer-events: none;
}

.about-trust-desc {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 460px;
}

.about-trust-values-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-trust-value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-trust-value-item>i {
  color: var(--green);
}

.about-trust-value-title {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3px;
}

.about-trust-value-sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
}

.about-trust-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 20px;
  height: 100%;
  transition: var(--transition);
}

.about-trust-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 168, 67, 0.18);
  transform: translateY(-3px);
}

.about-trust-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.trust-icon-blue,
.trust-icon-gold,
.trust-icon-green,
.trust-icon-purple {
  background: #fff;
  color: var(--gold);
}

.about-trust-card-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.about-trust-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.65;
  margin: 0;
}

.about-intel-dashboard {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
}

.about-intel-card-main {
  background: var(--navy);
  border-radius: 18px;
  padding: 26px;
  height: 100%;
}

.about-intel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.about-intel-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-intel-title i,
.about-value-card:hover .about-value-icon {
  color: var(--gold);
}

.about-intel-score-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.about-intel-score-circle {
  position: relative;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

.about-intel-score-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1;
}

.about-intel-score-num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
}

.about-intel-score-denom {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.about-intel-score-meta {
  flex: 1;
}

.about-intel-score-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.about-intel-score-risk {
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.about-intel-score-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.35);
}

.about-intel-legend {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.about-intel-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.about-intel-param-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  transition: var(--transition);
}

.about-intel-param-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 168, 67, 0.15);
}

.about-intel-param-icon {
  font-size: 18px;
  margin-bottom: 6px;
}

.about-intel-param-value {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 3px;
}

.about-intel-param-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.about-intel-side {
  padding-left: 10px;
}

.about-intel-side-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.3;
}

.about-intel-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-intel-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-intel-feature-icon {
  font-size: 17px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}

.about-intel-feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
  display: block;
}

.about-intel-feature-desc {
  font-size: 12.5px;
  color: var(--text-body);
  display: block;
}

.about-value-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  padding: 28px 18px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.about-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.about-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(11, 28, 58, 0.1);
  border-color: rgba(11, 28, 58, 0.1);
}

.about-value-icon {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 14px;
  transition: var(--transition);
  display: block;
}

.about-value-label {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  transition: var(--transition);
}

.about-value-desc {
  font-size: 12px;
  color: var(--text-body);
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .about-mission-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .container {
    max-width: 98% !important;
  }

  .about-mission-desc {
    max-width: 100%;
  }

  .about-intel-score-row {
    flex-wrap: wrap;
  }

  .about-intel-legend {
    flex-direction: row;
    gap: 14px;
  }
}

@media (max-width: 991px) {
  .about-hero-visual-col {
    display: none;
  }

  .about-hero-content {
    padding-top: 130px;
    padding-bottom: 70px;
  }

  .about-mission-pillars,
  .about-risk-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-intel-side {
    padding-left: 0;
    padding-top: 24px;
  }

  .about-intel-dashboard {
    padding: 24px;
  }
}

@media (max-width: 767px) {
  .about-hero-title {
    font-size: 36px;
    letter-spacing: -0.5px;
  }

  .rcp-hero {
    padding-top: 120px;
    padding-bottom: 50px;
  }

  section.rcp-hero,
  section.rcp-layout-section {
    overflow: hidden;
  }

  .about-hero-cta {
    flex-direction: column;
  }

  .about-hero-cta .btn-outline-white,
  .about-hero-cta .btn-primary-gold {
    width: 100%;
    justify-content: center;
  }

  .about-risk-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-stats-row {
    flex-direction: column;
    gap: 16px;
  }

  .about-hero-stat-divider {
    width: 60px;
    height: 1px;
  }

  .about-mission-pillars {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-intel-score-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .about-intel-legend {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .about-intel-dashboard {
    padding: 16px;
    border-radius: 16px;
  }
}

@media (max-width: 575px) {
  .about-mission-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  section#risk-score-sd {
    overflow: hidden;
  }

  section#contact-form {
    padding-top: 0 !important;
  }

  .pricing-value-section .col-6.col-md-4.col-lg-2 {
    width: 100% !important;
  }

  .about-hero-stats-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-around;
  }

  .about-hero-stat-divider {
    display: none;
  }

  .about-intel-score-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-intel-score-meta {
    text-align: center;
  }
}

.contact-hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/banner-img.jpg);
  background-size: cover;
  background-position: center;
}

.contact-hero-bg::after {
  background-color: #0f1f41e6;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
}

.contact-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.contact-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0, transparent 70%);
  top: -100px;
  right: 80px;
}

.contact-orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.07) 0, transparent 70%);
  bottom: -60px;
  left: 120px;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 60px;
  width: 100%;
}

.contact-hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.contact-hero-accent {
  color: var(--gold);
}

.contact-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 480px;
  line-height: 1.78;
  margin-bottom: 28px;
}

.contact-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-hero-visual-col {
  padding-top: 20px;
  padding-bottom: 20px;
}

.contact-hero-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  animation: float-card 5s ease-in-out infinite;
}

.contact-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-card-header-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.contact-advisor-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
}

.contact-advisor-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.contact-advisor-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
}

.contact-advisor-role {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}

.contact-advisor-availability {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}

.contact-avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse-dot 2s infinite;
}

.contact-quick-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(212, 168, 67, 0.06);
  border: 1px solid rgba(212, 168, 67, 0.14);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.contact-quick-stat {
  text-align: center;
}

.contact-quick-stat-icon {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-quick-stat-value {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.contact-quick-stat-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.contact-quick-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-channels-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: var(--transition);
}

.contact-channel-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 168, 67, 0.2);
}

.contact-channel-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-ch-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.contact-ch-email {
  background: rgba(59, 130, 246, 0.12);
  color: var(--electric-lt);
}

.contact-ch-phone {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
}

.contact-channel-info {
  flex: 1;
  line-height: 1.25;
}

.contact-channel-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-channel-value {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.contact-channel-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: var(--transition);
}

.contact-channel-btn:hover {
  color: var(--gold-light);
}

.contact-channel-btn i,
.contact-mode-opt span i {
  font-size: 14px;
}

.contact-card-footer-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
  font-style: italic;
}

.contact-card-footer-tag i {
  color: var(--gold);
  font-size: 13px;
}

.contact-options-section {
  background: var(--off-white);
}

.contact-opt-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 32px 26px;
  height: 100%;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-opt-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--electric));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.contact-opt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11, 28, 58, 0.12);
  border-color: rgba(11, 28, 58, 0.1);
}

.contact-opt-card-highlight {
  background: var(--navy);
  border-color: transparent;
}

.contact-opt-card-highlight .contact-opt-title {
  color: var(--white);
}

.contact-opt-card-highlight .contact-opt-desc,
.resource-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

.contact-opt-card-highlight::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.contact-opt-icon {
  width: 66px;
  height: 66px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.contact-opt-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.contact-opt-phone {
  background: rgba(11, 28, 58, 0.07);
  color: var(--navy);
}

.contact-opt-email {
  background: rgba(59, 130, 246, 0.1);
  color: var(--electric);
}

.contact-opt-nri {
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
}

.contact-opt-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.contact-opt-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-opt-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}

.contact-opt-cta:hover {
  color: var(--gold);
  gap: 10px;
}

.contact-consult-card:hover .contact-consult-icon,
.contact-opt-cta-gold {
  color: var(--gold);
}

.contact-opt-cta-gold:hover {
  color: var(--gold-light);
}

.contact-form-section {
  background: var(--white);
  overflow: hidden;
}

.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 44px 40px;
}

.contact-form-sub {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-form-group {
  margin-bottom: 4px;
}

.contact-form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.req {
  color: #ef4444;
}

.contact-input-wrap {
  position: relative;
}

.contact-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--text-body);
  pointer-events: none;
  z-index: 1;
}

.contact-form-input {
  width: 100%;
  padding: 13px 16px 13px 42px;
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.09);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  transition: var(--transition);
  outline: 0;
  appearance: none;
}

.contact-form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.12);
}

.contact-form-input::placeholder {
  color: rgba(100, 116, 139, 0.6);
}

.contact-form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.contact-form-textarea {
  resize: none;
  min-height: 110px;
  padding-top: 14px;
}

.contact-mode-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.contact-mode-opt {
  position: relative;
  cursor: pointer;
}

.contact-mode-opt input[type="radio"],
.contact-toggle-switch input,
.fp-bhk-opt input[type="radio"],
.fp-check-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.contact-mode-opt span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.09);
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
  cursor: pointer;
}

.contact-mode-opt input:checked+span {
  background: rgba(212, 168, 67, 0.08);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.contact-toggle-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
}

.contact-toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
}

.contact-toggle-switch {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.contact-toggle-track {
  display: block;
  width: 46px;
  height: 26px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 13px;
  transition: background 0.3s ease;
  position: relative;
}

.contact-toggle-switch input:checked+.contact-toggle-track {
  background: var(--gold);
}

.contact-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: left 0.3s ease;
}

.bc-toggle-switch input:checked+.bc-toggle-track .bc-toggle-thumb,
.contact-toggle-switch input:checked+.contact-toggle-track .contact-toggle-thumb {
  left: 23px;
}

.contact-toggle-state {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-body);
  width: 22px;
}

.contact-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 18px 28px;
  font-size: 15px;
  margin-bottom: 16px;
}

.contact-form-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.contact-form-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-body);
}

.contact-form-trust span i {
  color: var(--green);
  font-size: 13px;
}

.contact-sidebar-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 28px 26px;
}

.contact-sidebar-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-sidebar-title i {
  font-size: 18px;
  color: var(--gold);
}

.contact-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-process-step {
  display: flex;
  gap: 14px;
  position: relative;
  padding-bottom: 20px;
}

.contact-process-step:last-child {
  padding-bottom: 0;
}

.contact-process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(212, 168, 67, 0.1));
}

.contact-process-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212, 168, 67, 0.3);
}

.contact-process-info {
  flex: 1;
  padding-top: 4px;
}

.contact-process-step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.contact-process-step-desc {
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.55;
}

.contact-why-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-why-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.55;
}

.contact-why-item i {
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-locations-section {
  background: var(--off-white);
}

.contact-location-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 22px;
  padding: 36px 32px;
  height: 100%;
  transition: var(--transition);
}

.contact-location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(11, 28, 58, 0.1);
}

.contact-location-card-dark {
  background: var(--navy);
  border-color: transparent;
}

.contact-location-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-location-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(11, 28, 58, 0.07);
  color: var(--navy);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-location-icon-gold {
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
}

.contact-location-city,
.contact-location-city-white {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.contact-location-city-white {
  color: var(--white);
}

.contact-location-tag,
.contact-location-tag-gold {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-body);
  text-transform: uppercase;
}

.contact-location-tag-gold {
  color: var(--gold);
}

.contact-location-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 22px;
}

.contact-location-desc-white {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 22px;
}

.contact-location-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}

.contact-area-tag,
.contact-area-tag-light {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
}

.contact-area-tag {
  background: rgba(11, 28, 58, 0.06);
  border: 1px solid rgba(11, 28, 58, 0.1);
  color: var(--navy);
}

.contact-area-tag:hover {
  background: rgba(11, 28, 58, 0.1);
}

.contact-area-tag-light {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.contact-area-tag-light:hover {
  background: rgba(212, 168, 67, 0.1);
  border-color: rgba(212, 168, 67, 0.2);
  color: var(--gold);
}

.contact-location-cta,
.contact-location-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}

.contact-location-cta:hover {
  color: var(--gold);
  gap: 11px;
}

.contact-location-cta-white {
  color: var(--gold);
}

.contact-location-cta-white:hover {
  color: var(--gold-light);
  gap: 11px;
}

.contact-consult-section {
  background: var(--white);
}

.contact-consult-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 26px 16px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  cursor: default;
}

.contact-consult-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(11, 28, 58, 0.18);
}

.contact-consult-card:hover .contact-consult-label {
  color: var(--white);
}

.contact-consult-icon,
.contact-consult-label {
  color: var(--navy);
  transition: var(--transition);
}

.contact-consult-icon {
  font-size: 30px;
  margin-bottom: 12px;
  display: block;
}

.contact-consult-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .contact-hero-visual-col {
    display: none;
  }

  .contact-hero-content {
    padding-top: 130px;
    padding-bottom: 70px;
  }

  .contact-form-wrap {
    padding: 30px 24px;
  }
}

@media (max-width: 767px) {
  .contact-hero-title {
    font-size: 38px;
    letter-spacing: -0.5px;
  }

  .contact-hero-cta {
    flex-direction: column;
  }

  .contact-hero-cta .btn-outline-white,
  .contact-hero-cta .btn-primary-gold {
    width: 100%;
    justify-content: center;
  }

  .contact-mode-options {
    gap: 6px;
  }

  .contact-mode-opt span {
    padding: 8px 10px;
    font-size: 12px;
  }

  .contact-location-card,
  .contact-location-card-dark {
    padding: 26px 22px;
  }

  .contact-form-wrap {
    padding: 24px 18px;
  }

  .contact-quick-stats {
    gap: 8px;
  }
}

@media (max-width: 575px) {
  .contact-consult-card {
    padding: 20px 12px;
  }

  .contact-submit-btn {
    font-size: 14px;
    padding: 16px 20px;
  }

  .contact-form-trust {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.how-works-section {
  background: #f0f4fa;
  position: relative;
  overflow: hidden;
}

.how-works-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 50%, rgba(11, 28, 58, 0.04) 0, transparent 50%), radial-gradient(circle at 85% 50%, rgba(212, 168, 67, 0.06) 0, transparent 50%);
  pointer-events: none;
}

.services-grid-section {
  background: var(--white);
  position: relative;
}

.services-grid-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230B1C3A' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.audience-section {
  background: linear-gradient(160deg, #f0f4fa 0, #e8eef8 50%, #f5f7fb 100%);
}

.comparison-section {
  background: linear-gradient(170deg, #f7f9fc 0, #eef2f8 100%);
  position: relative;
}

.faq-section {
  background: linear-gradient(170deg, #fff 0, #f4f7fc 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.05) 0, transparent 70%);
  pointer-events: none;
}

.what-we-do-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.what-we-do-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 80%, rgba(11, 28, 58, 0.04) 0, transparent 40%), radial-gradient(circle at 90% 20%, rgba(212, 168, 67, 0.05) 0, transparent 40%);
  pointer-events: none;
}

.wwd-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px 22px 20px;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wwd-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--electric));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.wwd-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11, 28, 58, 0.1);
  background: var(--white);
  border-color: rgba(11, 28, 58, 0.1);
}

.wwd-icon-wrap img {
  max-width: 130px;
  margin: 0 auto 10px;
  height: 130px;
  object-fit: contain;
}

.check-list li,
.wwd-card,
.wwd-title {
  transition: var(--transition);
}

.wwd-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.wwd-desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 0;
}

.wwd-img-wrap {
  height: 70px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 14px;
  opacity: 0.7;
}

.wwd-img-wrap img {
  max-height: 70px;
  object-fit: contain;
}

.checks-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.checks-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0 100%, rgba(11, 28, 58, 0.06) 0, transparent 50%), radial-gradient(ellipse at 100%0, rgba(212, 168, 67, 0.05) 0, transparent 50%);
  pointer-events: none;
}

.check-col-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.check-col-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
}

.check-col-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #0b1c3a;
  background: 0 0 !important;
}

.check-col-header i {
  font-size: 20px;
}

.check-col-navy {
  background: var(--navy);
}

.check-col-gold {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}

.check-col-blue {
  background: linear-gradient(90deg, #2563eb, var(--electric));
}

.check-col-green {
  background: linear-gradient(90deg, #059669, var(--green));
}

.check-list {
  list-style: none;
  padding: 12px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.check-list li {
  font-size: 12px;
  color: var(--text-body);
  border-radius: 6px;
  position: relative;
  padding: 5px 8px 5px 18px;
}

.check-list li::before {
  content: "·";
  position: absolute;
  left: 6px;
  color: var(--gold);
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  top: 4px;
}

.check-list li:hover {
  background: rgba(11, 28, 58, 0.03);
  color: var(--navy);
}

.sample-preview-sticky {
  position: sticky;
  top: 100px;
}

.sample-preview-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sample-report-mini {
  background: var(--navy);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(11, 28, 58, 0.3);
}

.sample-report-mini-header {
  background: rgba(212, 168, 67, 0.1);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sample-report-mini-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
}

.sample-report-mini-stamp {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
}

.sample-report-mini-body {
  padding: 18px;
}

.sample-score-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
}

.sample-score-circle {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.sample-score-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1;
}

.sample-score-text span {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  display: block;
}

.sample-score-text small {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.sample-checks-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
}

.sample-check-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}

.sample-download-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(to bottom, transparent, var(--navy) 70%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 4px;
}

.price-intel-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.price-intel-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}

.price-intel-section .section-title {
  color: var(--white);
}

.pi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  height: 100%;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.pi-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(212, 168, 67, 0.25);
  transform: translateY(-3px);
}

.pi-card-dark {
  background: rgba(11, 28, 58, 0.7);
  border-color: rgba(212, 168, 67, 0.18);
}

.pi-card-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pi-card-title {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 3px;
}

.pi-card-title,
.pi-title-white {
  color: var(--white);
}

.pi-card-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.pi-sub-muted {
  color: rgba(255, 255, 255, 0.35);
}

.pi-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.pi-table thead tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pi-table thead th {
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-align: left;
  letter-spacing: 0.5px;
}

.pi-table tbody td {
  padding: 8px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 12px;
}

.pi-avg-row td,
.pi-highlight-row td,
.pi-val-row strong {
  color: var(--white);
  font-weight: 700;
}

.pi-avg-row td {
  color: var(--gold);
  border-top: 1px solid rgba(212, 168, 67, 0.2);
}

.pi-negative,
.pi-neutral,
.pi-positive {
  color: #10b981 !important;
  font-weight: 700 !important;
}

.pi-negative,
.pi-neutral {
  color: #ef4444 !important;
}

.pi-neutral {
  color: #60a5fa !important;
}

.pi-footnote {
  margin-top: 10px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 5px;
}

.pi-valuation-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pi-val-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12.5px;
}

.pi-val-row span,
.pi-val-scope span {
  color: rgba(255, 255, 255, 0.6);
}

.pi-val-divider {
  border-top: 1px dashed rgba(212, 168, 67, 0.25);
  margin: 4px 0;
}

.pi-val-highlight {
  background: rgba(245, 158, 11, 0.05);
  border-radius: 6px;
  padding: 8px 6px;
  border-bottom: none;
}

.pi-tag-overpriced {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border-radius: 100px;
}

.pi-scope-val {
  color: var(--gold) !important;
  font-size: 14px !important;
}

.pi-yield-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pi-yield-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.pi-yield-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.pi-yield-val {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
}

.pi-yield-big {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
}

.pi-yield-divider {
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  margin: 2px 0;
}

.pi-badge-blue,
.pi-badge-green {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

.pi-badge-green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
}

.pi-badge-blue {
  background: rgba(59, 130, 246, 0.15);
  color: var(--electric-lt);
}

.pi-roi-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.pi-roi-row,
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pi-roi-period {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  width: 52px;
  flex-shrink: 0;
}

.pi-roi-bar-wrap {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 3px;
  overflow: hidden;
}

.pi-roi-bar {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.pi-roi-bar-gold {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.pi-roi-range {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  width: 70px;
  text-align: right;
}

.pi-roi-gold {
  color: var(--gold) !important;
}

.pi-invest-score {
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 10px;
  padding: 12px 14px;
  text-align: center;
}

.pi-invest-score-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.pi-invest-num,
.pi-invest-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 4px;
}

.pi-invest-num {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
}

.pi-invest-tag {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

.pricing-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.pricing-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0 0, rgba(11, 28, 58, 0.05) 0, transparent 50%), radial-gradient(ellipse at 100% 100%, rgba(212, 168, 67, 0.06) 0, transparent 50%);
  pointer-events: none;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(11, 28, 58, 0.12);
}

.pricing-card-featured {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(212, 168, 67, 0.15);
}

.pricing-card-dark {
  background: var(--navy);
  border-color: rgba(212, 168, 67, 0.2);
}

.pricing-popular-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 10px 10px;
}

.pricing-card-badge-wrap {
  margin-bottom: 6px;
  margin-top: 8px;
}

.pkg-comp-table thead th,
.pricing-card-type {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

.pricing-type-gold {
  color: var(--gold) !important;
}

.pricing-card-tagline {
  font-size: 12px;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.5;
}

.pricing-price {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1;
}

.pricing-price span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  margin-left: 3px;
}

.pricing-price-gold {
  color: var(--gold-dark) !important;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pricing-features li {
  gap: 9px;
  font-size: 13px;
  color: var(--text-body);
}

.pricing-features li i {
  font-size: 15px;
  color: var(--green);
  flex-shrink: 0;
}

.pricing-features-light li {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-features-light li i,
.t5-card-gold .t5-list li::before {
  color: var(--gold);
}

.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.pricing-btn-outline {
  background: 0 0;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.pricing-btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.pricing-btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: 0;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(212, 168, 67, 0.35);
}

.pricing-btn-gold:hover {
  box-shadow: 0 8px 28px rgba(212, 168, 67, 0.5);
  transform: translateY(-2px);
  color: var(--white);
}

.pricing-comparison-wrap {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.pricing-comparison-title {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pkg-comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.pkg-comp-table thead tr {
  background: #f0f4fa;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.pkg-comp-table thead th {
  padding: 12px 16px;
  font-size: 13px;
  text-align: center;
}

.pkg-comp-table thead th:first-child {
  text-align: left;
}

.pkg-smart {
  color: var(--gold-dark) !important;
}

.pkg-comp-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.2s;
}

.pkg-comp-table tbody td {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-body);
  text-align: center;
}

.pkg-comp-table tbody td:first-child {
  text-align: left;
  color: var(--navy);
  font-weight: 600;
}

.trust-strip-5col {
  background: linear-gradient(170deg, #f0f4fa 0, #ebf0f8 100%);
  position: relative;
  overflow: hidden;
}

.trust-5col-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230B1C3A' fill-opacity='0.02'%3E%3Cpath d='M0 0h80v80H0z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.t5-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  height: 100%;
  transition: var(--transition);
}

.t5-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(11, 28, 58, 0.1);
  border-color: rgba(11, 28, 58, 0.12);
}

.t5-card-gold {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: rgba(212, 168, 67, 0.2);
}

.t5-card-gold .t5-title {
  color: var(--white);
}

.t5-card-gold .t5-list li {
  color: rgba(255, 255, 255, 0.65);
}

.t5-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.t5-icon-red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.t5-icon-navy {
  background: rgba(11, 28, 58, 0.08);
  color: var(--navy);
}

.t5-icon-gold {
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
}

.t5-icon-blue {
  background: rgba(59, 130, 246, 0.1);
  color: var(--electric);
}

.t5-icon-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}

.t5-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: #d4a843;
  margin-bottom: 12px;
  line-height: 1.3;
}

.t5-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.t5-list li {
  font-size: 12.5px;
  color: var(--text-body);
  padding-left: 14px;
  position: relative;
  line-height: 1.45;
}

.t5-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.media-section {
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.media-label {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0b1c3a;
}

.media-logo-item,
.media-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-logos-row {
  gap: 20px;
}

.media-logo-item {
  transition: var(--transition);
}

.t5-card img {
  margin-bottom: 10px;
}

.media-logo-item img {
  max-width: 200px;
}

.media-logo-text {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  text-align: center;
}

.media-logo-toi {
  font-size: 13px;
  font-weight: 900;
  color: #c00;
  text-align: center;
}

.media-logo-ht {
  font-size: 17px;
  font-style: normal;
  color: #d40000;
}

.media-logo-ht em {
  font-style: normal;
  font-weight: 300;
}

.media-logo-ndtv {
  font-size: 22px;
  font-weight: 900;
  color: #c00;
  letter-spacing: -1px;
}

.media-logo-et {
  font-size: 12px;
  font-weight: 800;
  color: #c50;
}

.media-logo-ent {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.5px;
}

.media-logo-inc {
  font-size: 18px;
  font-weight: 400;
  color: #1a1a1a;
}

.media-logo-inc strong {
  font-weight: 900;
}

@media (max-width: 991px) {
  .sample-preview-sticky {
    position: static;
    top: auto;
  }
}

@media (max-width: 767px) {
  .pi-card {
    padding: 18px 14px;
  }

  .pricing-card {
    padding: 22px 16px;
  }

  .t5-card {
    padding: 20px 16px;
  }

  .checks-section .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .media-logos-row {
    gap: 20px;
  }

  .pricing-comparison-wrap {
    overflow: hidden;
  }

  .pkg-comp-table {
    font-size: 12px;
  }

  .pkg-comp-table tbody td,
  .pkg-comp-table thead th {
    padding: 10px;
  }
}

@media (max-width: 575px) {
  .wwd-card {
    padding: 20px 16px 14px;
  }

  .pricing-price {
    font-size: 24px;
  }

  .t5-title {
    font-size: 14px;
  }

  .what-we-do-section .col-6.col-md-4.col-lg-4 {
    width: 100% !important;
  }

  .media-logo-item {
    width: calc(50% - 10px);
  }

  .media-logo-item img {
    max-width: 150px;
    height: 80px;
    object-fit: contain;
  }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-title .accent {
  color: var(--gold);
  display: inline;
}

.hero-card-report-footer {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

.hero-card-report-footer i {
  color: var(--gold);
  font-size: 14px;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 12px;
}

@media (max-width: 991px) {
  .trust-bar-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 6px;
    gap: 0;
    scrollbar-width: none;
  }

  .trust-bar-inner::-webkit-scrollbar {
    display: none;
  }

  .trust-bar-item {
    flex-shrink: 0;
    padding: 0 16px;
    white-space: nowrap;
  }

  .trust-bar-divider {
    flex-shrink: 0;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 30px;
    letter-spacing: -0.5px;
  }
}

.fp-hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.fp-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/banner-img.jpg);
  background-size: cover;
  background-position: center;
}

.fp-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0c1b38ee;
}

.fp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.fp-orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.11) 0, transparent 70%);
  top: -100px;
  right: 60px;
}

.fp-orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0, transparent 70%);
  bottom: -60px;
  left: 100px;
}

.fp-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 60px;
  width: 100%;
}

.fp-hero-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 4.8vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.fp-hero-accent {
  color: var(--gold);
}

.fp-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 490px;
  line-height: 1.78;
  margin-bottom: 28px;
}

.fp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.fp-hero-visual-col {
  padding-top: 20px;
  padding-bottom: 20px;
}

.fp-hero-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  animation: float-card 5s ease-in-out infinite;
}

.fp-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.fp-card-header-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
}

.fp-prop-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
  position: relative;
}

.fp-prop-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 14px 16px;
  transition: var(--transition);
  position: relative;
}

.fp-prop-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 168, 67, 0.2);
}

.fp-prop-featured {
  border-color: rgba(212, 168, 67, 0.25);
  background: rgba(212, 168, 67, 0.05);
}

.fp-prop-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.fp-prop-header,
.fp-prop-icon {
  display: flex;
  align-items: center;
}

.fp-prop-header {
  gap: 12px;
  margin-bottom: 10px;
}

.fp-prop-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
  font-size: 18px;
  justify-content: center;
  flex-shrink: 0;
}

.fp-prop-icon-sm {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.6);
}

.fp-prop-meta {
  flex: 1;
  line-height: 1.3;
}

.fp-prop-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
}

.fp-prop-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

.fp-prop-score {
  display: flex;
  align-items: baseline;
  gap: 1px;
  flex-shrink: 0;
}

.fp-prop-score-num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.fp-prop-score-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.fp-prop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.fp-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

.fp-tag i {
  font-size: 12px;
}

.fp-tag-green {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.fp-tag-gold {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
}

.fp-tag-blue {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
}

.fp-prop-indicators {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fp-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fp-ind-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  width: 90px;
  flex-shrink: 0;
}

.fp-ind-bar {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.fp-ind-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1.5s ease;
  width: 0;
}

.fp-ind-green {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.fp-ind-gold {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.fp-ind-val {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  width: 30px;
  text-align: right;
}

.fp-prop-blur-item {
  filter: blur(3px);
  pointer-events: none;
  user-select: none;
}

.fp-card-blur-cta {
  display: flex;
  justify-content: center;
  padding: 10px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.fp-why-section {
  background: var(--off-white);
}

.fp-form-section {
  background: var(--white);
}

.fp-progress-wrap {
  margin-bottom: 32px;
}

.fp-progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.fp-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: default;
}

.fp-progress-step-dot,
.fp-progress-step-label {
  color: var(--text-body);
  transition: var(--transition);
}

.fp-progress-step-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--off-white);
  border: 2.5px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.fp-progress-step-label {
  font-size: 11.5px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.fp-step-active .fp-progress-step-dot {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(11, 28, 58, 0.3);
}

.fp-step-active .fp-progress-step-label {
  color: var(--navy);
}

.fp-step-done .fp-progress-step-dot {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.fp-step-done .fp-progress-step-label {
  color: var(--green);
}

.fp-progress-line {
  flex: 1;
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
  margin: 0 6px 28px;
  max-width: 80px;
  transition: background 0.3s ease;
}

.fp-progress-line.fp-line-done {
  background: var(--green);
}

.fp-form-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.fp-step-panel,
.vp-doc-check-item input,
.vp-priority-pill input,
.vp-scope-item input {
  display: none;
}

.fp-step-panel-active {
  display: block;
}

.fp-step-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.fp-step-num {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 900;
  color: rgba(11, 28, 58, 0.08);
  line-height: 1;
  flex-shrink: 0;
}

.fp-step-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.fp-step-sub {
  font-size: 13.5px;
  color: var(--text-body);
}

.fp-budget-display {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
}

.fp-range-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fp-range-max,
.fp-range-min {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-body);
  white-space: nowrap;
}

.fp-range-input {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 5px;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(11, 28, 58, 0.12) 0%);
  border-radius: 3px;
  outline: 0;
  cursor: pointer;
}

.fp-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(11, 28, 58, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.fp-range-input::-webkit-slider-thumb:hover {
  background: var(--gold);
  transform: scale(1.15);
}

.fp-range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--white);
  cursor: pointer;
}

.fp-location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.09);
  border-radius: 12px;
  min-height: 52px;
  transition: var(--transition);
}

.fp-location-chips:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.fp-bhk-opt span,
.fp-loc-chip {
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
  cursor: pointer;
}

.fp-loc-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: var(--off-white);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  font-size: 12.5px;
  user-select: none;
}

.fp-loc-chip.fp-chip-selected,
.fp-loc-chip:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.fp-loc-chip.fp-chip-selected {
  background: rgba(11, 28, 58, 0.08);
  font-weight: 700;
}

.fp-loc-chip.fp-chip-selected::after {
  content: " ✓";
}

.fp-bhk-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fp-bhk-opt {
  position: relative;
  cursor: pointer;
}

.fp-bhk-opt span {
  display: inline-block;
  padding: 9px 16px;
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.09);
  border-radius: 10px;
  font-size: 13px;
}

.fp-bhk-opt input:checked+span {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.fp-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.fp-check-item {
  position: relative;
  cursor: pointer;
}

.fp-check-item span,
.fp-check-item span i {
  color: var(--text-body);
  transition: var(--transition);
}

.fp-check-item span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.3;
}

.fp-check-item span i {
  font-size: 15px;
  flex-shrink: 0;
}

.fp-check-item input:checked+span {
  background: rgba(11, 28, 58, 0.06);
  border-color: var(--navy);
  color: var(--navy);
  font-weight: 700;
}

.fp-check-item input:checked+span i {
  color: var(--gold);
}

.fp-risk-slider-wrap {
  padding: 10px 0;
}

.fp-risk-slider {
  width: 100%;
  margin-bottom: 12px;
}

.fp-risk-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.fp-risk-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-body);
}

.fp-risk-indicator {
  text-align: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  padding: 8px 20px;
  background: rgba(11, 28, 58, 0.05);
  border: 1.5px solid rgba(11, 28, 58, 0.1);
  border-radius: 10px;
  display: inline-block;
  min-width: 140px;
}

.fp-step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.fp-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: 0 0;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
}

.fp-back-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(11, 28, 58, 0.04);
}

.fp-next-btn i {
  font-size: 16px;
  transition: transform 0.3s;
}

.fp-deliverables-section {
  background: var(--off-white);
}

.fp-deliver-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 32px 26px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.fp-deliver-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.fp-deliver-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(11, 28, 58, 0.1);
}

.fp-deliver-card:hover::after {
  transform: scaleX(1);
}

.fp-deliver-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: var(--transition);
  background: rgba(11, 28, 58, 0.07) !important;
}

.fp-concierge-ideal strong,
.fp-deliver-icon i {
  color: var(--gold);
}

.fp-deliver-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.fp-deliver-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

.fp-dashboard-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.fp-concierge-card::before,
.fp-dashboard-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.fp-sample-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 26px 22px;
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.fp-sample-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateY(-4px);
}

.fp-sample-card-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 14px;
}

.fp-sample-card-header {
  margin-bottom: 18px;
}

.fp-sample-card-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 5px;
}

.fp-sample-card-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}

.fp-sample-score-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.fp-sample-score {
  text-align: center;
  flex-shrink: 0;
}

.fp-sample-score-num {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.fp-sample-score-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.fp-sample-indicators {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fp-concierge-list span,
.fp-sample-ind {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.fp-si-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fp-si-green {
  background: #10b981;
  box-shadow: 0 0 5px #10b981;
}

.fp-si-gold {
  background: var(--gold);
  box-shadow: 0 0 5px var(--gold);
}

.fp-si-red {
  background: #ef4444;
  box-shadow: 0 0 5px #ef4444;
}

.fp-sample-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fp-stag {
  display: inline-block;
  padding: 4px 11px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.fp-sample-card-blur {
  position: relative;
  overflow: hidden;
}

.fp-sample-blur-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 28, 58, 0.2) 0, rgba(11, 28, 58, 0.92) 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  border-radius: 20px;
}

.fp-sample-card-blur .fp-sample-card-header,
.fp-sample-card-blur .fp-sample-score-row {
  filter: blur(4px);
}

.fp-trust-section {
  background: var(--off-white);
}

.fp-concierge-section {
  background: var(--white);
}

.fp-concierge-card {
  background: var(--navy);
  border-radius: 24px;
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}

.fp-concierge-card::before {
  background-image: linear-gradient(rgba(212, 168, 67, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.fp-concierge-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.fp-concierge-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 500px;
  position: relative;
  z-index: 1;
}

.fp-concierge-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.fp-concierge-list span {
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.fp-concierge-list i {
  color: var(--green);
  font-size: 15px;
}

.fp-concierge-ideal {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
  z-index: 1;
  margin: 0;
}

.fp-concierge-icon-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.1);
  border: 2px solid rgba(212, 168, 67, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: var(--gold);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .fp-hero-visual-col {
    display: none;
  }

  .fp-hero-content {
    padding-top: 130px;
    padding-bottom: 70px;
  }

  .fp-form-card {
    padding: 30px 24px;
  }

  .fp-concierge-card {
    padding: 36px 28px;
  }
}

@media (max-width: 767px) {
  .fp-hero-title {
    font-size: 36px;
    letter-spacing: -0.5px;
  }

  .fp-hero-cta {
    flex-direction: column;
  }

  .fp-hero-cta .btn-outline-white,
  .fp-hero-cta .btn-primary-gold {
    width: 100%;
    justify-content: center;
  }

  .fp-progress-steps {
    gap: 0;
  }

  .fp-progress-step-label {
    font-size: 10px;
  }

  .fp-progress-step-dot {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .fp-progress-line {
    max-width: 40px;
  }

  .fp-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .fp-form-card {
    padding: 24px 18px;
  }

  .fp-step-nav {
    flex-direction: column;
    gap: 12px;
  }

  .fp-back-btn,
  .fp-step-nav .btn-primary-gold {
    width: 100%;
    justify-content: center;
  }

  .fp-risk-labels {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }

  .fp-concierge-card {
    padding: 28px 20px;
  }

  .fp-concierge-icon-wrap {
    width: 80px;
    height: 80px;
    font-size: 36px;
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .fp-bhk-options {
    gap: 6px;
  }

  .fp-bhk-opt span {
    padding: 8px 12px;
    font-size: 12px;
  }

  .fp-progress-step-label {
    display: none;
  }
}

.vp-hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.vp-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/banner-img.jpg);
  background-size: cover;
  background-position: center;
}

.privacy-hero-bg::after,
.vp-hero-bg::after {
  background-color: #0f1f41e6;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
}

.vp-hero-grid,
.vp-orb {
  position: absolute;
  pointer-events: none;
}

.vp-hero-grid {
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.035) 1px, transparent 1px);
  background-size: 50px 50px;
}

.vp-orb {
  border-radius: 50%;
  filter: blur(90px);
}

.vp-orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0, transparent 70%);
  top: -120px;
  right: 60px;
}

.vp-orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.07) 0, transparent 70%);
  bottom: -60px;
  left: 100px;
}

.vp-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 60px;
  width: 100%;
}

.vp-min-vh {
  min-height: calc(100vh - 110px);
}

.vp-hero-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.vp-hero-accent {
  color: var(--gold);
}

.vp-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.vp-hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.vp-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.vp-trust-pill i {
  font-size: 13px;
}

.vp-trust-pill:hover {
  border-color: rgba(212, 168, 67, 0.25);
  color: rgba(255, 255, 255, 0.85);
}

.vp-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.vp-hero-visual-col {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}

.vp-dashboard-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  animation: float-card 5s ease-in-out infinite;
}

.vp-dash-header {
  justify-content: space-between;
  margin-bottom: 20px;
}

.vp-dash-header,
.vp-dash-title,
.vp-score-row {
  display: flex;
  align-items: center;
}

.vp-dash-title {
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.vp-dash-title i,
.vp-trust-pill i {
  color: var(--gold);
}

.vp-score-row {
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  margin-bottom: 18px;
}

.vp-score-circle-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.vp-score-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1;
}

.vp-score-num {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
}

.vp-score-denom {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
}

.vp-score-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.vp-score-risk-text {
  font-size: 15px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.vp-score-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.35);
}

.vp-param-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.vp-param-label,
.vp-param-row {
  display: flex;
  align-items: center;
}

.vp-param-row {
  justify-content: space-between;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 9px;
  transition: var(--transition);
}

.vp-param-row:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 168, 67, 0.12);
}

.vp-param-label {
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
}

.vp-param-label i {
  color: var(--gold);
  font-size: 13px;
}

.vp-dash-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  gap: 10px;
  flex-wrap: wrap;
}

.vp-dash-prop-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.vp-dash-prop-value {
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 5px;
}

.vp-dash-prop-value i {
  color: var(--gold);
}

.vp-float-card {
  position: absolute;
  background: rgba(11, 28, 58, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 16px;
  z-index: 3;
  animation: float-card 4s ease-in-out infinite;
}

.vp-float-top {
  top: 10px;
  right: -20px;
  animation-delay: 1.2s;
}

.vp-float-bottom {
  bottom: 20px;
  left: -18px;
  animation-delay: 2.5s;
}

.vp-float-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.vp-float-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.vp-fi-red {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.vp-fi-green {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.vp-float-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.vp-float-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.vp-risk-card {
  border-radius: 16px;
  padding: 22px 18px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  background: 0 0 !important;
}

.vp-risk-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.vp-risk-red {
  background: rgba(239, 68, 68, 0.06);
  border-color: rgba(239, 68, 68, 0.12);
}

.vp-risk-orange {
  background: rgba(249, 115, 22, 0.06);
  border-color: rgba(249, 115, 22, 0.12);
}

.vp-risk-yellow {
  background: rgba(245, 158, 11, 0.06);
  border-color: rgba(245, 158, 11, 0.12);
}

.vp-risk-purple {
  background: rgba(139, 92, 246, 0.06);
  border-color: rgba(139, 92, 246, 0.12);
}

.vp-risk-blue {
  background: rgba(59, 130, 246, 0.06);
  border-color: rgba(59, 130, 246, 0.12);
}

.vp-risk-green-alt {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.12);
}

.vp-risk-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  background: #fff !important;
  color: var(--gold) !important;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
}

.vp-risk-red .vp-risk-icon {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.vp-risk-orange .vp-risk-icon {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}

.vp-risk-yellow .vp-risk-icon {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
}

.vp-risk-purple .vp-risk-icon {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
}

.vp-risk-blue .vp-risk-icon {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}

.vp-risk-green-alt .vp-risk-icon {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.vp-risk-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.vp-risk-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 12px;
}

.vp-risk-stat {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-body);
  opacity: 0.6;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 100px;
  display: inline-block;
}

.vp-form-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.vp-form-bg,
.vp-form-orb {
  position: absolute;
  pointer-events: none;
}

.vp-form-bg {
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
}

.vp-form-orb {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.vp-form-wrapper {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  padding: 0 0 36px;
}

.vp-step-progress {
  justify-content: center;
  padding: 28px 32px 0;
  gap: 0;
  margin-bottom: 32px;
  overflow-x: auto;
}

.vp-step-circle,
.vp-step-item,
.vp-step-progress {
  display: flex;
  align-items: center;
}

.vp-step-item {
  flex-direction: column;
  gap: 8px;
  cursor: default;
  flex-shrink: 0;
}

.vp-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.3);
  background: 0 0;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  transition: var(--transition);
}

.vp-step-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: color 0.3s;
}

.vp-step-active .vp-step-circle {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--earth, #2a1c10);
}

.vp-doc-checklist-title i,
.vp-step-active .vp-step-label {
  color: var(--gold);
}

.vp-step-done .vp-step-circle {
  border-color: var(--green, #10b981);
  background: var(--green, #10b981);
  color: var(--white);
}

.vp-step-done .vp-step-label {
  color: rgba(255, 255, 255, 0.55);
}

.vp-step-line {
  height: 2px;
  width: 60px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: background 0.4s;
}

.vp-step-line-done {
  background: var(--green, #10b981);
}

.vp-step-content {
  padding: 0 36px;
}

.vp-step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.vp-step-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vp-step-header-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.vp-step-header-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
}

.vp-stage-pill span {
  display: inline-block;
  transition: var(--transition);
}

.vp-stage-active {
  background: rgba(212, 168, 67, 0.1) !important;
}

.vp-final-nav {
  justify-content: space-between;
}

.vp-next-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(212, 168, 67, 0.3);
}

.vp-next-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(212, 168, 67, 0.45);
}

.vp-next-btn,
.vp-prev-btn,
.vp-upload-zone {
  cursor: pointer;
  transition: var(--transition);
}

.vp-prev-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}

.vp-prev-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

.vp-upload-zone {
  border: 2px dashed rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.vp-upload-zone.vp-drag-over,
.vp-upload-zone:hover {
  border-color: rgba(212, 168, 67, 0.4);
  background: rgba(212, 168, 67, 0.04);
}

.vp-upload-icon {
  font-size: 44px;
  color: rgba(212, 168, 67, 0.5);
  margin-bottom: 12px;
  display: block;
}

.vp-upload-title {
  font-size: 16px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}

.vp-upload-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 18px;
}

.vp-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  background: rgba(212, 168, 67, 0.1);
  border: 1.5px solid rgba(212, 168, 67, 0.25);
  color: var(--gold);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-head);
  margin-bottom: 12px;
}

.vp-upload-btn:hover {
  background: rgba(212, 168, 67, 0.18);
  border-color: rgba(212, 168, 67, 0.45);
}

.vp-upload-formats {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.28);
}

.vp-files-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.vp-file-icon,
.vp-file-item {
  display: flex;
  align-items: center;
}

.vp-file-item {
  gap: 12px;
  padding: 11px 14px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 10px;
}

.vp-file-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.vp-file-info {
  flex: 1;
}

.vp-file-name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.vp-file-size {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

.vp-file-status {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.vp-doc-checklist {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 22px 20px;
  margin-bottom: 16px;
}

.vp-doc-checklist-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.vp-doc-check-box,
.vp-doc-check-item {
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.vp-doc-check-item {
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  height: 100%;
}

.vp-doc-check-item:hover,
.vp-scope-item:hover {
  border-color: rgba(212, 168, 67, 0.25);
}

.vp-doc-check-box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  justify-content: center;
  flex-shrink: 0;
}

.vp-doc-check-item input:checked~.vp-doc-check-box {
  background: var(--gold);
  border-color: var(--gold);
}

.vp-doc-check-item input:checked~.vp-doc-check-box::after {
  content: "✓";
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
}

.vp-doc-check-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.vp-doc-check-label i {
  color: var(--gold);
  font-size: 14px;
}

.vp-doc-check-item input:checked~.vp-doc-check-label {
  color: rgba(255, 255, 255, 0.85);
}

.vp-security-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: rgba(59, 130, 246, 0.07);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.vp-security-note i {
  color: #60a5fa;
  font-size: 18px;
  flex-shrink: 0;
}

.vp-security-note strong {
  color: rgba(255, 255, 255, 0.75);
}

.vp-scope-check,
.vp-scope-item {
  transition: var(--transition);
  display: flex;
  align-items: center;
  position: relative;
}

.vp-scope-item {
  gap: 0;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  height: 100%;
}

.vp-scope-check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  margin-right: 12px;
  justify-content: center;
}

.vp-scope-item input:checked~.vp-scope-check {
  background: var(--gold);
  border-color: var(--gold);
}

.vp-scope-item input:checked~.vp-scope-check::after {
  content: "✓";
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
}

.vp-scope-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.vp-scope-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.scope-blue {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
}

.scope-green {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.scope-red {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.scope-gold {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
}

.scope-purple {
  background: rgba(139, 92, 246, 0.12);
  color: #a78bfa;
}

.scope-orange {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}

.scope-teal {
  background: rgba(20, 184, 166, 0.12);
  color: #2dd4bf;
}

.vp-scope-title {
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2px;
}

.vp-scope-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.35);
}

.vp-scope-selected {
  border-color: rgba(212, 168, 67, 0.4) !important;
  background: rgba(212, 168, 67, 0.06) !important;
}

.mb-28 {
  margin-bottom: 28px;
}

.vp-priority-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.vp-priority-pill {
  cursor: pointer;
}

.vp-priority-card {
  padding: 18px 24px;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  min-width: 120px;
  transition: var(--transition);
  cursor: pointer;
}

.vp-priority-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.vp-priority-active {
  border-color: rgba(212, 168, 67, 0.5) !important;
  background: rgba(212, 168, 67, 0.08) !important;
}

.vp-priority-icon {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.vp-priority-name {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

.vp-priority-time {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

.vp-package-card {
  background: var(--off-white);
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.vp-package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.vp-pkg-featured {
  background: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(212, 168, 67, 0.2);
}

.vp-pkg-popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  background: var(--gold);
  color: var(--earth, #2a1c10);
  border-radius: 100px;
}

.vp-pkg-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.vp-pkg-featured .vp-pkg-header {
  border-color: rgba(255, 255, 255, 0.08);
}

.vp-pkg-name,
.vp-pkg-price span {
  font-family: var(--font-head);
  color: var(--navy);
}

.vp-pkg-name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.vp-pkg-featured .vp-pkg-name {
  color: var(--white);
}

.vp-pkg-price {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 8px;
}

.vp-pkg-featured .vp-pkg-price {
  color: rgba(255, 255, 255, 0.55);
}

.vp-pkg-price span {
  font-size: 26px;
  font-weight: 900;
}

.vp-pkg-featured .vp-pkg-price span,
.vp-pkg-time i {
  color: var(--gold);
}

.vp-pkg-ideal {
  font-size: 12px;
  color: var(--text-body);
  font-weight: 500;
}

.vp-pkg-featured .vp-pkg-ideal {
  color: rgba(255, 255, 255, 0.4);
}

.vp-pkg-body {
  padding: 20px 28px;
  flex: 1;
}

.vp-pkg-list li,
.vp-pkg-time {
  display: flex;
  align-items: center;
}

.vp-pkg-time {
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 18px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 8px;
}

.vp-pkg-featured .vp-pkg-time {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
}

.vp-pkg-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.vp-pkg-list li {
  gap: 9px;
  font-size: 13.5px;
  font-weight: 500;
}

.vp-pkg-yes {
  color: var(--text-dark);
}

.vp-pkg-yes i {
  color: var(--green);
  font-size: 15px;
}

.vp-pkg-no {
  color: var(--text-body);
  opacity: 0.5;
}

.vp-pkg-no i {
  color: #ef4444;
  font-size: 15px;
}

.vp-pkg-featured .vp-pkg-yes {
  color: rgba(255, 255, 255, 0.8);
}

.vp-pkg-featured .vp-pkg-no {
  color: rgba(255, 255, 255, 0.3);
}

.vp-pkg-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 28px 28px;
  padding: 13px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-family: var(--font-head);
}

.vp-pkg-cta-outline {
  border: 1.5px solid rgba(11, 28, 58, 0.2);
  color: var(--navy);
  background: 0 0;
}

.vp-pkg-cta-outline:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-1px);
}

.vp-pkg-cta-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border: 0;
  box-shadow: 0 4px 18px rgba(212, 168, 67, 0.35);
}

.vp-pkg-cta-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(212, 168, 67, 0.5);
  color: var(--white);
}

.vp-roi-banner,
.vp-roi-icon {
  display: flex;
  align-items: center;
}

.vp-roi-banner {
  gap: 20px;
  margin-top: 36px;
  padding: 22px 28px;
  background: var(--navy);
  border-radius: 18px;
  flex-wrap: wrap;
}

.vp-roi-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
  font-size: 22px;
  justify-content: center;
  flex-shrink: 0;
}

.vp-roi-content {
  flex: 1;
}

.vp-roi-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.vp-roi-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  align-items: center;
}

.vp-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.vp-timeline-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  position: relative;
}

.vp-tl-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.vp-tl-counter,
.vp-tl-num {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vp-tl-num {
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 3px solid var(--navy);
  font-size: 20px;
  color: var(--navy);
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(11, 28, 58, 0.12);
  z-index: 1;
}

.vp-timeline-item:hover .vp-tl-num {
  border-color: var(--gold);
  transform: scale(1.1);
}

.vp-tl-counter {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
}

.vp-tl-connector {
  width: 2px;
  flex-grow: 1;
  background: linear-gradient(to bottom, var(--navy), rgba(11, 28, 58, 0.2));
  margin: 0 24px;
  min-height: 40px;
}

.vp-no-connector {
  background: 0 0;
}

.vp-tl-content {
  padding: 0 0 36px;
  flex: 1;
}

.vp-tl-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  margin-top: 12px;
}

.vp-tl-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.72;
}

@media (max-width: 991px) {
  .vp-hero-visual-col {
    display: none;
  }

  .vp-hero-inner {
    padding-top: 130px;
    padding-bottom: 70px;
  }

  .vp-priority-group {
    gap: 10px;
  }

  .vp-priority-card {
    min-width: 100px;
    padding: 14px 16px;
  }
}

@media (max-width: 767px) {
  .vp-hero-title {
    font-size: 34px;
  }

  .vp-hero-cta {
    flex-direction: column;
  }

  .vp-hero-cta .btn-outline-white,
  .vp-hero-cta .btn-primary-gold {
    width: 100%;
    justify-content: center;
  }

  .vp-step-progress {
    gap: 0;
    padding: 20px 16px 0;
    overflow-x: auto;
  }

  .vp-step-line {
    width: 36px;
  }

  .vp-step-content {
    padding: 0 20px;
  }

  .vp-step-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .vp-stage-pills {
    gap: 7px;
  }

  .vp-stage-pill span {
    padding: 8px 13px;
    font-size: 12px;
  }

  .vp-priority-group {
    flex-direction: column;
    gap: 10px;
  }

  .vp-priority-card {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .vp-priority-icon {
    margin-bottom: 0;
  }

  .vp-step-nav {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .vp-next-btn,
  .vp-prev-btn,
  .vp-roi-banner .btn-primary-gold {
    width: 100%;
    justify-content: center;
  }

  .vp-timeline {
    padding: 0 8px;
  }

  .vp-tl-content {
    padding-bottom: 28px;
  }

  .vp-roi-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .vp-package-card {
    margin-bottom: 4px;
  }
}

@media (max-width: 575px) {
  .vp-hero-title {
    font-size: 30px;
    letter-spacing: -0.5px;
  }

  .vp-form-wrapper {
    border-radius: 16px;
  }

  .vp-upload-zone {
    padding: 24px 16px;
  }

  .vp-step-label {
    font-size: 9.5px;
  }
}

.privacy-hero {
  position: relative;
  min-height: 52vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
}

.privacy-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/banner-img.jpg);
  background-size: cover;
  background-position: center;
}

.privacy-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.privacy-hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.07) 0, transparent 65%);
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  pointer-events: none;
  filter: blur(60px);
}

.privacy-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 100px;
}

.privacy-hero-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.builder-hero-title em,
.final-cta-title em,
.privacy-hero-title em,
.prs-key-position-text em,
.rcp-hero-title em {
  color: var(--gold);
  font-style: normal;
}

.privacy-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.privacy-updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.pricing-ideal p,
.privacy-updated-badge i {
  font-size: 14px;
}

.privacy-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.privacy-toc-list li a,
.privacy-trust-tag {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.privacy-trust-tag {
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.privacy-trust-tag i {
  color: var(--gold);
  font-size: 13px;
}

.privacy-layout-section {
  background: var(--off-white);
}

.privacy-toc-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(11, 28, 58, 0.07);
}

.privacy-toc-header {
  background: var(--navy);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-toc-header-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.privacy-toc-header i {
  color: var(--gold);
  font-size: 16px;
}

.privacy-toc-list {
  list-style: none;
  padding: 14px 0;
  margin: 0;
}

.privacy-toc-list li a {
  gap: 10px;
  padding: 10px 22px;
  font-size: 13px;
  color: var(--text-body);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.privacy-toc-list li a:hover {
  color: var(--navy);
  background: rgba(11, 28, 58, 0.03);
  border-left-color: var(--gold);
  padding-left: 26px;
}

.privacy-toc-list li a.active {
  color: var(--gold);
  background: rgba(212, 168, 67, 0.05);
  border-left-color: var(--gold);
}

.privacy-toc-list li a i {
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
}

.privacy-toc-list li a.active i,
.privacy-toc-list li a:hover i {
  opacity: 1;
}

.privacy-toc-contact {
  margin: 0 14px 14px;
  padding: 16px;
  background: rgba(11, 28, 58, 0.04);
  border-radius: var(--radius-md);
  text-align: center;
}

.privacy-toc-contact-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.privacy-toc-contact-sub {
  font-size: 12px;
  color: var(--text-body);
  margin-bottom: 12px;
  line-height: 1.5;
}

.privacy-section-block {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin-bottom: 24px;
  scroll-margin-top: 110px;
  transition: var(--transition);
}

.privacy-section-block:hover {
  box-shadow: 0 8px 35px rgba(11, 28, 58, 0.07);
  border-color: rgba(11, 28, 58, 0.1);
}

.privacy-section-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.privacy-section-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(11, 28, 58, 0.06);
  color: var(--navy);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.privacy-section-block:hover .privacy-section-icon,
.vp-timeline-item:hover .vp-tl-num {
  background: var(--navy);
  color: var(--gold);
}

.privacy-section-heading {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.privacy-section-heading span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.privacy-body-text {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 16px;
}

.privacy-body-text:last-child {
  margin-bottom: 0;
}

.privacy-body-text strong {
  color: var(--navy);
  font-weight: 700;
}

.privacy-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.privacy-info-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: var(--transition);
}

.privacy-info-card:hover {
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: 0 4px 16px rgba(11, 28, 58, 0.07);
}

.privacy-info-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(11, 28, 58, 0.06);
  color: var(--navy);
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: var(--transition);
}

.privacy-info-card:hover .privacy-info-card-icon {
  background: var(--gold);
  color: var(--white);
}

.privacy-info-card-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.privacy-info-card-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

.privacy-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  margin: 20px 0;
}

.privacy-callout-gold {
  background: rgba(212, 168, 67, 0.07);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-left: 4px solid var(--gold);
}

.privacy-callout-green {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-left: 4px solid var(--green);
}

.privacy-callout-blue {
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-left: 4px solid var(--electric);
}

.privacy-callout-icon,
.privacy-list li i {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.privacy-callout-gold .privacy-callout-icon {
  color: var(--gold);
}

.privacy-callout-green .privacy-callout-icon {
  color: var(--green);
}

.privacy-callout-blue .privacy-callout-icon {
  color: var(--electric);
}

.privacy-callout-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 5px;
}

.privacy-callout-text,
.privacy-list li {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.7;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-list li {
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.privacy-list li i {
  font-size: 15px;
}

.privacy-list-green li i {
  color: var(--green);
}

.privacy-list-gold li i {
  color: var(--gold);
}

.privacy-list-blue li i {
  color: var(--electric);
}

.privacy-list-navy li i,
.roi-key-msg strong {
  color: var(--navy);
}

.privacy-section-divider {
  background: rgba(0, 0, 0, 0.05);
  margin: 24px 0;
}

.privacy-data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 13.5px;
}

.privacy-data-table thead th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.privacy-data-table thead th:first-child {
  border-radius: 8px 0 0 0;
}

.privacy-data-table thead th:last-child {
  border-radius: 0 8px 0 0;
}

.privacy-data-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.privacy-data-table tbody tr:hover {
  background: rgba(11, 28, 58, 0.025);
}

.privacy-data-table tbody td {
  padding: 13px 18px;
  color: var(--text-body);
  vertical-align: top;
}

.privacy-data-table tbody td:first-child {
  font-weight: 700;
  color: var(--navy);
}

.privacy-nri-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.privacy-nri-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
  background-size: 35px 35px;
  pointer-events: none;
}

.privacy-nri-inner {
  position: relative;
  z-index: 1;
}

.privacy-nri-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-nri-title i,
.resource-breadcrumb a:hover {
  color: var(--gold);
}

.privacy-nri-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.privacy-contact-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(11, 28, 58, 0.07);
  margin-top: 20px;
}

.privacy-contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(11, 28, 58, 0.06);
  color: var(--navy);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.privacy-contact-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.privacy-contact-text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.privacy-final-section {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.privacy-final-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1600&q=80);
  background-size: cover;
  background-position: center;
  opacity: 0.04;
}

.privacy-final-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.privacy-final-content {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .privacy-toc-wrap {
    position: static;
    margin-bottom: 30px;
  }

  .privacy-section-block {
    padding: 30px 28px;
  }

  .privacy-info-grid {
    grid-template-columns: 1fr;
  }

  .col-lg-3.sticky-sec {
    position: inherit !important;
  }
}

@media (max-width: 767px) {
  .privacy-hero {
    min-height: auto;
    padding: 70px 0 60px;
  }

  .privacy-section-block {
    padding: 26px 20px;
  }

  .privacy-nri-block {
    padding: 26px 22px;
  }

  .privacy-data-table {
    font-size: 12px;
  }

  .privacy-data-table tbody td,
  .privacy-data-table thead th {
    padding: 10px 12px;
  }

  .privacy-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .privacy-hero-title {
    font-size: 32px;
  }

  .privacy-security-pills {
    gap: 8px;
  }
}

.col-lg-3.sticky-sec {
  position: sticky;
  top: 100px;
}

.pricing-more-content {
  display: none;
  margin-top: 15px;
}

.pricing-card.active .pricing-more-content {
  display: block;
}

button.pricing-view-btn {
  color: #0b1c3a;
  border: 0;
  background-color: transparent;
  margin-bottom: 14px;
  position: relative;
  font-weight: 700;
  font-size: 16px;
}

.pricing-card.pricing-card-dark button.pricing-view-btn.pricing-view-btn-light,
.pricing-ideal.pricing-ideal-light {
  color: #fff;
}

button.pricing-view-btn::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 4px;
  right: -21px;
  background-image: url(../img/arrow-left.svg);
  background-size: 20px;
}

.resource-page-hero {
  position: relative;
  min-height: 70vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.resource-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/banner-img.jpg);
  background-size: cover;
  background-position: center;
}

.resource-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 58, 0.88);
}

.resource-hero-grid,
.section-gradient-dark::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.resource-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.resource-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0, transparent 70%);
  top: -100px;
  right: 80px;
}

.resource-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.07) 0, transparent 70%);
  bottom: -50px;
  left: 150px;
}

.resource-hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.resource-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.resource-breadcrumb i {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.25);
}

.resource-breadcrumb span {
  color: var(--gold);
  font-weight: 600;
}

.resource-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}

.resource-hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.resource-hero-title .accent {
  color: var(--gold);
}

.resource-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 520px;
  line-height: 1.78;
  margin-bottom: 34px;
}

.resource-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.section-dark {
  background: var(--navy);
}

.section-dark-mid {
  background: var(--navy-mid);
}

.section-light {
  background: var(--off-white);
}

.section-white {
  background: var(--white);
}

.section-gradient-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.section-gradient-dark::before {
  content: "";
  background-image: linear-gradient(rgba(212, 168, 67, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
}

.report-preview-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  animation: float-card 5s ease-in-out infinite;
}

.report-card-header {
  background: rgba(212, 168, 67, 0.1);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.report-header-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.feature-checklist li,
.report-verified-stamp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
}

.report-card-body {
  padding: 24px;
}

.risk-score-wrap {
  text-align: center;
  margin-bottom: 24px;
  padding: 20px 0;
  position: relative;
}

.risk-score-circle {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 12px;
}

.risk-score-bg {
  stroke: rgba(255, 255, 255, 0.07);
}

.risk-score-fill {
  stroke: var(--gold);
  stroke-linecap: round;
  transition: stroke-dashoffset 1.5s ease;
  filter: drop-shadow(0 0 6px rgba(212, 168, 67, 0.6));
}

.risk-score-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.risk-score-num .num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.risk-score-num .denom {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.risk-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.risk-param-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.risk-param-label {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.risk-param-label i {
  font-size: 13px;
  color: var(--gold);
}

.report-summary-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.report-summary-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
}

.report-summary-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.report-summary-value {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--electric));
  opacity: 0;
  transition: var(--transition);
}

.feature-card.card-gold::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.feature-card:hover,
.mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card-icon {
  width: 66px;
  height: 66px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.icon-navy {
  background: rgba(11, 28, 58, 0.08);
  color: var(--navy);
}

.icon-gold {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold-dark);
}

.icon-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}

.icon-red {
  background: rgba(239, 68, 68, 0.1);
  color: var(--red);
}

.icon-blue {
  background: rgba(59, 130, 246, 0.1);
  color: var(--electric);
}

.feature-card-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-card-desc {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 22px;
  line-height: 1.7;
}

.feature-checklist {
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-checklist li {
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-body);
  font-weight: 500;
}

.feature-checklist li i {
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
}

.feature-card-bg-icon {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 120px;
  opacity: 0.04;
  color: var(--navy);
  pointer-events: none;
}

.mini-card,
.mini-card-icon {
  transition: var(--transition);
}

.mini-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  height: 100%;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.mini-card::after,
.risk-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
}

.mini-card::after {
  bottom: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: transform 0.3s ease;
}

.mini-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 20px 50px rgba(11, 28, 58, 0.2);
}

.mini-card:hover::after,
.risk-card:hover::before {
  transform: scaleX(1);
}

.mini-card:hover .mini-card-icon {
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
}

.mini-card:hover .mini-card-title {
  color: var(--white);
}

.mini-card:hover .mini-card-desc,
.nri-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

.mini-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(11, 28, 58, 0.07);
  color: var(--navy);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.mini-card-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.mini-card-desc,
.mini-card-title,
.risk-card {
  transition: var(--transition);
}

.mini-card-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.6;
}

.risk-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.risk-card::before {
  top: 0;
  background: linear-gradient(90deg, var(--red), #f97316);
  transition: transform 0.35s ease;
}

.risk-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
}

.risk-card-severity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.severity-high {
  background: rgba(239, 68, 68, 0.1);
  color: var(--red);
}

.severity-medium {
  background: rgba(245, 158, 11, 0.1);
  color: var(--yellow);
}

.risk-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.08);
  color: var(--red);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.risk-card-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.risk-card-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 18px;
}

.risk-card-signs {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.risk-card-signs li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-body);
}

.risk-card-signs li i {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.risk-card-dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(239, 68, 68, 0.2);
}

.risk-card-dark .risk-card-title {
  color: var(--white);
}

.risk-card-dark .risk-card-desc,
.risk-card-dark .risk-card-signs li,
.srv-main-card-dark .srv-includes-list li {
  color: rgba(255, 255, 255, 0.6);
}

.article-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(11, 28, 58, 0.1);
  border-color: rgba(11, 28, 58, 0.12);
}

.article-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.article-thumb-icon {
  font-size: 3rem;
  color: rgba(212, 168, 67, 0.3);
}

.article-thumb-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, rgba(26, 47, 90, 0.8) 100%);
}

.article-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-content {
  padding: 24px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.article-meta i {
  color: var(--gold);
}

.article-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.article-excerpt {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 18px;
}

.article-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}

.article-read-link:hover {
  color: var(--gold);
  gap: 10px;
}

.article-read-link i {
  transition: transform 0.3s;
}

.article-read-link:hover i {
  transform: translateX(3px);
}

.article-card-dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.07);
}

.article-card-dark .article-title,
.step-num:hover .step-counter,
.step-num:hover .step-icon {
  color: var(--white);
}

.article-card-dark .article-excerpt {
  color: rgba(255, 255, 255, 0.55);
}

.article-card-dark .article-read-link {
  color: var(--gold);
}

.article-card-dark:hover {
  border-color: rgba(212, 168, 67, 0.2);
}

.cat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cat-btn,
.search-bar-wrap input {
  font-family: var(--font-body);
  transition: var(--transition);
}

.cat-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  background: 0 0;
  color: var(--text-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.cat-btn.active,
.cat-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(212, 168, 67, 0.08);
}

.cat-btn-dark {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
}

.cat-btn-dark.active,
.cat-btn-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 168, 67, 0.1);
}

.search-bar-wrap {
  position: relative;
  max-width: 540px;
}

.search-bar-wrap input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 50px 14px 18px;
  color: var(--white);
  font-size: 14px;
  outline: 0;
}

.search-bar-light input:focus,
.search-bar-wrap input:focus {
  border-color: var(--gold);
}

.search-bar-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.search-bar-wrap .search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 18px;
  pointer-events: none;
}

.search-bar-light input {
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--navy);
}

.search-bar-light input::placeholder {
  color: var(--text-muted);
}

.stats-strip {
  background: var(--navy);
  padding: 50px 0;
}

.stat-item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0 30px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

.stat-icon {
  font-size: 28px;
  color: rgba(212, 168, 67, 0.3);
  margin-bottom: 10px;
}

.steps-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.steps-timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--electric) 50%, var(--gold) 100%);
  z-index: 0;
}

.step-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-icon,
.step-num {
  transition: var(--transition);
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 20px rgba(11, 28, 58, 0.15);
}

.step-num:hover {
  background: var(--navy);
  border-color: var(--gold);
  transform: scale(1.1);
}

.step-icon {
  font-size: 22px;
  color: var(--navy);
}

.step-counter {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

.protect-step-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.protect-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(11, 28, 58, 0.1);
  border-color: rgba(11, 28, 58, 0.12);
}

.protect-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(212, 168, 67, 0.35);
}

.protect-step-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.protect-step-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.7;
}

.comp-table-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.comp-table thead th {
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
}

.comp-th-label,
.comp-th-others {
  text-align: left;
  background: #f8fafc;
  color: var(--text-body);
}

.comp-th-others {
  text-align: center;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.comp-th-deallens {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
}

.comp-td-feature i,
.comp-th-deallens-name,
.nri-breadcrumb a:hover {
  color: var(--gold);
}

.comp-table tbody tr {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.comp-table tbody tr:hover {
  background: rgba(11, 28, 58, 0.02);
}

.comp-td-feature {
  padding: 18px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.comp-td-deallens,
.comp-td-others {
  padding: 18px 28px;
  text-align: center;
}

.comp-td-others {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.comp-td-deallens {
  background: rgba(11, 28, 58, 0.03);
}

.comp-check,
.comp-x {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.comp-x {
  color: #ef4444;
}

.comp-check {
  color: var(--green);
}

.verify-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.verify-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.verify-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--gold);
  flex-shrink: 0;
}

.verify-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.verify-item-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.audience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  height: 100%;
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(11, 28, 58, 0.12);
  border-color: var(--gold);
}

.audience-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: var(--transition);
  background: var(--gold) !important;
  color: #fff !important;
}

.audience-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.audience-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .steps-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .steps-timeline::before {
    display: none;
  }
}

@media (max-width: 991px) {

  .nav-cta,
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .resource-page-hero {
    min-height: 60vh;
  }

  .resource-hero-inner {
    padding: 40px 0 50px;
  }

  .section-pad {
    padding: 70px 0;
  }

  .section-pad-lg {
    padding: 80px 0;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px;
  }

  .feature-card {
    padding: 32px 26px;
  }

  .comp-td-feature {
    padding: 14px;
  }
}

@media (max-width: 767px) {
  .trust-bar-divider {
    display: none;
  }

  .trust-bar-inner {
    justify-content: center;
  }

  .steps-timeline {
    grid-template-columns: 1fr;
  }

  .report-summary-row {
    grid-template-columns: 1fr 1fr;
  }

  .final-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .comp-table {
    font-size: 13px;
  }

  .comp-td-deallens,
  .comp-td-feature,
  .comp-td-others,
  .comp-th-deallens,
  .comp-th-label,
  .comp-th-others {
    padding: 12px 14px;
  }

  .sticky-mobile-cta {
    display: flex;
  }

  .whatsapp-float {
    bottom: 78px;
  }

  .resource-hero-title {
    font-size: 36px;
    letter-spacing: -0.5px;
  }

  .resource-hero-cta {
    flex-direction: column;
  }

  .resource-hero-cta .btn-outline-white,
  .resource-hero-cta .btn-primary-gold {
    width: 100%;
    justify-content: center;
  }

  .cat-filters {
    gap: 6px;
  }
}

@media (max-width: 575px) {
  .resource-hero-title {
    font-size: 30px;
  }

  .btn-outline-white,
  .btn-primary-gold {
    width: 100%;
    justify-content: center;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .final-cta-btns .btn-outline-white,
  .final-cta-btns .btn-primary-gold {
    width: 280px;
    justify-content: center;
  }
}

.vp-step-content .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 12px;
}

.vp-priority-card:hover {
  border-color: rgba(212, 168, 67, 0.25);
}

.vp-step-content .row>* {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.vp-step-content .ct-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.vp-step-content .ct-input,
.vp-step-content .ct-select,
.vp-step-content .ct-textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.vp-step-content .ct-select-wrap {
  position: relative;
  width: 100%;
  display: block;
}

.vp-step-content .ct-select-wrap .ct-select {
  width: 100%;
  padding-right: 36px;
}

.vp-step-content .ct-select-wrap .ct-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 18px;
}

.vp-step-content .col-12 .ct-textarea {
  width: 100%;
  height: 96px;
  resize: vertical;
}

.vp-step-content .ct-input {
  height: 48px;
  padding: 0 16px;
  line-height: 48px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-head);
  font-size: 14px;
  outline: 0;
  transition:
    border-color 0.25s,
    background 0.25s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.vp-step-content .ct-textarea {
  height: 96px;
  line-height: 1.6;
  padding: 12px 16px;
}

.vp-step-content .ct-input:focus,
.vp-step-content .ct-select:focus,
.vp-step-content .ct-textarea:focus {
  border-color: rgba(212, 168, 67, 0.55);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.08);
}

.vp-step-content .ct-input::placeholder,
.vp-step-content .ct-textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.vp-step-content .ct-select option {
  background: #122248;
  color: rgba(255, 255, 255, 0.85);
}

.vp-step-content .ct-field-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 0;
  white-space: nowrap;
}

.vp-step-content .ct-field-label i {
  color: var(--gold);
  font-size: 13px;
}

.vp-step-content .ct-field-label .ct-required {
  color: #ef4444;
  font-size: 14px;
}

.vp-stage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.vp-stage-pill {
  cursor: pointer;
}

.vp-stage-pill input {
  display: none;
}

.vp-stage-pill span {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  user-select: none;
}

.vp-stage-pill span:hover {
  border-color: rgba(212, 168, 67, 0.35);
  color: rgba(255, 255, 255, 0.8);
}

.vp-stage-active {
  border-color: rgba(212, 168, 67, 0.6) !important;
  background: rgba(212, 168, 67, 0.12) !important;
  color: var(--gold) !important;
}

.vp-step-header {
  margin-bottom: 28px;
}

.vp-step-content .row.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.vp-step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 767px) {
  .vp-step-content {
    padding: 0 16px;
  }

  .vp-step-content .row.g-4 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }

  .vp-step-content .col-md-6 {
    width: 100%;
  }

  .vp-stage-pills {
    gap: 8px;
  }

  .vp-stage-pill span {
    padding: 8px 14px;
    font-size: 12px;
  }

  .vp-step-nav {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .vp-next-btn,
  .vp-prev-btn {
    width: 100%;
    justify-content: center;
  }
}

.nri-hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.nri-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/banner-img.jpg);
  background-size: cover;
  background-position: center;
}

.nri-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 28, 58, 0.97) 0, rgba(11, 28, 58, 0.88) 100%);
}

.nri-pain-section::before,
.nri-world-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nri-world-dots {
  background-image: radial-gradient(circle, rgba(212, 168, 67, 0.15) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
}

.nri-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.nri-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0, transparent 70%);
  top: -100px;
  right: 80px;
}

.nri-orb-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0, transparent 70%);
  bottom: -60px;
  left: 100px;
}

.nri-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0, transparent 70%);
  top: 40%;
  right: 30%;
}

.nri-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 170px;
  padding-bottom: 90px;
  width: 100%;
}

.nri-breadcrumb,
.nri-hero-eyebrow {
  display: inline-flex;
  align-items: center;
}

.nri-breadcrumb {
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.nri-breadcrumb i {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.25);
}

.nri-breadcrumb span {
  color: var(--gold);
  font-weight: 600;
}

.nri-hero-eyebrow {
  gap: 8px;
  padding: 6px 14px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
  margin-top: 12px;
}

.nri-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}

.nri-hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.nri-gold {
  color: var(--gold);
}

.nri-hero-sub {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 490px;
  line-height: 1.78;
  margin-bottom: 24px;
}

.nri-countries-strip {
  margin-bottom: 8px;
}

.nri-countries-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 10px;
}

.nri-flags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nri-flag-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  cursor: default;
}

.nri-flag-item:hover,
.nri-flag-more {
  background: rgba(212, 168, 67, 0.1);
  border-color: rgba(212, 168, 67, 0.25);
  color: var(--gold);
}

.nri-flag-more {
  border-color: rgba(212, 168, 67, 0.2);
}

.nri-hero-visual {
  padding-top: 20px;
  padding-bottom: 20px;
}

.nri-float-tr {
  position: absolute;
  top: 5px;
  right: -10px;
  z-index: 3;
  animation: float-card 4s ease-in-out infinite;
}

.nri-float-bl {
  position: absolute;
  bottom: 5px;
  left: -10px;
  z-index: 3;
  animation: float-card 5s ease-in-out infinite 1.5s;
}

.nri-dashboard-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: float-card 5.5s ease-in-out infinite;
}

.nri-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.nri-dashboard-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.nri-online-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
}

.nri-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 1.5s infinite;
}

.nri-location-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
}

.nri-loc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.nri-loc-flag {
  font-size: 24px;
  line-height: 1;
  color: #fff;
}

.nri-loc-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.nri-loc-value {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
}

.nri-loc-connector {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.nri-loc-line {
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 168, 67, 0.2), rgba(212, 168, 67, 0.6));
}

.nri-loc-pulse {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--gold);
  animation: pulse-dot 2s infinite;
}

.nri-progress-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.nri-progress-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 4px;
}

.nri-step-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.nri-step-done {
  border-color: rgba(16, 185, 129, 0.15);
}

.nri-step-active {
  border-color: rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.05);
}

.nri-step-pending {
  opacity: 0.5;
}

.nri-step-icon {
  font-size: 14px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.nri-step-done .nri-step-icon {
  color: var(--green);
}

.nri-step-active .nri-step-icon {
  color: #f59e0b;
}

.nri-step-pending .nri-step-icon {
  color: rgba(255, 255, 255, 0.3);
}

.nri-spin {
  animation: spin 1.2s linear infinite;
}

.nri-step-text {
  flex: 1;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.nri-step-status {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  flex-shrink: 0;
}

.nri-status-green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
}

.nri-status-yellow {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.nri-status-muted {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.35);
}

.nri-dashboard-footer {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.nri-advisor-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nri-advisor-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.nri-advisor-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.nri-advisor-avail {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--green);
}

.nri-avail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s infinite;
}

.nri-pain-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.nri-pain-section::before {
  content: "";
  background: radial-gradient(ellipse at 0 50%, rgba(239, 68, 68, 0.03) 0, transparent 40%), radial-gradient(ellipse at 100% 50%, rgba(212, 168, 67, 0.03) 0, transparent 40%);
}

.nri-pain-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  height: 100%;
  transition: var(--transition);
}

.nri-pain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
  background: var(--white);
}

.nri-pain-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: rgba(11, 28, 58, 0.07) !important;
  color: var(--gold) !important;
}

.nri-pain-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.nri-pain-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 14px;
}

.nri-pain-solution {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green);
  background: rgba(16, 185, 129, 0.07);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 8px 12px;
  border-radius: 8px;
  line-height: 1.4;
}

.nri-pain-solution i {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.nri-services-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.nri-services-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.nri-svc-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.nri-svc-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateY(-3px);
}

.nri-svc-card-featured {
  background: rgba(212, 168, 67, 0.07);
  border-color: rgba(212, 168, 67, 0.25);
}

.nri-svc-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}

.nri-svc-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #fff !important;
  color: var(--gold) !important;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}

.nri-svc-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.nri-svc-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 14px;
}

.nri-svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nri-svc-list li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  padding-left: 14px;
  position: relative;
}

.nri-svc-list li::before,
.nri-svc-popular {
  position: absolute;
  font-size: 10px;
  color: var(--gold);
}

.nri-svc-list li::before {
  content: "✓";
  left: 0;
  font-weight: 900;
}

.nri-svc-popular {
  top: 14px;
  right: 14px;
  font-weight: 700;
  background: rgba(212, 168, 67, 0.12);
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid rgba(212, 168, 67, 0.2);
}

.nri-journey-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.nri-journey-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0 0 8px;
}

.nri-journey-icon-wrap {
  position: relative;
  flex-shrink: 0;
}

.nri-journey-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(11, 28, 58, 0.07);
  border: 3px solid var(--navy);
  color: var(--navy);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(11, 28, 58, 0.15);
  transition: var(--transition);
}

.bc-select option,
.nri-form-card .contact-form-select option,
.nri-journey-step:hover .nri-journey-icon {
  background: var(--navy);
  color: var(--white);
}

.nri-journey-icon-gold {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
  color: var(--gold-dark);
}

.nri-journey-step:hover .nri-journey-icon-gold {
  background: var(--gold-dark);
  color: var(--white);
}

.nri-journey-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nri-journey-line {
  width: 3px;
  height: 32px;
  background: linear-gradient(to bottom, var(--navy), rgba(212, 168, 67, 0.3));
  margin-left: 28px;
  border-radius: 2px;
}

.nri-journey-content {
  padding-top: 12px;
  flex: 1;
}

.nri-journey-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.nri-journey-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 8px;
}

.nri-journey-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(212, 168, 67, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(212, 168, 67, 0.2);
}

.nri-legal-section {
  background: var(--off-white);
  position: relative;
}

.nri-legal-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  height: 100%;
  transition: var(--transition);
}

.nri-legal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(11, 28, 58, 0.09);
}

.nri-legal-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(11, 28, 58, 0.06);
  color: var(--navy);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.nri-legal-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.nri-legal-desc {
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 14px;
}

.nri-legal-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.nri-tag-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}

.nri-tag-yellow {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.nri-tag-red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.nri-legal-cta-card {
  background: var(--navy);
  border-color: rgba(212, 168, 67, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.nri-legal-cta-icon {
  font-size: 36px;
  color: rgba(212, 168, 67, 0.3);
  margin-bottom: 12px;
}

.nri-legal-cta-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.nri-legal-cta-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.nri-countries-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.nri-countries-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.nri-country-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.nri-country-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.nri-country-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateY(-3px);
}

.nri-country-featured {
  background: rgba(212, 168, 67, 0.08);
  border-color: rgba(212, 168, 67, 0.25);
}

.nri-country-flag {
  font-size: 30px;
  margin-bottom: 8px;
  line-height: 1;
}

.nri-country-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.nri-country-count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

.nri-country-featured .nri-country-count {
  color: var(--gold);
}

.nri-form-section {
  background: linear-gradient(160deg, #0b1c3a 0, #122248 100%);
  position: relative;
  overflow: hidden;
}

.nri-form-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.nri-form-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.nri-form-card-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nri-form-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nri-form-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.nri-form-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.6;
}

.nri-form-card .contact-form-label {
  color: rgba(255, 255, 255, 0.75);
}

.nri-form-card .contact-form-input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.nri-form-card .contact-form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.nri-form-card .contact-form-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}

.nri-form-card .contact-input-icon {
  color: rgba(255, 255, 255, 0.4);
}

.nri-form-card .contact-toggle-row {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.nri-form-card .contact-toggle-label {
  color: rgba(255, 255, 255, 0.75);
}

.nri-form-card .contact-form-trust span,
.nri-form-card .contact-toggle-state {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1199px) {
  .nri-country-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 991px) {
  .nri-hero-visual {
    display: none;
  }

  .nri-hero-content {
    padding-top: 130px;
    padding-bottom: 70px;
  }

  .nri-country-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nri-journey-timeline {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .nri-hero-title {
    font-size: 36px;
    letter-spacing: -0.5px;
  }

  .nri-form-card {
    padding: 28px 20px;
  }

  .nri-form-card-header {
    flex-direction: column;
    gap: 12px;
  }

  .nri-country-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nri-flags-row {
    gap: 6px;
  }

  .nri-flag-item {
    font-size: 11px;
    padding: 4px 10px;
  }
}

@media (max-width: 575px) {
  .nri-hero-title {
    font-size: 30px;
  }

  .nri-country-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .nri-journey-step {
    gap: 14px;
  }

  .nri-journey-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

.pricing-hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.pricing-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/banner-img.jpg);
  background-size: cover;
  background-position: center;
}

.pricing-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0f1f41ee;
}

.pricing-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.035) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.pricing-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.pricing-orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.11) 0, transparent 70%);
  top: -100px;
  right: 60px;
}

.pricing-orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0, transparent 70%);
  bottom: -60px;
  left: 100px;
}

.pricing-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 190px;
  padding-bottom: 80px;
  width: 100%;
}

.pricing-hero-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.pricing-hero-accent {
  color: var(--gold);
}

.pricing-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 500px;
  line-height: 1.78;
  margin-bottom: 32px;
}

.pricing-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.pricing-card-footer-tag i,
.trust-badge-item i {
  color: var(--gold);
  font-size: 13px;
}

.pricing-hero-visual-col {
  padding-top: 30px;
  padding-bottom: 30px;
}

.pricing-hero-card {
  background: rgba(14, 31, 65, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: float-card 5s ease-in-out infinite;
}

.pricing-card-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pricing-card-header-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.pricing-roi-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.18);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 20px;
}

.pricing-roi-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(212, 168, 67, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
}

.pricing-roi-label {
  font-size: 10px;
  color: rgba(212, 168, 67, 0.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.pricing-roi-value {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  font-style: italic;
}

.pricing-value-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.pricing-value-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.pricing-value-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.pvi-gold {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
}

.pvi-green {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.pvi-blue {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
}

.pvi-red {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.pricing-value-text {
  flex: 1;
  line-height: 1.3;
}

.pricing-value-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.pricing-value-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 2px;
}

.pricing-value-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

.pvb-green {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.pvb-gold {
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
}

.pricing-card-footer-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
  font-style: italic;
}

.pricing-value-section {
  background: var(--off-white);
}

.risk-value-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  height: 100%;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.risk-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--electric));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.risk-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(11, 28, 58, 0.1);
}

.blog-cat-card:hover::after,
.pt-card:hover::after,
.risk-value-card:hover::before,
.srv-audience-card:hover::after,
.srv-main-card:hover::before {
  transform: scaleX(1);
}

.rvcard-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
  background: #fff !important;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  color: var(--gold) !important;
}

.rvcard-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.rvcard-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

.pricing-packages-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.pricing-packages-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0 0, rgba(11, 28, 58, 0.04) 0, transparent 50%), radial-gradient(ellipse at 100% 100%, rgba(212, 168, 67, 0.05) 0, transparent 50%);
  pointer-events: none;
}

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 100px;
  padding: 5px;
  max-width: 340px;
  margin: 0 auto 40px;
}

.pricing-toggle-btn {
  flex: 1;
  padding: 9px 20px;
  border: 0;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-body);
  background: 0 0;
  cursor: pointer;
  transition: var(--transition);
}

.pricing-toggle-btn.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(11, 28, 58, 0.25);
}

.pkg-card {
  background: var(--off-white);
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-xl);
  padding: 30px 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.pkg-card-featured {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(212, 168, 67, 0.15);
}

.pkg-card-dark {
  background: var(--navy);
  border-color: rgba(212, 168, 67, 0.2);
}

.pkg-popular-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 10px 10px;
}

.pkg-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  margin-top: 8px;
}

.pkg-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.pkg-card-dark .pkg-name {
  color: var(--white);
}

.pkg-tagline {
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.5;
}

.pkg-card-dark .pkg-tagline {
  color: rgba(255, 255, 255, 0.5);
}

.pkg-price-wrap,
.pkg-tagline {
  margin-bottom: 20px;
}

.pkg-price {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.pkg-price-gold {
  color: var(--gold-dark);
}

.pkg-price-white {
  color: var(--white);
}

.pkg-price sup {
  font-size: 18px;
  vertical-align: super;
  font-weight: 700;
}

.pkg-price span,
.pkg-turnaround {
  font-weight: 600;
  color: var(--text-body);
}

.pkg-price span {
  font-size: 13px;
  margin-left: 3px;
}

.pkg-card-dark .pkg-price span {
  color: rgba(255, 255, 255, 0.4);
}

.pkg-turnaround {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  margin-bottom: 18px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 8px;
}

.pkg-card-dark .pkg-turnaround {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
}

.pkg-turnaround i {
  color: var(--gold);
}

.pkg-features {
  list-style: none;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 24px;
}

.pkg-cta,
.pkg-features li {
  display: flex;
  align-items: center;
}

.pkg-features li {
  gap: 9px;
  font-size: 13px;
  color: var(--text-body);
}

.pkg-features li i {
  font-size: 15px;
  color: var(--green);
  flex-shrink: 0;
}

.pkg-features-light li {
  color: rgba(255, 255, 255, 0.7);
}

.pkg-features-light li i {
  color: var(--gold);
}

.pkg-cta {
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.pkg-cta-outline {
  background: 0 0;
  border: 2px solid rgba(11, 28, 58, 0.2);
  color: var(--navy);
}

.pkg-cta-outline:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.pkg-cta-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border: 0;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(212, 168, 67, 0.35);
  width: 100%;
  justify-content: center;
}

.pkg-cta-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(212, 168, 67, 0.5);
  color: var(--white);
}

.pkg-cta-dark-outline {
  background: 0 0;
  border: 1.5px solid rgba(212, 168, 67, 0.3);
  color: var(--gold);
}

.pkg-cta-dark-outline:hover {
  background: rgba(212, 168, 67, 0.1);
  border-color: var(--gold);
}

.comparison-section {
  background: var(--off-white);
}

.comp-wrap {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.comp-header {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.comp-table thead tr {
  background: #f0f4fa;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.comp-table thead th:first-child {
  text-align: left;
}

.comp-th-featured {
  color: var(--gold-dark) !important;
}

.comp-table tbody tr,
.rcp-data-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.2s;
}

.comp-table tbody td {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-body);
  text-align: center;
}

.comp-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
}

.pkg-yes {
  color: var(--green);
  font-size: 16px;
}

.pkg-no {
  color: #cbd5e1;
  font-size: 16px;
}

.express-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.express-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}

.express-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  height: 100%;
  transition: var(--transition);
  text-align: center;
}

.express-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 168, 67, 0.3);
  transform: translateY(-4px);
}

.express-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
  background: #fff !important;
  color: var(--gold) !important;
}

.express-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.express-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin-bottom: 16px;
}

.express-tag {
  display: inline-block;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.et-gold {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
}

.et-red {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.et-blue {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
}

.roi-section {
  background: var(--off-white);
}

.roi-card,
.roi-example {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.roi-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.roi-example {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--off-white);
  border-radius: 14px;
  transition: var(--transition);
}

.roi-example:hover {
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.roi-example-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.roi-ex-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.rei-navy {
  background: rgba(11, 28, 58, 0.07);
  color: var(--navy);
}

.rei-gold {
  background: rgba(212, 168, 67, 0.1);
  color: var(--gold-dark);
}

.rei-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}

.roi-ex-cost {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 3px;
  font-family: var(--font-head);
}

.roi-ex-label {
  font-size: 12px;
  color: var(--text-body);
}

.roi-arrow-icon {
  font-size: 22px;
  color: rgba(0, 0, 0, 0.15);
}

.roi-ex-benefit {
  text-align: right;
}

.roi-ex-benefit-val {
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 2px;
}

.roi-ex-benefit-sub,
.roi-key-msg {
  font-size: 11.5px;
  color: var(--text-body);
}

.roi-key-msg {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(11, 28, 58, 0.04);
  border: 1px solid rgba(11, 28, 58, 0.1);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.7;
}

.roi-key-msg i {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-trust-section {
  background: var(--white);
}

.pt-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  height: 100%;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pt-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.pt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(11, 28, 58, 0.08);
}

.pt-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.pt-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.pt-desc,
.srv-includes-list li {
  font-size: 13px;
  color: var(--text-body);
}

.pt-desc {
  line-height: 1.6;
}

.faq-section {
  background: var(--off-white);
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--gold);
}

.faq-icon,
.faq-question {
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.faq-question {
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  gap: 16px;
  user-select: none;
}

.faq-item.open .faq-question,
.faq-question:hover,
.footer-contact-item a:hover,
.footer-contact-item i,
.footer-legal a:hover,
.srv-breadcrumb a:hover {
  color: var(--gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(11, 28, 58, 0.07);
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 24px 20px;
}

.final-cta-section {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=1600&q=80) center/cover no-repeat;
  opacity: 0.05;
}

.final-cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.final-cta-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.final-cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.dl-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 70px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-about {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 270px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-links li a,
.social-btn {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  justify-content: center;
  font-size: 15px;
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.footer-links li a {
  font-size: 13.5px;
  gap: 6px;
}

.footer-links li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  line-height: 1.5;
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin: 40px 0 0;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy,
.footer-legal a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-copy {
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  transition: var(--transition);
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #1ebe58;
  transform: translateY(-3px);
  color: var(--white);
}

.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  gap: 10px;
}

@media (max-width: 1199px) {
  .container {
    max-width: 95% !important;
  }
}

@media (max-width: 991px) {

  .nav-cta,
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .pricing-hero-visual-col {
    display: none;
  }

  .pricing-hero-content {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .section-pad {
    padding: 60px 0;
  }

  .roi-card {
    padding: 30px 24px;
  }
}

@media (max-width: 767px) {
  .pricing-hero-title {
    font-size: 34px;
  }

  .final-cta-btns,
  .pricing-hero-cta {
    flex-direction: column;
  }

  .pricing-hero-cta .btn-outline-white,
  .pricing-hero-cta .btn-primary-gold {
    width: 100%;
    justify-content: center;
  }

  .final-cta-btns {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }

  .roi-example {
    flex-direction: column;
    gap: 12px;
  }

  .roi-ex-benefit,
  .roi-example {
    text-align: center;
  }

  .roi-arrow-icon {
    display: none;
  }
}

@media (max-width: 575px) {
  .section-pad {
    padding: 50px 0;
  }

  .section-pad-lg {
    padding: 60px 0;
  }

  .pricing-toggle-wrap {
    max-width: 100%;
  }

  .pkg-card {
    padding: 22px 18px;
  }
}

.home-img {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.srv-hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.srv-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/banner-img.jpg);
  background-size: cover;
  background-position: center;
}

.srv-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0f1f41ee;
}

.srv-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.srv-orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0, transparent 70%);
  top: -100px;
  right: 80px;
}

.srv-orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0, transparent 70%);
  bottom: -60px;
  left: 100px;
}

.srv-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 60px;
  width: 100%;
}

.srv-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
}

.srv-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.srv-breadcrumb i {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.25);
}

.bc-breadcrumb span,
.srv-breadcrumb span {
  color: var(--gold);
  font-weight: 600;
}

.srv-hero-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.srv-hero-accent {
  color: var(--gold);
}

.srv-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 500px;
  line-height: 1.78;
  margin-bottom: 28px;
}

.srv-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.srv-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.srv-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.srv-trust-pill i {
  color: var(--gold);
  font-size: 13px;
}

.srv-hero-visual {
  padding-top: 20px;
  padding-bottom: 20px;
}

.srv-hero-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  animation: float-card 5s ease-in-out infinite;
}

.srv-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.srv-card-title-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.srv-card-footer i,
.srv-card-title-text i {
  color: var(--gold);
}

.srv-service-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.srv-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  transition: all 0.3s;
  cursor: default;
}

.srv-service-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 168, 67, 0.2);
}

.srv-svc-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.srv-svc-name {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}

.srv-svc-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
}

.srv-badge-gold {
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
}

.srv-badge-green {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.srv-badge-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.srv-badge-purple {
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
}

.srv-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

.srv-grid-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.srv-grid-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 5% 50%, rgba(212, 168, 67, 0.05) 0, transparent 40%), radial-gradient(ellipse at 95% 50%, rgba(11, 28, 58, 0.04) 0, transparent 40%);
  pointer-events: none;
}

.srv-main-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.srv-main-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(11, 28, 58, 0.12);
}

.srv-main-card-dark {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: rgba(212, 168, 67, 0.15);
}

.srv-main-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.srv-accent-navy::before {
  background: linear-gradient(90deg, var(--navy), var(--electric));
}

.srv-accent-gold::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.srv-accent-green::before {
  background: linear-gradient(90deg, #059669, #10b981);
}

.srv-accent-blue::before {
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.srv-accent-purple::before {
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.srv-accent-orange::before {
  background: linear-gradient(90deg, #d97706, #f59e0b);
}

.srv-accent-red::before {
  background: linear-gradient(90deg, #b91c1c, #ef4444);
}

.srv-accent-teal::before {
  background: linear-gradient(90deg, #0d9488, #2dd4bf);
}

.srv-card-body {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.srv-card-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: var(--transition);
  background: #fff !important;
  color: var(--gold) !important;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
}

.srv-ic-navy {
  background: rgba(11, 28, 58, 0.08);
  color: var(--navy);
}

.srv-ic-gold {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold-dark);
}

.srv-ic-green {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.srv-ic-blue {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}

.srv-ic-purple {
  background: rgba(139, 92, 246, 0.12);
  color: #7c3aed;
}

.srv-ic-orange {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

.srv-ic-red {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.srv-ic-teal {
  background: rgba(20, 184, 166, 0.12);
  color: #0d9488;
}

.srv-main-card-dark .srv-card-icon-wrap {
  background: #fff;
  color: var(--gold) !important;
}

.srv-card-svc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.srv-card-svc-label::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.srv-main-card-dark .srv-card-svc-label,
.srv-main-card-dark .srv-includes-list li i {
  color: var(--gold);
}

.srv-card-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.srv-main-card-dark .srv-card-name {
  color: var(--white);
}

.srv-card-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 20px;
}

.srv-main-card-dark .srv-card-desc {
  color: rgba(255, 255, 255, 0.55);
}

.srv-includes-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.srv-includes-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
}

.srv-includes-list li i {
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
}

.srv-highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.srv-tag-green {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.srv-tag-gold {
  background: rgba(212, 168, 67, 0.1);
  color: var(--gold-dark);
  border: 1px solid rgba(212, 168, 67, 0.2);
}

.srv-tag-blue {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.srv-tag-purple {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.srv-tag-teal {
  background: rgba(20, 184, 166, 0.1);
  color: #0d9488;
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.srv-tag-orange {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.srv-card-cta-row {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.srv-main-card-dark .srv-card-cta-row {
  border-color: rgba(255, 255, 255, 0.07);
}

.srv-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}

.srv-card-link:hover {
  color: var(--gold);
  gap: 11px;
}

.srv-concierge-ideal strong,
.srv-main-card-dark .srv-card-link,
.srv-turnaround i {
  color: var(--gold);
}

.srv-main-card-dark .srv-card-link:hover {
  color: var(--gold-light);
}

.srv-turnaround {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.srv-main-card-dark .srv-turnaround {
  color: rgba(255, 255, 255, 0.35);
}

.srv-process-section {
  background: linear-gradient(150deg, var(--navy) 0%, #0e2347 60%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.srv-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.srv-process-section::after,
.srv-why-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.srv-process-section::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0, transparent 70%);
  top: -100px;
  right: -100px;
}

.srv-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.srv-process-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.srv-process-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateY(-4px);
}

.srv-process-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(212, 168, 67, 0.4);
}

.srv-process-icon {
  font-size: 32px;
  color: var(--gold);
  margin: 10px 0 14px;
  display: block;
}

.srv-process-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.srv-process-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

.srv-why-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.srv-why-section::after {
  bottom: 0;
  right: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.05) 0, transparent 70%);
}

.srv-audience-section {
  background: linear-gradient(160deg, #f0f4fa 0, #e8eef8 100%);
}

.srv-audience-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.srv-audience-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.srv-audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(11, 28, 58, 0.1);
}

.srv-aud-icon-wrap {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(11, 28, 58, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--navy);
  margin: 0 auto 16px;
  transition: var(--transition);
  border: 2px solid rgba(11, 28, 58, 0.08);
}

.srv-audience-card:hover .srv-aud-icon-wrap {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.srv-aud-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.srv-aud-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 12px;
}

.srv-aud-feature {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.srv-concierge-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.srv-concierge-banner {
  background: var(--navy);
  border-radius: 24px;
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}

.srv-concierge-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.srv-concierge-banner::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0, transparent 70%);
  pointer-events: none;
}

.srv-concierge-content {
  position: relative;
  z-index: 1;
}

.srv-concierge-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.srv-concierge-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 500px;
}

.srv-concierge-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding: 0;
}

.bc-nri-features li,
.srv-concierge-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  list-style: none;
}

.srv-concierge-list li i {
  color: var(--green);
  font-size: 16px;
}

.srv-concierge-ideal {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.srv-concierge-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  height: 100%;
}

.srv-concierge-mini-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}

.srv-concierge-mini-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateX(4px);
}

.srv-cmini-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: #fff !important;
  color: var(--gold) !important;
}

.srv-cmini-title {
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2px;
}

.srv-cmini-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.38);
}

@media (max-width: 991px) {
  .srv-hero-visual {
    display: none;
  }

  .srv-hero-content {
    padding-top: 130px;
    padding-bottom: 70px;
  }

  .srv-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .srv-concierge-banner {
    padding: 36px 28px;
  }
}

@media (max-width: 767px) {
  .srv-hero-title {
    font-size: 34px;
    letter-spacing: -0.5px;
  }

  .srv-hero-cta {
    flex-direction: column;
  }

  .srv-hero-cta .btn-outline-white,
  .srv-hero-cta .btn-primary-gold {
    width: 100%;
    justify-content: center;
  }

  .srv-process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .srv-concierge-banner {
    padding: 28px 20px;
  }
}

@media (max-width: 575px) {
  .srv-process-grid {
    grid-template-columns: 1fr;
  }

  .about-trust-section .col-6,
  .audience-section .col-6.col-md-4.col-lg-4 {
    width: 100% !important;
  }

  .srv-hero-title {
    font-size: 28px;
  }

  .srv-card-body {
    padding: 24px 20px;
  }
}

.blog-cat-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  height: 100%;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.blog-cat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.blog-cat-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(11, 28, 58, 0.18);
}

.blog-cat-card:hover .blog-cat-icon {
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
}

.blog-cat-card:hover .blog-cat-name {
  color: var(--white);
}

.blog-cat-card:hover .blog-cat-count {
  color: rgba(255, 255, 255, 0.45);
}

.blog-cat-icon,
.blog-cat-name {
  color: var(--navy);
  transition: var(--transition);
}

.blog-cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(11, 28, 58, 0.07);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.blog-cat-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
}

.blog-cat-count {
  font-size: 12px;
  color: var(--text-muted);
  transition: var(--transition);
}

.toc-list li:last-child {
  border-bottom: none;
}

.bc-hero,
.recent-post-thumb {
  display: flex;
  align-items: center;
}

.recent-post-thumb {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  justify-content: center;
  font-size: 20px;
  color: rgba(212, 168, 67, 0.4);
}

.bc-breadcrumb a:hover {
  color: var(--gold);
}

.bc-hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  overflow: hidden;
}

.bc-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(assets/img/banner-img.jpg);
  background-size: cover;
  background-position: center;
}

.bc-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 28, 58, 0.97) 0, rgba(14, 32, 65, 0.94) 100%);
}

.bc-orb,
.bc-types-section::before {
  position: absolute;
  pointer-events: none;
}

.bc-orb {
  border-radius: 50%;
  filter: blur(80px);
}

.bc-orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0, transparent 70%);
  top: -120px;
  right: 60px;
}

.bc-orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0, transparent 70%);
  bottom: -60px;
  left: 80px;
}

.bc-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 60px;
  width: 100%;
}

.bc-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.bc-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

.bc-breadcrumb i {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.25);
}

.bc-hero-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.bc-hero-accent {
  color: var(--gold);
}

.bc-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 500px;
  line-height: 1.78;
  margin-bottom: 28px;
}

.bc-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.bc-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bc-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.bc-trust-pill i {
  font-size: 13px;
}

.bc-hero-visual {
  padding-top: 20px;
  padding-bottom: 20px;
}

.bc-hero-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  animation: float-card 5s ease-in-out infinite;
}

.bc-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.bc-card-header-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
}

.bc-card-footer-note i,
.bc-card-header-label i,
.bc-trust-pill i {
  color: var(--gold);
}

.bc-advisor-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(212, 168, 67, 0.07);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.bc-advisor-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.bc-advisor-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
}

.bc-advisor-role {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}

.bc-avail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
}

.bc-avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse-dot 2s infinite;
}

.bc-quick-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 16px;
}

.bc-qs-item {
  text-align: center;
}

.bc-qs-icon {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 4px;
}

.bc-qs-val {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 3px;
}

.bc-qs-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.bc-qs-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
}

.bc-type-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.bc-chip-icon,
.bc-type-chip {
  display: flex;
  align-items: center;
}

.bc-type-chip {
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  transition: all 0.3s;
}

.bc-type-chip:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 168, 67, 0.2);
}

.bc-chip-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.bc-chip-name {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  flex: 1;
}

.bc-chip-arrow {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
}

.bc-card-footer-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.32);
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-style: italic;
}

.bc-types-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.bc-types-section::before {
  content: "";
  inset: 0;
  background: radial-gradient(ellipse at 5% 50%, rgba(212, 168, 67, 0.05) 0, transparent 40%), radial-gradient(ellipse at 95% 50%, rgba(11, 28, 58, 0.04) 0, transparent 40%);
}

.bc-tc-icon,
.bc-type-card {
  display: flex;
  transition: var(--transition);
}

.bc-type-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-xl);
  padding: 30px 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  cursor: default;
}

.bc-type-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.bc-tc-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  background: #fff !important;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  color: var(--gold) !important;
}

.bc-ic-navy {
  background: rgba(11, 28, 58, 0.08);
  color: var(--navy);
}

.bc-ic-gold {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold-dark);
}

.bc-ic-green {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.bc-ic-blue {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
}

.bc-ic-purple {
  background: rgba(139, 92, 246, 0.12);
  color: #7c3aed;
}

.bc-ic-teal {
  background: rgba(20, 184, 166, 0.12);
  color: #0d9488;
}

.bc-tc-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bc-tc-number::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.bc-tc-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.bc-tc-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.72;
  margin-bottom: 16px;
  flex: 1;
}

.bc-tc-ideal {
  font-size: 12px;
  color: var(--text-body);
  margin-bottom: 18px;
  padding: 8px 12px;
  background: rgba(11, 28, 58, 0.04);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}

.bc-tc-cta,
.bc-tc-ideal strong {
  color: var(--navy);
  font-weight: 700;
}

.bc-tc-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  transition: var(--transition);
  margin-top: auto;
}

.bc-tc-cta:hover {
  color: var(--gold);
  gap: 11px;
}

.bc-form-section {
  background: linear-gradient(150deg, var(--navy) 0%, #0e2347 60%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.bc-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.bc-form-section::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.bc-form-wrap {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}

.bc-form-top {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bc-form-top-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bc-form-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.bc-form-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.6;
}

.bc-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.bc-req {
  color: var(--gold);
}

.bc-input-wrap {
  position: relative;
}

.bc-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  z-index: 1;
}

.bc-input-icon-top {
  top: 16px;
  transform: none;
}

.bc-input {
  width: 100%;
  padding: 13px 16px 13px 42px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  transition: var(--transition);
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
}

.bc-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.12);
}

.bc-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.bc-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.bc-textarea {
  resize: none;
  min-height: 110px;
  padding-top: 14px;
}

.bc-mode-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bc-mode-opt {
  position: relative;
  cursor: pointer;
}

.bc-mode-opt input,
.bc-prop-opt input,
.bc-time-slot input,
.bc-toggle-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.bc-mode-opt span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  cursor: pointer;
}

.bc-mode-opt span i {
  font-size: 14px;
}

.bc-mode-opt input:checked+span {
  background: rgba(212, 168, 67, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.bc-toggle-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.bc-toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  flex: 1;
}

.bc-toggle-switch {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.bc-toggle-track {
  display: block;
  width: 46px;
  height: 26px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  transition: background 0.3s;
  position: relative;
}

.bc-toggle-switch input:checked+.bc-toggle-track {
  background: var(--gold);
}

.bc-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: left 0.3s;
}

.bc-toggle-state {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  width: 22px;
}

.bc-prop-opts {
  display: flex;
  gap: 10px;
}

.bc-prop-opt {
  position: relative;
  cursor: pointer;
  flex: 1;
}

.bc-prop-opt span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.bc-prop-opt input:checked+span {
  background: rgba(11, 28, 58, 0.4);
  border-color: var(--gold);
  color: var(--gold);
}

.bc-time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bc-time-slot {
  position: relative;
  cursor: pointer;
}

.bc-time-slot span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.bc-time-slot input:checked+span {
  background: rgba(212, 168, 67, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.bc-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 18px 28px;
  font-size: 15px;
  margin-bottom: 16px;
}

.bc-form-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.bc-form-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

.bc-form-trust span i {
  color: var(--green);
  font-size: 13px;
}

.bc-process-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.bc-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 50%, rgba(212, 168, 67, 0.05) 0, transparent 45%);
  pointer-events: none;
}

.bc-process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
}

.bc-pt-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}

.bc-pt-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.bc-pt-circle,
.bc-pt-num {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-pt-circle {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 2.5px solid var(--navy);
  font-size: 18px;
  color: var(--navy);
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(11, 28, 58, 0.12);
  z-index: 1;
}

.bc-pt-item:hover .bc-pt-circle {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--gold);
  transform: scale(1.08);
}

.bc-pt-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
}

.bc-pt-line {
  width: 2px;
  flex-grow: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, var(--navy), rgba(11, 28, 58, 0.15));
  margin: 0 23px;
}

.bc-pt-no-line {
  background: 0 0;
}

.bc-pt-content {
  padding: 6px 0 40px;
  flex: 1;
}

.bc-pt-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.bc-pt-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.7;
}

.bc-trust-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.bc-trust-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.05) 0, transparent 70%);
  pointer-events: none;
}

.bc-trust-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  height: 100%;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bc-trust-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.bc-trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(11, 28, 58, 0.1);
  background: var(--white);
}

.bc-trust-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
  transition: var(--transition);
  background: rgba(11, 28, 58, 0.08) !important;
  color: var(--gold) !important;
}

.bc-trust-card-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.bc-trust-card-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

.bc-topics-section {
  background: linear-gradient(160deg, var(--navy) 0%, #0e2347 60%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.bc-topics-section::before {
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
}

.bc-topic-icon,
.bc-topic-item {
  display: flex;
  align-items: center;
}

.bc-topic-item {
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  height: 100%;
  transition: var(--transition);
}

.bc-topic-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateX(4px);
}

.bc-topic-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: #fff !important;
  color: var(--gold) !important;
}

.bc-topic-text {
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

.bc-nri-section {
  background: var(--off-white);
}

.bc-nri-banner {
  background: var(--navy);
  border-radius: 24px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}

.bc-nri-banner::after,
.bc-nri-banner::before,
.bc-topics-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.bc-nri-banner::before {
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.bc-nri-banner::after {
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.07) 0, transparent 70%);
}

.bc-nri-content {
  position: relative;
  z-index: 1;
}

.bc-nri-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.bc-nri-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 480px;
}

.bc-nri-features,
.bc-nri-visual {
  display: flex;
  flex-direction: column;
}

.bc-nri-features {
  gap: 10px;
  margin-bottom: 28px;
}

.bc-nri-features li i {
  color: var(--green);
  font-size: 15px;
}

.bc-nri-visual {
  position: relative;
  z-index: 1;
  gap: 12px;
  justify-content: center;
}

.bc-nri-mini {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.bc-nri-mini:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(212, 168, 67, 0.25);
  transform: translateX(4px);
}

.bc-nri-mini-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  background: #fff !important;
  color: var(--gold) !important;
}

.bc-nri-mini-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2px;
}

.bc-nri-mini-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
}

.bc-sidebar-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 26px 22px;
  position: relative;
  z-index: 1;
  height: 100%;
}

.bc-sidebar-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bc-sidebar-title i,
.bc-why-item i {
  color: var(--gold);
  font-size: 16px;
}

.bc-why-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bc-why-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bc-why-item i {
  flex-shrink: 0;
  margin-top: 1px;
}

.bc-why-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

.bc-why-text strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

.bc-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.bc-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  transition: var(--transition);
}

.bc-contact-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 168, 67, 0.2);
}

.bc-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.bc-contact-val {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
  .bc-hero-visual {
    display: none;
  }

  .bc-hero-inner {
    padding-top: 130px;
    padding-bottom: 70px;
  }

  .bc-form-wrap {
    padding: 30px 24px;
  }

  .bc-nri-banner {
    padding: 32px 24px;
  }
}

@media (max-width: 767px) {
  .bc-hero-title {
    font-size: 34px;
    letter-spacing: -0.5px;
  }

  .bc-hero-cta {
    flex-direction: column;
  }

  .bc-hero-cta .btn-outline-white,
  .bc-hero-cta .btn-primary-gold {
    width: 100%;
    justify-content: center;
  }

  .bc-mode-opts {
    gap: 6px;
  }

  .bc-mode-opt span {
    padding: 8px 12px;
    font-size: 12px;
  }

  .bc-form-wrap {
    padding: 22px 16px;
  }

  .bc-bc-submit-btn {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .bc-hero-title {
    font-size: 28px;
  }

  .bc-prop-opts {
    flex-direction: column;
  }

  .bc-time-slots {
    gap: 6px;
  }

  .bc-time-slot span {
    font-size: 12px;
    padding: 7px 11px;
  }
}

.faq-hero-section {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding: 170px 0 90px;
}

.faq-hero-bg::after {
  background-color: #0f1f41e6;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
}

.faq-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/banner-img.jpg);
  background-size: cover;
  background-position: center;
}

.faq-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.faq-orb-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0, transparent 70%);
  top: -120px;
  right: -80px;
}

.faq-orb-2 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0, transparent 70%);
  bottom: -60px;
  left: 5%;
}

.faq-orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0, transparent 70%);
  top: 40%;
  left: 42%;
}

.faq-hero-content {
  position: relative;
  z-index: 1;
}

.faq-hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.faq-hero-accent {
  color: var(--gold);
}

.faq-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 28px;
}

.faq-hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.faq-hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.faq-hero-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
}

.faq-hero-card-title i {
  color: var(--gold);
  font-size: 15px;
}

.faq-hero-stats-grid {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 18px 0;
  margin-bottom: 24px;
}

.faq-hero-stat {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.faq-hero-stat-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 5px;
}

.faq-hero-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.faq-hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.faq-hero-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.faq-topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  cursor: default;
}

.faq-topic-pill i {
  color: var(--gold);
  font-size: 12px;
}

.faq-topic-pill:hover {
  background: rgba(212, 168, 67, 0.1);
  border-color: rgba(212, 168, 67, 0.3);
}

.faq-hero-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.faq-cat-btn.active i,
.faq-hero-card-footer i {
  color: var(--gold);
}

.faq-card-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  font-weight: 600;
  font-size: 12px;
  transition: var(--transition);
  margin-left: auto;
}

.faq-card-wa-link:hover,
.faq-topic-pill:hover {
  color: var(--gold-light);
}

.faq-nav-section {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 70px;
  z-index: 90;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.faq-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0;
}

.faq-search-wrap {
  position: relative;
  max-width: 480px;
}

.faq-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-body);
  font-size: 16px;
  pointer-events: none;
}

.faq-search-input {
  width: 100%;
  padding: 11px 42px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: 0;
}

.faq-search-input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.12);
}

.faq-search-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.faq-search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-body);
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: var(--transition);
}

.faq-search-clear:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--text-dark);
}

.faq-cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.faq-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: 0 0;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.faq-cat-btn i {
  font-size: 14px;
}

.faq-cat-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(11, 28, 58, 0.04);
}

.faq-cat-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.faq-main-section {
  background: var(--off-white);
  overflow: hidden;
}

.faq-group {
  margin-bottom: 40px;
}

.faq-group-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.faq-group-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--white);
}

.faq-group-icon-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
}

.faq-group-icon-blue {
  background: linear-gradient(135deg, var(--electric) 0%, #2563eb 100%);
  color: var(--white);
}

.faq-group-icon-green {
  background: linear-gradient(135deg, var(--green) 0%, #059669 100%);
  color: var(--white);
}

.faq-group-icon-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.faq-group-icon-amber {
  background: linear-gradient(135deg, #f59e0b 0, #d97706 100%);
  color: var(--white);
}

.faq-group-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.faq-group-count {
  font-size: 12px;
  color: var(--text-body);
  font-weight: 500;
}

.faq-main-section .faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 32px;
}

.faq-no-results-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(11, 28, 58, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--text-body);
  margin-bottom: 16px;
}

.faq-no-results h5 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.faq-no-results p {
  font-size: 14px;
  color: var(--text-body);
}

.faq-no-results a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
}

.faq-sidebar {
  position: sticky;
  top: 180px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-sidebar-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}

.faq-sidebar-card:hover {
  box-shadow: var(--shadow-sm);
}

.faq-sidebar-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-sidebar-title i {
  color: var(--gold);
  font-size: 15px;
}

.faq-sidebar-cta-card {
  background: var(--navy);
  border-color: transparent;
  text-align: center;
}

.faq-sidebar-cta-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(212, 168, 67, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  margin: 0 auto 14px;
}

.faq-sidebar-cta-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.faq-sidebar-cta-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 20px;
}

.faq-sidebar-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 12px;
  transition: var(--transition);
}

.faq-sidebar-cta-link:hover,
a.faq-contact-val:hover {
  color: var(--gold);
}

.faq-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-contact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.faq-ci-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}

.faq-ci-blue {
  background: rgba(59, 130, 246, 0.1);
  color: var(--electric);
}

.faq-ci-gold {
  background: rgba(212, 168, 67, 0.1);
  color: var(--gold);
}

.faq-contact-label {
  font-size: 11px;
  color: var(--text-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 2px;
}

.faq-contact-val {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}

.faq-quick-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-ql-icon,
.faq-quick-link {
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.faq-quick-link {
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
}

.faq-quick-link:hover {
  background: var(--off-white);
  border-color: rgba(0, 0, 0, 0.06);
}

.faq-ql-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(11, 28, 58, 0.06);
  justify-content: center;
  font-size: 15px;
  color: var(--navy);
  flex-shrink: 0;
}

.faq-quick-link:hover .faq-ql-icon {
  background: var(--navy);
  color: var(--gold);
}

.faq-ql-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.faq-ql-arrow,
.faq-ql-desc {
  font-size: 11.5px;
  color: var(--text-body);
}

.faq-ql-arrow {
  margin-left: auto;
  font-size: 17px;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-quick-link:hover .faq-ql-arrow {
  color: var(--gold);
  transform: translateX(3px);
}

.faq-trust-card {
  background: rgba(11, 28, 58, 0.03);
  border-color: rgba(11, 28, 58, 0.07);
}

.faq-trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-trust-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-trust-row i {
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-mid-cta-section {
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-mid-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.faq-mid-cta-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(212, 168, 67, 0.12) 0, transparent 60%);
  pointer-events: none;
}

.faq-mid-cta-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 240px;
}

.faq-mid-cta-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(212, 168, 67, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-mid-cta-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.faq-mid-cta-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.faq-mid-cta-right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.faq-mid-cta-right .btn-outline-navy {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.25);
}

.faq-mid-cta-right .btn-outline-navy:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .faq-hero-section {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .faq-hero-card {
    margin-top: 20px;
  }

  .faq-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .faq-sidebar-card {
    flex: 1 1 300px;
  }

  .faq-nav-section {
    top: 60px;
  }
}

@media (max-width: 767.98px) {
  .faq-hero-title {
    font-size: clamp(30px, 8vw, 42px);
  }

  .faq-hero-stats-grid {
    gap: 0;
  }

  .faq-hero-stat-num {
    font-size: 20px;
  }

  .faq-cat-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .faq-cat-tabs::-webkit-scrollbar {
    display: none;
  }

  .faq-cat-btn {
    flex-shrink: 0;
  }

  .faq-mid-cta-wrap {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-mid-cta-right {
    width: 100%;
  }

  .faq-mid-cta-right .btn-outline-navy,
  .faq-mid-cta-right .btn-primary-gold {
    flex: 1;
    justify-content: center;
  }

  .faq-sidebar {
    flex-direction: column;
  }

  .faq-sidebar-card {
    flex: none;
  }

  .faq-group-header {
    gap: 10px;
  }

  .faq-nav-section {
    position: static;
  }

  .faq-hero-orb {
    display: none;
  }
}

@media (max-width: 480px) {
  .faq-hero-topics {
    gap: 6px;
  }

  .faq-topic-pill {
    font-size: 10.5px;
    padding: 4px 10px;
  }

  .faq-hero-stat-label {
    font-size: 10px;
  }
}

.pir-hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 130px;
  background-image: url(../img/banner-img.jpg);
  background-size: cover;
  background-position: center;
}

.pir-hero-section::before {
  background-color: #0f1f41e6;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
}

.pir-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 12px;
}

.pir-hero-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
}

.report-mockup {
  background: rgba(14, 28, 58, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 1;
  animation: float-card 5s ease-in-out infinite;
}

.report-mockup-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.report-main-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}

.report-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
}

.report-badge {
  flex-shrink: 0;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--gold);
}

.risk-score-display {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.risk-circle {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.prs-dash-ring-wrap svg,
.prs-score-ring svg,
.risk-circle svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.risk-circle-bg {
  stroke: rgba(255, 255, 255, 0.07);
}

.risk-circle-fill {
  stroke: var(--gold);
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(212, 168, 67, 0.55));
}

.risk-circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1;
}

.risk-denom {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
}

.risk-label-block {
  flex: 1;
}

.risk-level {
  font-size: 13px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 6px;
}

.risk-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.report-params {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.report-param-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
}

.param-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.param-label i {
  font-size: 13px;
  color: var(--gold);
  opacity: 0.75;
}

.param-status {
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

.status-ok {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
}

.status-warn {
  background: rgba(245, 158, 11, 0.15);
  color: var(--yellow);
}

.status-bad {
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
}

.report-mockup-footer {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.report-mockup-footer i {
  color: var(--gold);
  opacity: 0.6;
}

.pir-contents-section {
  background: var(--off-white);
  position: relative;
}

.pir-contents-section .section-title-white {
  color: var(--navy);
}

.pir-contents-section .section-subtitle-white,
.report-includes li {
  color: var(--text-body);
}

.report-card,
.report-card-icon {
  display: flex;
  transition: var(--transition);
}

.report-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.report-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: var(--transition);
}

.report-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.11);
  border-color: rgba(212, 168, 67, 0.25);
}

.report-card:hover::before {
  opacity: 1;
}

.report-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.18);
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold-dark);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.report-card:hover .report-card-icon {
  background: rgba(212, 168, 67, 0.18);
  color: var(--gold);
}

.report-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.report-card-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 18px;
}

.report-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.report-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
}

.prs-param-includes li::before,
.rcp-toc-list li a i,
.report-includes li i {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}

.report-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.2px;
  transition: var(--transition);
  margin-top: auto;
}

.report-card-cta i {
  font-size: 15px;
  transition: transform 0.3s;
}

.report-card-cta:hover {
  color: var(--gold);
}

.pir-risk-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.pir-risk-section::before,
.prs-intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pir-risk-section::before {
  background: radial-gradient(ellipse at 80% 60%, rgba(59, 130, 246, 0.08) 0, transparent 55%);
}

.risk-type-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition);
}

.risk-type-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.13);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.risk-type-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  margin-bottom: 2px;
  background: #fff !important;
  color: #d4a843 !important;
}

form#fpForm .col-lg-10 {
  margin: 0 auto;
}

.risk-icon-blue,
.risk-icon-gold,
.risk-icon-green,
.risk-icon-orange,
.risk-icon-purple {
  background: #fff;
  color: #d4a843;
}

.risk-icon-red {
  background: #fff;
}

.risk-type-name {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.2px;
}

.risk-type-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .pir-hero-section {
    padding-top: 110px;
  }

  .report-mockup {
    margin-top: 32px;
  }
}

@media (max-width: 767.98px) {
  .pir-hero-section {
    padding-top: 100px;
  }

  .vp-tl-connector {
    display: none;
  }

  .comp-table-wrap,
  .comparison-table-wrap.fade-up.visible {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
  }

  .risk-score-display {
    flex-direction: column;
    text-align: center;
  }

  .risk-label-block {
    text-align: center;
  }

  .report-card {
    padding: 22px 18px;
  }

  .risk-type-card {
    padding: 18px 16px;
  }
}

@media (max-width: 480px) {
  .report-mockup {
    padding: 20px 16px;
  }

  .report-mockup-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .pir-hero-body,
  .pir-hero-sub {
    font-size: 14px;
  }
}

.prs-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.prs-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}

.prs-intro-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.prs-intro-section::before {
  background: radial-gradient(circle at 10% 80%, rgba(11, 28, 58, 0.04) 0, transparent 45%), radial-gradient(circle at 90% 15%, rgba(212, 168, 67, 0.05) 0, transparent 45%);
}

.prs-buying-way-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.prs-buying-way-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
  border-color: rgba(0, 0, 0, 0.1);
}

.prs-buying-way-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prs-way-label-new,
.prs-way-label-old {
  color: var(--gold);
}

.prs-way-label-new::before,
.prs-way-label-old::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}

.prs-buying-way-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.3;
}

.prs-buying-way-card.way-new .prs-buying-way-title,
.prs-buying-way-card.way-old .prs-buying-way-title {
  color: var(--navy);
}

.prs-way-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prs-param-includes li,
.prs-way-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-body);
}

.prs-way-list li i {
  font-size: 15px;
  flex-shrink: 0;
}

.privacy-sec-pill:hover i,
.prs-way-new-icon,
.prs-way-old-icon {
  color: var(--gold);
}

.prs-vs-circle,
.prs-vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.prs-vs-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 6px 24px rgba(11, 28, 58, 0.25);
}

.prs-meter-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.prs-meter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}

.prs-score-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.prs-score-header-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.prs-score-ring {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
}

.prs-ring-bg {
  stroke: rgba(255, 255, 255, 0.07);
}

.prs-ring-fill {
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-dasharray: 502;
  filter: drop-shadow(0 0 10px rgba(212, 168, 67, 0.7));
  transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.prs-ring-fill,
.prs-ring-fill.animate {
  stroke-dashoffset: 90;
}

.prs-score-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1;
}

.prs-score-big {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
}

.prs-score-denom {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
}

.prs-score-verdict {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 24px;
}

.prs-score-verdict i {
  font-size: 20px;
}

.prs-scale {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.prs-scale-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: default;
}

.prs-scale-row.active {
  background: rgba(212, 168, 67, 0.1);
  border-color: rgba(212, 168, 67, 0.3);
}

.prs-scale-color {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.prs-scale-color-green {
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.prs-scale-color-yellow {
  background: #f59e0b;
  box-shadow: 0 0 8px #f59e0b;
}

.prs-scale-color-orange {
  background: #f97316;
  box-shadow: 0 0 8px #f97316;
}

.prs-scale-color-red {
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
}

.prs-scale-range {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  width: 60px;
  flex-shrink: 0;
}

.prs-scale-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  flex: 1;
}

.prs-scale-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

.prs-badge-green {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.prs-badge-yellow {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.prs-badge-orange {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
}

.prs-badge-red {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.prs-disclaimer-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.6;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.prs-disclaimer-note i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  opacity: 0.6;
  margin-top: 1px;
}

.prs-params-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.prs-param-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.prs-param-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.prs-param-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.1);
  border-color: rgba(212, 168, 67, 0.2);
}

.prs-param-card:hover::after {
  transform: scaleX(1);
}

.prs-param-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
}

.prs-param-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin-bottom: 16px;
  transition: var(--transition);
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  background: #fff !important;
  color: var(--gold) !important;
}

.prs-p-navy {
  background: rgba(11, 28, 58, 0.08);
  color: var(--navy);
}

.prs-p-gold {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold-dark);
}

.prs-p-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}

.prs-p-red {
  background: rgba(239, 68, 68, 0.09);
  color: var(--red);
}

.prs-p-blue {
  background: rgba(59, 130, 246, 0.1);
  color: var(--electric);
}

.prs-p-purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.prs-p-orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.prs-param-card:hover .prs-param-icon {
  background: var(--navy);
  color: var(--gold);
  transform: scale(1.08);
}

.prs-param-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.prs-param-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 14px;
}

.prs-param-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.prs-param-includes li {
  font-size: 12px;
  gap: 7px;
}

.prs-param-includes li::before {
  content: "·";
  font-size: 18px;
  line-height: 1;
}

.prs-dashboard-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.prs-dashboard-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.09) 0, transparent 50%), radial-gradient(circle at 10% 85%, rgba(212, 168, 67, 0.07) 0, transparent 50%);
  pointer-events: none;
}

.prs-dashboard-frame {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 1;
}

.prs-dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(212, 168, 67, 0.08);
  border-bottom: 1px solid rgba(212, 168, 67, 0.13);
}

.prs-dash-topbar-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.prs-dash-body {
  padding: 24px;
}

.prs-dash-score-overview {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
}

.prs-dash-ring-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto;
}

.prs-dash-ring-bg {
  stroke: rgba(255, 255, 255, 0.07);
}

.prs-dash-ring-fill {
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-dasharray: 408;
  stroke-dashoffset: 73;
  filter: drop-shadow(0 0 7px rgba(212, 168, 67, 0.65));
}

.prs-dash-score-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1;
}

.prs-dash-score-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  display: block;
}

.prs-dash-score-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
}

.prs-dash-score-label {
  font-size: 17px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}

.prs-dash-score-note {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  margin-bottom: 14px;
}

.prs-dash-params {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.prs-dash-param-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  gap: 10px;
  transition: var(--transition);
}

.prs-dash-param-row:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(212, 168, 67, 0.12);
}

.prs-dash-param-name {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
  flex: 1;
}

.prs-dash-param-name i {
  color: var(--gold);
  font-size: 14px;
  opacity: 0.8;
}

.prs-dash-param-bar-wrap {
  flex: 1;
  max-width: 120px;
  height: 5px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 3px;
  overflow: hidden;
}

.prs-dash-param-bar {
  height: 100%;
  border-radius: 3px;
  transition: width 1.5s ease;
}

.prs-bar-green {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.prs-bar-gold {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.prs-bar-orange {
  background: linear-gradient(90deg, #f97316, #fb923c);
}

.prs-bar-red {
  background: linear-gradient(90deg, #ef4444, #f87171);
}

.prs-dash-param-score {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}

.prs-radar-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  position: relative;
}

.prs-radar-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.prs-radar-svg {
  width: 100%;
  max-width: 240px;
  height: auto;
  margin: 0 auto 14px;
  display: block;
}

.prs-radar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}

.prs-radar-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.prs-radar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.prs-alerts-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.prs-alert-card {
  background: var(--off-white);
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.prs-alert-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.prs-alert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
  background: var(--white);
}

.prs-alert-card:hover::before {
  opacity: 1;
}

.prs-alert-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 14px;
  transition: var(--transition);
  background: #fff !important;
  color: var(--gold) !important;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
}

.prs-alert-title {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 7px;
}

.prs-alert-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
}

.prs-key-msg {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.prs-key-msg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 50%, rgba(212, 168, 67, 0.12) 0, transparent 60%);
  pointer-events: none;
}

.prs-key-msg-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prs-key-msg-icon,
.prs-key-msg-text {
  position: relative;
  z-index: 1;
}

.prs-key-msg-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.prs-key-msg-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

.prs-local-section {
  background: var(--off-white);
  position: relative;
}

.prs-city-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.prs-city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(11, 28, 58, 0.1);
}

.prs-city-card-dark {
  background: var(--navy);
  border-color: rgba(212, 168, 67, 0.15);
}

.prs-city-badge,
.rcp-section-heading span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.prs-city-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.prs-city-badge-pune {
  background: rgba(11, 28, 58, 0.07);
  color: var(--navy);
}

.prs-city-badge-mumbai {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold-dark);
}

.prs-city-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}

.prs-city-card-dark .prs-city-name {
  color: var(--white);
}

.prs-city-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}

.prs-city-card-dark .prs-city-desc {
  color: rgba(255, 255, 255, 0.5);
}

.prs-risk-insight-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prs-risk-insight-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(11, 28, 58, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  gap: 10px;
  transition: var(--transition);
}

.prs-city-card-dark .prs-risk-insight-row {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}

.prs-risk-insight-row:hover {
  background: rgba(11, 28, 58, 0.07);
}

.prs-city-card-dark .prs-risk-insight-row:hover {
  background: rgba(255, 255, 255, 0.07);
}

.prs-insight-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-body);
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prs-insight-name i {
  color: var(--gold);
  font-size: 13px;
}

.prs-city-card-dark .prs-insight-name {
  color: rgba(255, 255, 255, 0.65);
}

.prs-comparison-section {
  background: linear-gradient(160deg, #f7f9fc 0, #eef2f8 100%);
  position: relative;
  overflow: hidden;
}

.prs-comparison-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--electric));
}

.prs-key-position-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  margin-top: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.prs-key-position-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212, 168, 67, 0.12) 0, transparent 60%);
  pointer-events: none;
}

.prs-key-position-text {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

.prs-audience-section {
  background: linear-gradient(160deg, #f0f4fa 0, #e8eef8 50%, #f5f7fb 100%);
}

.aud-icon-nri {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold-dark);
}

.aud-icon-family {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}

.aud-icon-invest {
  background: rgba(11, 28, 58, 0.08);
  color: var(--navy);
}

.aud-icon-comm {
  background: rgba(59, 130, 246, 0.1);
  color: var(--electric);
}

.aud-icon-first {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

@media (max-width: 991px) {
  .prs-score-card {
    padding: 24px;
    margin-top: 32px;
  }

  .prs-dash-score-overview {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .prs-dash-ring-wrap {
    width: 120px;
    height: 120px;
  }

  .prs-city-card {
    padding: 24px 20px;
  }
}

@media (max-width: 767px) {
  .prs-score-ring {
    width: 150px;
    height: 150px;
  }

  .prs-score-big {
    font-size: 38px;
  }

  .prs-scale-row {
    padding: 9px 12px;
  }

  .prs-param-card {
    padding: 22px 16px;
  }

  .prs-key-msg {
    flex-direction: column;
    gap: 12px;
    padding: 22px 20px;
  }

  .prs-vs-divider {
    padding: 12px 0;
  }

  .prs-dash-score-overview {
    grid-template-columns: 1fr;
  }

  .prs-key-position-box {
    padding: 20px;
  }

  .prs-key-position-text {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .prs-buying-way-card {
    padding: 20px 16px;
  }

  .prs-audience-section .col-6.col-md-4.col-lg,
  .srv-audience-section .col-6.col-md-4.col-lg {
    width: 100% !important;
  }

  .prs-score-ring {
    width: 130px;
    height: 130px;
  }

  .prs-score-big {
    font-size: 32px;
  }
}

.privacy-security-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.privacy-sec-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}

.privacy-sec-pill:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.privacy-sec-pill i,
.rcp-trust-tag i {
  color: var(--gold);
  font-size: 15px;
}

.privacy-section-divider {
  height: 1px;
}

.rcp-hero {
  position: relative;
  padding-top: 180px;
  padding-bottom: 80px;
}

.rcp-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/banner-img.jpg);
  background-size: cover;
  background-position: center;
}

.rcp-hero-bg::after {
  background-color: #0f1f41e6;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
}

.rcp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.rcp-orb-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.09) 0, transparent 70%);
  top: -100px;
  right: 60px;
}

.rcp-orb-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.07) 0, transparent 70%);
  bottom: -60px;
  left: 80px;
}

.rcp-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.rcp-hero-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.rcp-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 580px;
  line-height: 1.78;
  margin-bottom: 22px;
}

.rcp-updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.22);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 22px;
}

.rcp-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rcp-trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.rcp-trust-tag i {
  font-size: 13px;
}

.rcp-layout-section {
  background: var(--off-white);
}

.sticky-sec {
  position: sticky;
  top: 90px;
  align-self: flex-start;
}

.rcp-toc-wrap {
  margin-bottom: 30px;
}

.rcp-toc-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.rcp-toc-header,
.rcp-toc-list li a {
  display: flex;
  align-items: center;
  font-size: 13px;
}

.rcp-toc-header {
  background: var(--navy);
  padding: 18px 20px;
  gap: 10px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.rcp-toc-header i {
  color: var(--gold);
  font-size: 18px;
}

.rcp-toc-list {
  list-style: none;
  padding: 14px 0;
  margin: 0;
}

.rcp-toc-list li a {
  gap: 9px;
  padding: 9px 20px;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.rcp-toc-list li a.active,
.rcp-toc-list li a:hover {
  color: var(--navy);
  background: rgba(11, 28, 58, 0.04);
  border-left-color: var(--gold);
  padding-left: 24px;
}

.rcp-toc-contact {
  margin: 0;
  padding: 18px 20px;
  background: rgba(11, 28, 58, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.rcp-toc-contact-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 5px;
}

.rcp-toc-contact-sub {
  font-size: 12px;
  color: var(--text-body);
  margin-bottom: 14px;
  line-height: 1.5;
}

.rcp-section-block {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-bottom: 24px;
  scroll-margin-top: 110px;
  transition: var(--transition);
}

.rcp-section-block:hover {
  box-shadow: 0 8px 32px rgba(11, 28, 58, 0.07);
}

.rcp-section-icon-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.rcp-section-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

.rcp-section-heading {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
}

.rcp-section-heading span {
  display: block;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 4px;
}

.rcp-body-text {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.82;
  margin-bottom: 16px;
}

.rcp-body-text:last-child {
  margin-bottom: 0;
}

.rcp-body-text a {
  font-weight: 600;
}

.rcp-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.rcp-callout-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.rcp-callout-title {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 5px;
}

.rcp-callout-text {
  font-size: 13.5px;
  line-height: 1.7;
}

.rcp-callout-gold {
  background: rgba(212, 168, 67, 0.07);
  border: 1px solid rgba(212, 168, 67, 0.18);
  border-left: 4px solid var(--gold);
}

.rcp-body-text a,
.rcp-callout-gold .rcp-callout-icon,
.rcp-sec-pill:hover i {
  color: var(--gold);
}

.rcp-callout-gold .rcp-callout-title {
  color: var(--gold-dark);
}

.rcp-callout-gold .rcp-callout-text {
  color: var(--text-body);
}

.rcp-callout-green {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-left: 4px solid var(--green);
}

.rcp-callout-green .rcp-callout-icon {
  color: var(--green);
}

.rcp-callout-green .rcp-callout-title {
  color: #065f46;
}

.rcp-callout-green .rcp-callout-text {
  color: var(--text-body);
}

.rcp-callout-blue {
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-left: 4px solid var(--electric);
}

.rcp-callout-blue .rcp-callout-icon {
  color: var(--electric);
}

.rcp-callout-blue .rcp-callout-title {
  color: #1d4ed8;
}

.rcp-callout-blue .rcp-callout-text {
  color: var(--text-body);
}

.rcp-callout-red {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.18);
  border-left: 4px solid #ef4444;
}

.rcp-callout-red .rcp-callout-icon {
  color: #ef4444;
}

.rcp-callout-red .rcp-callout-title {
  color: #991b1b;
}

.rcp-callout-red .rcp-callout-text,
.rcp-list li {
  color: var(--text-body);
}

.rcp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rcp-list li {
  gap: 10px;
  font-size: 14px;
  line-height: 1.72;
}

.rcp-list li i {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.rcp-list-gold li i {
  color: var(--gold-dark);
}

.rcp-list-green li i {
  color: var(--green);
}

.rcp-list-navy li i {
  color: var(--navy);
}

.rcp-list-red li i {
  color: #ef4444;
}

.rcp-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.rcp-stage-card {
  border-radius: var(--radius-md);
  padding: 20px 18px;
  text-align: center;
  transition: var(--transition);
}

.rcp-stage-card:hover {
  transform: translateY(-3px);
}

.rcp-stage-green {
  background: rgba(16, 185, 129, 0.07);
  border: 1px solid rgba(16, 185, 129, 0.18);
}

.rcp-stage-yellow {
  background: rgba(245, 158, 11, 0.07);
  border: 1px solid rgba(245, 158, 11, 0.18);
}

.rcp-stage-red {
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.18);
}

.rcp-stage-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.rcp-stage-green .rcp-stage-icon {
  color: var(--green);
}

.rcp-stage-yellow .rcp-stage-icon {
  color: #f59e0b;
}

.rcp-stage-red .rcp-stage-icon {
  color: #ef4444;
}

.rcp-stage-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.rcp-stage-green .rcp-stage-label {
  color: #065f46;
}

.rcp-stage-yellow .rcp-stage-label {
  color: #92400e;
}

.rcp-stage-red .rcp-stage-label {
  color: #991b1b;
}

.rcp-stage-desc {
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.55;
}

.rcp-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.rcp-info-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  transition: var(--transition);
}

.rcp-info-card:hover {
  box-shadow: 0 6px 24px rgba(11, 28, 58, 0.08);
  border-color: rgba(11, 28, 58, 0.1);
}

.rcp-info-card-icon {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 10px;
}

.rcp-info-card-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.rcp-info-card-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
}

.rcp-data-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 13.5px;
}

.rcp-data-table thead th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.rcp-data-table thead th:first-child {
  border-radius: 8px 0 0 0;
}

.rcp-data-table thead th:last-child {
  border-radius: 0 8px 0 0;
}

.rcp-data-table tbody tr:hover {
  background: rgba(11, 28, 58, 0.02);
}

.rcp-data-table tbody td {
  padding: 13px 16px;
  color: var(--text-body);
  vertical-align: top;
  line-height: 1.6;
}

.rcp-data-table tbody td:first-child {
  font-weight: 700;
  color: var(--navy);
}

.rcp-contact-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rcp-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.rcp-contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.12);
  border: 2px solid rgba(212, 168, 67, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}

.rcp-contact-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.rcp-contact-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.72;
  margin-bottom: 24px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.rcp-security-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.rcp-sec-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: rgba(11, 28, 58, 0.05);
  border: 1px solid rgba(11, 28, 58, 0.1);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.rcp-sec-pill:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.rcp-sec-pill i {
  color: var(--gold);
  font-size: 14px;
}

.rcp-final-section {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.rcp-final-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=1600&q=80);
  background-size: cover;
  background-position: center;
  opacity: 0.05;
}

.rcp-final-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.rcp-final-content {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .sticky-sec {
    position: static;
  }

  .rcp-stage-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rcp-info-grid {
    grid-template-columns: 1fr;
  }

  .rcp-section-block {
    padding: 28px 24px;
  }
}

@media (max-width: 767px) {
  .rcp-hero-title {
    font-size: 30px;
    letter-spacing: -0.5px;
  }

  .rcp-stage-grid {
    grid-template-columns: 1fr;
  }

  .rcp-data-table {
    font-size: 12.5px;
  }

  .rcp-data-table tbody td,
  .rcp-data-table thead th {
    padding: 10px 12px;
  }

  .rcp-contact-card {
    padding: 24px 18px;
  }

  .rcp-section-block {
    padding: 22px 16px;
  }
}

.builder-hero {
  position: relative;
  min-height: 92vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
}

.builder-hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(110deg, rgba(11, 28, 58, 0.97) 42%, rgba(11, 28, 58, 0.6) 100%), url(https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=80);
  background-size: cover;
  background-position: center bottom;
}

.builder-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.builder-hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0, transparent 70%);
  top: -80px;
  right: 60px;
  filter: blur(80px);
}

.builder-hero-orb-1,
.builder-hero-orb-2,
.builder-why-section::before {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.builder-hero-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0, transparent 70%);
  bottom: 0;
  left: 150px;
  filter: blur(80px);
}

.builder-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  padding-bottom: 60px;
}

.builder-hero-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.07;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.builder-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.builder-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.builder-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.builder-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.builder-trust-badge i {
  color: var(--gold);
  font-size: 13px;
}

.builder-hero-visual {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  padding-bottom: 40px;
}

.builder-intel-card {
  background: rgba(14, 31, 65, 0.92);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  animation: builder-float 6s ease-in-out infinite;
}

.builder-card-header {
  background: rgba(212, 168, 67, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.builder-card-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.builder-card-body {
  padding: 22px;
}

.builder-score-ring-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
}

.builder-score-circle {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.builder-score-circle svg {
  transform: rotate(-90deg);
}

.builder-score-bg {
  stroke: rgba(255, 255, 255, 0.07);
}

.builder-score-fill {
  stroke: var(--gold);
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(212, 168, 67, 0.5));
}

.builder-score-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.builder-score-num {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.builder-score-denom {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
}

.builder-score-meta {
  flex: 1;
}

.builder-score-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
}

.builder-score-type {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.builder-score-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
}

.builder-param-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.builder-param-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.builder-param-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  width: 130px;
  flex-shrink: 0;
}

.builder-param-track {
  flex: 1;
  height: 7px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  overflow: hidden;
}

.builder-param-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.5s ease;
}

.fill-gold {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.fill-green {
  background: linear-gradient(90deg, #059669, var(--green));
}

.fill-blue {
  background: linear-gradient(90deg, #1d4ed8, var(--electric));
}

.fill-yellow {
  background: linear-gradient(90deg, #d97706, #fbbf24);
}

.fill-navy {
  background: linear-gradient(90deg, var(--navy-light), #2563eb);
}

.builder-param-pct {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  width: 30px;
  text-align: right;
}

.builder-float-pill {
  position: absolute;
  background: rgba(14, 31, 65, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: builder-float 4s ease-in-out infinite;
  z-index: 3;
}

.builder-float-pill-1 {
  top: 0;
  right: 16px;
  animation-delay: 0.8s;
}

.builder-float-pill-2 {
  bottom: 16px;
  left: 10px;
  animation-delay: 2s;
}

.builder-pill-icon {
  font-size: 14px;
  color: var(--gold);
}

.builder-pill-text {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.builder-why-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.builder-why-section::before {
  content: "";
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0, transparent 70%);
}

.builder-risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.builder-risk-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.builder-feature-card::before,
.builder-risk-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.builder-risk-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(11, 28, 58, 0.1);
}

.builder-feature-card:hover::before,
.builder-risk-card:hover::before {
  transform: scaleX(1);
}

.builder-risk-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: var(--transition);
  background: 0 0 !important;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  color: var(--gold) !important;
}

.risk-icon-red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.risk-icon-yellow {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.risk-icon-navy {
  background: rgba(11, 28, 58, 0.08);
  color: var(--navy);
}

.builder-feature-card:hover .builder-feature-icon,
.builder-insight-card:hover .builder-insight-icon,
.builder-risk-card:hover .builder-risk-icon {
  background: var(--navy);
  color: var(--gold);
}

.builder-risk-title {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.builder-risk-desc {
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.6;
}

.builder-intel-section {
  background: var(--white);
}

.builder-feature-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.builder-feature-card::before {
  transform-origin: left;
  transition: transform 0.4s ease;
}

.builder-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11, 28, 58, 0.1);
  border-color: rgba(11, 28, 58, 0.12);
}

.builder-feature-num {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -2px;
}

.builder-feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: rgba(11, 28, 58, 0.07);
  color: var(--navy);
  font-size: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}

.builder-feature-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.builder-feature-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 14px;
}

.builder-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.builder-feat-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(11, 28, 58, 0.06);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
}

.builder-feat-tag i {
  font-size: 11px;
  color: var(--gold);
}

.builder-dashboard-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.builder-dashboard-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.builder-dashboard-panel {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}

.builder-panel-header {
  background: rgba(212, 168, 67, 0.08);
  border-bottom: 1px solid rgba(212, 168, 67, 0.12);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.builder-panel-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.builder-panel-body {
  padding: 26px;
}

.builder-avatar,
.builder-profile-row {
  border-radius: 12px;
  display: flex;
  align-items: center;
}

.builder-profile-row {
  gap: 18px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 20px;
  transition: var(--transition);
}

.builder-profile-row:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 168, 67, 0.2);
}

.builder-avatar {
  width: 52px;
  height: 52px;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.avatar-blue {
  background: rgba(59, 130, 246, 0.15);
}

.avatar-green {
  background: rgba(16, 185, 129, 0.15);
}

.avatar-gold {
  background: rgba(212, 168, 67, 0.15);
}

.builder-profile-info {
  flex: 1;
  min-width: 0;
}

.builder-profile-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}

.builder-profile-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.builder-profile-score {
  text-align: right;
  flex-shrink: 0;
}

.builder-ps-num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.builder-ps-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}

.builder-params-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.builder-param-table-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 9px;
  transition: var(--transition);
}

.builder-param-table-row:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 168, 67, 0.12);
}

.builder-param-table-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.builder-param-table-name i {
  color: var(--gold);
  font-size: 14px;
}

.builder-city-section {
  background: var(--off-white);
}

.builder-city-tab-wrap {
  display: flex;
  gap: 0;
  background: rgba(11, 28, 58, 0.06);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 32px;
  width: fit-content;
}

.builder-city-tab {
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-body);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  border: 0;
  background: 0 0;
}

.builder-city-tab.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(11, 28, 58, 0.25);
}

.builder-city-content {
  display: none;
}

.builder-city-content.active {
  display: block;
}

.builder-insight-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.builder-insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(11, 28, 58, 0.1);
  border-color: rgba(212, 168, 67, 0.3);
}

.builder-insight-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(11, 28, 58, 0.06);
  color: var(--navy);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: var(--transition);
}

.builder-insight-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.builder-insight-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
}

.builder-insight-risk {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  background: var(--gold) !important;
  color: #fff !important;
}

.builder-city-section .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #fff !important;
  box-shadow: none !important;
}

.builder-redev-section {
  background: var(--white);
}

.builder-redev-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 50px 56px;
  position: relative;
  overflow: hidden;
}

.builder-audience-section::before,
.builder-redev-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.builder-redev-inner {
  position: relative;
  z-index: 1;
}

.builder-redev-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.builder-redev-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.builder-redev-item:hover {
  background: rgba(212, 168, 67, 0.07);
  border-color: rgba(212, 168, 67, 0.2);
}

.builder-redev-item i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.builder-investment-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.builder-invest-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  transition: var(--transition);
}

.builder-invest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(11, 28, 58, 0.1);
  border-color: rgba(11, 28, 58, 0.12);
}

.builder-invest-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.builder-invest-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

.builder-audience-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.builder-audience-section::before {
  background-size: 50px 50px;
}

.builder-audience-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.builder-audience-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 168, 67, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.builder-audience-emoji {
  font-size: 38px;
  margin-bottom: 14px;
  display: block;
}

.builder-audience-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.builder-audience-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

.builder-testimonials-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.builder-testimonials-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 30px;
  font-family: var(--font-serif);
  font-size: 260px;
  color: rgba(212, 168, 67, 0.05);
  line-height: 1;
  pointer-events: none;
}

.builder-faq-section {
  background: var(--off-white);
}

.builder-final-cta {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.builder-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=80);
  background-size: cover;
  background-position: center;
  opacity: 0.05;
}

.builder-cta-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.builder-cta-content {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .builder-hero-visual {
    display: none;
  }

  .builder-hero {
    min-height: auto;
    padding: 130px 0 70px;
  }

  .builder-risk-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .builder-redev-block {
    padding: 36px 28px;
  }
}

@media (max-width: 767px) {
  .builder-risk-grid {
    grid-template-columns: 1fr 1fr;
  }

  .builder-city-tab {
    padding: 9px 16px;
    font-size: 12px;
  }

  .builder-redev-block {
    padding: 28px 22px;
  }
}

@media (max-width: 575px) {
  .builder-hero-cta {
    flex-direction: column;
  }

  .builder-hero-cta .btn-outline-white,
  .builder-hero-cta .btn-primary-gold {
    justify-content: center;
    width: 100%;
  }

  .builder-risk-grid {
    grid-template-columns: 1fr;
  }
}

body.menu-open .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.blog-detail-hero {
  min-height: 62vh;
}

.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 2000;
  width: 0%;
  transition: width 0.1s linear;
}

.blog-body-section {
  background: var(--white);
}

.blog-prose h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--navy);
  margin: 40px 0 16px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.blog-prose h3 {
  font-size: clamp(17px, 2vw, 20px);
  margin: 30px 0 12px;
}

.blog-prose li,
.blog-prose p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 20px;
}

.blog-prose ol,
.blog-prose ul {
  padding-left: 22px;
  margin-bottom: 22px;
}

.blog-prose li {
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.blog-prose h3,
.blog-prose strong {
  color: var(--navy);
  font-weight: 700;
}

.risk-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  padding: 22px 24px;
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.risk-item:hover {
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: var(--shadow-sm);
}

.blog-prose h2,
.blog-prose h3,
.risk-item-title,
.risk-num {
  font-family: var(--font-head);
}

.risk-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.risk-item-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.risk-item-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

.article-quote-block {
  background: rgba(212, 168, 67, 0.06);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 22px 26px;
  margin: 28px 0;
}

.article-quote-text {
  font-size: 16px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.8;
  font-weight: 500;
  margin: 0;
}

.article-quote-text cite {
  display: block;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 10px;
}

.blog-feature-image,
.blog-feature-image-placeholder {
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.blog-feature-image {
  margin-bottom: 36px;
}

.blog-feature-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.blog-feature-image-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.blog-feature-image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.blog-feature-image-placeholder i {
  font-size: 64px;
  color: rgba(212, 168, 67, 0.35);
  position: relative;
  z-index: 1;
}

.blog-feature-caption {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}

.blog-share-bar,
.blog-tag {
  align-items: center;
  background: var(--off-white);
}

.blog-tag {
  display: inline-flex;
  gap: 5px;
  padding: 5px 14px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}

.blog-tag:hover,
.share-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.blog-share-bar {
  display: flex;
  gap: 10px;
  padding: 18px 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  margin: 32px 0;
  flex-wrap: wrap;
}

.blog-share-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-right: 4px;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  color: var(--text-body);
  cursor: pointer;
}

.share-btn:hover {
  transform: translateY(-2px);
}

.share-btn-wa:hover {
  background: #25d366;
  border-color: #25d366;
}

.share-btn-li:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}

.share-btn-tw:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

.author-avatar,
.author-card,
.share-btn {
  display: flex;
  align-items: center;
}

.author-card {
  gap: 16px;
  padding: 22px 24px;
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  margin: 32px 0;
}

.author-avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
}

.author-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 3px;
}

.author-role {
  font-size: 12.5px;
  color: var(--text-body);
}

.toc-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 24px;
}

.toc-list a,
.toc-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toc-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}

.blog-sidebar-title i,
.toc-list a:hover,
.toc-title i {
  color: var(--gold);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.toc-list a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
}

.toc-list a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
  flex-shrink: 0;
}

.blog-sidebar-sticky {
  position: sticky;
  top: 88px;
}

.blog-sidebar-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-bottom: 22px;
}

.blog-sidebar-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.recent-post-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.recent-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-post-thumb {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recent-post-cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.recent-post-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 4px;
  transition: var(--transition);
}

.recent-post-title:hover {
  color: var(--gold);
  cursor: pointer;
}

.recent-post-date {
  font-size: 11px;
  color: var(--text-muted);
}

.newsletter-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(212, 168, 67, 0.12) 0, transparent 60%);
  pointer-events: none;
}

.newsletter-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.newsletter-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.newsletter-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.newsletter-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: 0;
  transition: var(--transition);
}

.newsletter-input:focus {
  border-color: var(--gold);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.blog-faq-item {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.blog-faq-item:hover {
  border-color: rgba(212, 168, 67, 0.25);
}

.blog-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  background: var(--white);
  user-select: none;
}

.blog-faq-q-text {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.blog-faq-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  transition: var(--transition);
}

.blog-faq-item.open .blog-faq-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}

.blog-faq-item.open {
  border-color: rgba(212, 168, 67, 0.3);
}

.blog-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.blog-faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.78;
  background: var(--white);
}

.featured-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 20px;
}

.blog-section-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 40px 0;
}

@media (max-width: 991px) {
  .blog-sidebar-sticky {
    position: static;
  }

  .blog-feature-image img,
  .blog-feature-image-placeholder {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .risk-item {
    flex-direction: column;
    gap: 12px;
  }

  .author-card {
    flex-direction: column;
    text-align: center;
  }

  .blog-share-bar {
    justify-content: center;
  }

  .blog-feature-image img,
  .blog-feature-image-placeholder {
    height: 220px;
  }
}


/*sample page css*/

/* ── HERO ── */
.sr-aud-card img {
  width: 40px;
  margin: 0 auto 12px;
}

.sr-hero {
  position: relative;
  overflow: hidden;
  padding-top: 100px
}

.sr-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/banner-img.jpg);
  background-size: cover;
  background-position: center;
}

.sr-hero-bg::after {
  background-color: #0f1f41e6;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
}

.sr-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.035) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none
}

.sr-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none
}

.sr-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  top: -100px;
  right: 80px
}

.sr-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
  bottom: -50px;
  left: 150px
}

.sr-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0
}

.sr-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px
}

.sr-breadcrumb a {
  color: rgba(255, 255, 255, 0.5)
}

.sr-breadcrumb a:hover,
.sr-breadcrumb span {
  color: var(--gold)
}

.sr-breadcrumb i {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.25)
}

.sr-hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 20px
}

.sr-hero-title .accent {
  color: var(--gold)
}

.sr-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 560px;
  line-height: 1.78;
  margin-bottom: 30px
}

.sr-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px
}

.sr-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px
}

.sr-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55)
}

.sr-trust-badge i {
  color: var(--gold);
  font-size: 13px
}

/* Hero Executive Summary Card */
.sr-exec-card {
  background: rgba(14, 31, 65, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: float-card 5s ease-in-out infinite
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.sr-exec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.sr-exec-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase
}

.sr-exec-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px
}

.sr-exec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 9px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600
}

.sr-exec-row i {
  color: var(--gold);
  margin-right: 8px
}

.sr-score-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 12px
}

.sr-score-circle {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0
}

.sr-score-circle svg {
  transform: rotate(-90deg)
}

.sr-score-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1
}

.sr-score-num {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  display: block
}

.sr-score-denom {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600
}

.sr-score-meta {
  flex: 1
}

.sr-score-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px
}

.sr-score-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4)
}

.sr-stars {
  color: var(--gold);
  font-size: 14px;
  margin-top: 6px
}

/* ── WHY REPORTS BETTER ── */
.sr-why-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden
}

.sr-comparison-wrap {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06)
}

.sr-comp-header {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0
}

.sr-comp-col-old {
  background: #F8FAFC;
  padding: 18px 24px;
  text-align: center
}

.sr-comp-col-new {
  background: var(--navy);
  padding: 18px 24px;
  text-align: center
}

.sr-comp-vs {
  background: #e8eef8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 900;
  color: var(--navy)
}

.sr-comp-col-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800
}

.sr-comp-col-old .sr-comp-col-title {
  color: var(--text-body)
}

.sr-comp-col-new .sr-comp-col-title {
  color: var(--gold)
}

.sr-comp-body {
  display: grid;
  grid-template-columns: 1fr 60px 1fr
}

.sr-comp-items {
  display: flex;
  flex-direction: column
}

.sr-comp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 13px
}

.sr-comp-items-new .sr-comp-item {
  background: rgba(11, 28, 58, 0.02)
}

.sr-comp-item-old {
  color: var(--text-body)
}

.sr-comp-item-old i {
  color: #EF4444;
  font-size: 14px
}

.sr-comp-item-new {
  color: var(--text-dark);
  font-weight: 600
}

.sr-comp-item-new i {
  color: var(--green);
  font-size: 14px
}

.sr-comp-divider {
  background: #e8eef8;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05)
}

/* ── REPORT TYPES ── */
.sr-types-section {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 0 !important;
}

.sr-type-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.sr-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s ease
}

.sr-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(11, 28, 58, 0.1);
  background: #fff
}

.sr-type-card:hover::before {
  transform: scaleX(1)
}

.sr-type-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  color: var(--gold)
}

.sr-type-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px
}

.sr-type-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px
}

.sr-type-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.sr-type-list li {
  font-size: 12.5px;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 7px
}

.sr-type-list li i {
  color: var(--green);
  font-size: 13px
}

.sr-type-ideal {
  font-size: 11.5px;
  color: var(--text-body);
  padding: 8px 12px;
  background: rgba(11, 28, 58, 0.04);
  border-radius: 7px;
  margin-bottom: 16px;
  border-left: 3px solid var(--gold)
}

.sr-type-ideal strong {
  color: var(--navy);
  font-weight: 700
}

.sr-type-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition)
}

.sr-type-cta:hover {
  color: var(--gold);
  gap: 10px
}

/* ── WHAT WE ANALYZE ── */
.sr-analyze-section {
  background: var(--off-white);
  padding-top: 0 !important;
}

.sr-analyze-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  text-align: left;
}

.sr-analyze-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  height: 100%;
  transition: var(--transition);
  text-align: center
}

.sr-analyze-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(11, 28, 58, 0.1);
  border-color: rgba(212, 168, 67, 0.3)
}

.sr-analyze-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  color: var(--gold);
}

.sr-analyze-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left
}

.sr-analyze-list li {
  font-size: 12px;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 7px
}

.sr-analyze-list li::before {
  content: '✓';
  color: var(--gold);
  font-size: 11px;
  font-weight: 900
}

/* ── CASE STUDIES (Actual Insights) ── */
.sr-insights-section {
  background: var(--navy);
  position: relative;
  overflow: hidden
}

.sr-insights-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 67, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none
}

.sr-case-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  height: 100%;
  transition: var(--transition)
}

.sr-case-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateY(-4px)
}

.sr-case-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px
}

.sr-case-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  color: var(--gold)
}

.sr-case-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3
}

.sr-case-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 14px
}

.sr-case-result {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #10B981
}

.sr-case-result i {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px
}

/* ── EXECUTIVE PREVIEW (Full Report Preview) ── */
.sr-preview-section {
  background: var(--off-white)
}

.sr-preview-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(11, 28, 58, 0.3)
}

.sr-preview-header {
  background: rgba(212, 168, 67, 0.1);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.sr-preview-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase
}

.sr-preview-body {
  padding: 24px
}

.sr-exec-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px
}

.sr-exec-metric {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 12px;
  text-align: center
}

.sr-exec-metric-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px
}

.sr-exec-metric-val {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: #fff
}

.sr-full-score-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  margin-bottom: 16px
}

.sr-big-score {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0
}

.sr-big-score svg {
  transform: rotate(-90deg)
}

.sr-big-score-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1
}

.sr-big-score-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  display: block
}

.sr-big-score-denom {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600
}

.sr-score-details .sr-score-name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px
}

.sr-score-details .sr-score-verdict {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px
}

.sr-score-details .sr-score-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4)
}

.sr-score-stars {
  color: var(--gold);
  font-size: 16px;
  margin-top: 4px
}

.sr-pricing-table {
  width: 100%;
  margin-bottom: 16px
}

.sr-pricing-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

.sr-pricing-table td {
  padding: 9px 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65)
}

.sr-pricing-table td:first-child {
  font-weight: 600
}

.sr-pricing-table td:last-child {
  text-align: right;
  color: var(--gold);
  font-weight: 700
}

.sr-negot-card {
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 16px
}

.sr-negot-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px
}

.sr-negot-list {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.sr-negot-item {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px
}

.sr-negot-item i {
  color: var(--green);
  font-size: 13px
}

.sr-negot-rec {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  padding: 10px 14px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  text-align: center
}

.sr-future-table {
  width: 100%;
  margin-top: 12px
}

.sr-future-table th {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 0;
  text-align: left
}

.sr-future-table td {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

.sr-future-table td:last-child {
  text-align: right;
  color: var(--gold);
  font-weight: 700
}

.sr-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
  margin-top: 10px
}

/* ── WHY TRUST SECTION ── */
.sr-trust-section {
  background: #fff
}

.sr-trust-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  height: 100%;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden
}

.sr-trust-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s ease
}

.sr-trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(11, 28, 58, 0.1)
}

.sr-trust-card:hover::after {
  transform: scaleX(1)
}

.sr-trust-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block
}

.sr-trust-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px
}

.sr-trust-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6
}

/* ── AUDIENCE ── */
.sr-audience-section {
  background: var(--off-white)
}

.sr-aud-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  height: 100%;
  transition: var(--transition)
}

.sr-aud-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(11, 28, 58, 0.1);
  border-color: var(--gold)
}

.sr-aud-icon {
  font-size: 30px;
  margin-bottom: 10px;
  display: block
}

.sr-aud-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px
}

.sr-aud-desc {
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.6
}

/* ── STATS STRIP ── */
.sr-stats-strip {
  background: var(--navy);
  padding: 50px 0
}

.sr-stat-item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0 30px
}

.sr-stat-item:last-child {
  border-right: none
}

.sr-stat-num {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px
}

.sr-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5)
}

.sr-stat-icon {
  font-size: 26px;
  color: rgba(212, 168, 67, 0.3);
  margin-bottom: 8px
}


/* ── Responsive ── */
@media(max-width:991px) {

  .nav-links,
  .nav-cta {
    display: none
  }

  .sr-analyze-section .col-6.col-md-4.col-lg,
  .sr-audience-section .col-6.col-md-4.col-lg-2 {
    width: 100% !important;
  }

  .hamburger {
    display: flex
  }

  .sr-exec-col {
    display: none
  }

  .sr-hero-content {
    padding: 40px 0 50px
  }

  .section-pad {
    padding: 60px 0
  }

  .sr-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px
  }
}

@media(max-width:767px) {

  .final-cta-btns,
  .sr-hero-cta {
    flex-direction: column;
    align-items: center
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap
  }

  .sr-comp-header,
  .sr-comp-body {
    grid-template-columns: 1fr
  }

  .sr-comp-vs {
    display: none
  }

  .sr-comp-divider {
    display: none
  }

  .sr-exec-summary-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .whatsapp-float {
    bottom: 78px
  }
}

@media(max-width:575px) {
  .sr-hero-title {
    font-size: 30px
  }

  .section-pad {
    padding: 50px 0
  }
}

.blog-share-bar {
  display: none !important;

}

.resource-page-hero .resource-eyebrow {
  display: none;
}

/* my-indep */
/* ══════════════════════════════════════════════════════════
   PROPERTY INTELLIGENCE REPORT PAGE — report-page.css
   Follows DealLens design system (style.css variables)
══════════════════════════════════════════════════════════ */

/* ── Fade-up animation (matches project) ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: rpt-fadeup 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-up-delay-1 {
  animation-delay: 0.12s;
}

.fade-up-delay-2 {
  animation-delay: 0.24s;
}

.fade-up-delay-3 {
  animation-delay: 0.36s;
}

@keyframes rpt-fadeup {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.rpt-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0e1e40 100%);
  padding: 140px 0 90px;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
}

.rpt-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(212, 168, 67, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(59, 130, 246, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.rpt-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.rpt-orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -80px;
}

.rpt-orb-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  bottom: -60px;
  left: 5%;
}

.rpt-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.rpt-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.rpt-breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
}

.rpt-breadcrumb a:hover {
  color: var(--gold);
}

.rpt-breadcrumb i {
  font-size: 14px;
}

.rpt-report-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.25);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.rpt-hero-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.rpt-gold-accent {
  color: var(--gold);
}

.rpt-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 28px;
}

.rpt-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.rpt-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.rpt-trust-pill i {
  color: var(--gold);
  font-size: 13px;
}

.rpt-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Hero Preview Card ── */
.rpt-preview-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.rpt-card-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 12px 20px;
}

.rpt-confidential-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #ef4444;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 100px;
}

.rpt-report-type {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.rpt-card-location {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px 10px;
  flex-wrap: wrap;
}

.rpt-card-location i {
  color: var(--gold);
  font-size: 16px;
}

.rpt-card-location span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.rpt-card-location strong {
  color: var(--white);
  font-weight: 700;
}

.rpt-card-type-tag {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.rpt-card-score-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
}

/* Score Ring SVG */
.rpt-score-ring-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.rpt-score-ring {
  width: 100px;
  height: 100px;
  transform: rotate(-90deg);
}

.rpt-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 8;
}

.rpt-ring-fill {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
}

.rpt-ring-green {
  stroke: #10b981;
}

.rpt-ring-yellow {
  stroke: #f59e0b;
}

.rpt-score-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.rpt-score-num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
}

.rpt-score-denom {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  margin-top: -2px;
}

.rpt-score-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #10b981;
  text-transform: uppercase;
  margin-top: 3px;
}

.rpt-score-details {
  flex: 1;
}

.rpt-score-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.rpt-mini-params {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rpt-mini-param {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.rpt-param-green {
  color: #10b981;
  font-size: 13px;
}

.rpt-param-yellow {
  color: #f59e0b;
  font-size: 13px;
}

.rpt-param-red {
  color: #ef4444;
  font-size: 11px;
}

.rpt-card-verdict {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0 20px 18px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.rpt-card-verdict i {
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.rpt-card-verdict strong {
  color: var(--gold);
}

/* ══════════════════════════════════════════
   META STRIP
══════════════════════════════════════════ */
.rpt-meta-strip {
  background: #f0f4fa;
  border-bottom: 1px solid rgba(11, 28, 58, 0.07);
  padding: 20px 0;
}

.rpt-meta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.rpt-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 20px;
  border-right: 1px solid rgba(11, 28, 58, 0.08);
}

.rpt-meta-item:last-child {
  border-right: none;
}

.rpt-meta-item>i {
  font-size: 20px;
  color: var(--navy);
  opacity: 0.6;
  margin-top: 2px;
  flex-shrink: 0;
}

.rpt-meta-item>div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rpt-meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-body);
}

.rpt-meta-val {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   EXECUTIVE SUMMARY
══════════════════════════════════════════ */
.rpt-exec-section {
  background: var(--white);
}

.rpt-exec-body {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
}

.rpt-exec-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rpt-exec-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

.rpt-exec-checklist li i {
  color: var(--green);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Decision Grid */
.rpt-decision-grid {
  border: 1px solid rgba(11, 28, 58, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.rpt-decision-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(11, 28, 58, 0.06);
  gap: 16px;
}

.rpt-decision-row:last-child {
  border-bottom: none;
}

.rpt-decision-highlight {
  background: rgba(11, 28, 58, 0.03);
  font-weight: 700;
}

.rpt-decision-label {
  font-size: 13.5px;
  color: var(--text-dark);
  font-weight: 500;
}

.rpt-decision-val {
  font-size: 13px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.rpt-val-green {
  color: #10b981;
}

.rpt-val-yellow {
  color: #f59e0b;
}

.rpt-val-red {
  color: #ef4444;
}

.rpt-val-blue {
  color: #3b82f6;
}

/* ══════════════════════════════════════════
   PARAMETERS SECTION
══════════════════════════════════════════ */
.rpt-params-section {
  background: #f8fafc;
}

.rpt-params-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.rpt-param-card {
  background: var(--white);
  border: 1px solid rgba(11, 28, 58, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.rpt-param-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.rpt-param-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 2px;
}

.rpt-icon-blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.rpt-icon-navy {
  background: rgba(11, 28, 58, 0.08);
  color: var(--navy);
}

.rpt-icon-gold {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
}

.rpt-icon-green {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.rpt-icon-red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.rpt-param-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-body);
  line-height: 1.3;
}

.rpt-param-score {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.5px;
}

.rpt-param-score small {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.6;
}

.rpt-score-green {
  color: #10b981;
}

.rpt-score-yellow {
  color: #f59e0b;
}

.rpt-score-red {
  color: #ef4444;
  font-size: 16px;
}

.rpt-param-bar {
  width: 100%;
  height: 4px;
  background: rgba(11, 28, 58, 0.07);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 4px;
}

.rpt-param-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.rpt-fill-green {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.rpt-fill-yellow {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.rpt-fill-red {
  background: linear-gradient(90deg, #ef4444, #f87171);
}

/* ══════════════════════════════════════════
   PRICE & VALUE INTELLIGENCE
══════════════════════════════════════════ */
.rpt-price-section {
  background: var(--white);
}

.rpt-intel-card {
  background: #f8fafc;
  border: 1px solid rgba(11, 28, 58, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.rpt-intel-card-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 22px;
  letter-spacing: -0.2px;
}

/* Price Bars */
.rpt-price-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rpt-price-bar-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rpt-price-bar-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-body);
}

.rpt-price-bar-track {
  height: 8px;
  background: rgba(11, 28, 58, 0.07);
  border-radius: 6px;
  overflow: hidden;
}

.rpt-price-bar-fill {
  height: 100%;
  border-radius: 6px;
}

.rpt-pbar-navy {
  background: var(--navy);
}

.rpt-pbar-blue {
  background: #3b82f6;
}

.rpt-pbar-muted {
  background: #94a3b8;
}

.rpt-pbar-gold {
  background: var(--gold);
}

.rpt-price-bar-val {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-dark);
}

/* ROI Grid */
.rpt-roi-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rpt-roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.rpt-roi-item {
  background: var(--white);
  border: 1px solid rgba(11, 28, 58, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}

.rpt-roi-item i {
  font-size: 20px;
  color: var(--navy);
  opacity: 0.5;
}

.rpt-roi-label {
  font-size: 11px;
  color: var(--text-body);
  font-weight: 500;
  line-height: 1.3;
}

.rpt-roi-val {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.rpt-roi-val small {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-body);
}

.rpt-roi-highlight {
  grid-column: 1 / -1;
}

/* Trend Chart */
.rpt-appreciation-trend {
  border-top: 1px solid rgba(11, 28, 58, 0.07);
  padding-top: 18px;
}

.rpt-trend-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-body);
  display: block;
  margin-bottom: 14px;
}

.rpt-trend-chart {
  overflow-x: auto;
}

.rpt-trend-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 90px;
  min-width: 300px;
}

.rpt-trend-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  background: rgba(11, 28, 58, 0.08);
  border-radius: 3px 3px 0 0;
  padding: 4px 2px 2px;
  transition: background 0.2s;
  min-width: 28px;
}

.rpt-trend-bar:hover {
  background: rgba(11, 28, 58, 0.14);
}

.rpt-trend-bar span {
  font-size: 8px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.rpt-trend-bar small {
  font-size: 9px;
  color: var(--text-body);
  font-weight: 600;
  margin-top: 3px;
}

.rpt-bar-gold {
  background: rgba(212, 168, 67, 0.25);
}

.rpt-bar-gold:hover {
  background: rgba(212, 168, 67, 0.38);
}

/* ══════════════════════════════════════════
   VERIFICATION MODULES
══════════════════════════════════════════ */
.rpt-modules-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.rpt-modules-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 90% 30%, rgba(212, 168, 67, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.rpt-modules-grid {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.rpt-module-row {
  display: grid;
  grid-template-columns: 44px 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.rpt-module-row:last-child {
  border-bottom: none;
}

.rpt-module-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.rpt-module-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 17px;
  flex-shrink: 0;
}

.rpt-module-name {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.rpt-module-name em {
  font-style: normal;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.rpt-module-page {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* ══════════════════════════════════════════
   PROJECT SNAPSHOT
══════════════════════════════════════════ */
.rpt-snapshot-section {
  background: #f8fafc;
}

.rpt-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.rpt-snapshot-card {
  background: var(--white);
  border: 1px solid rgba(11, 28, 58, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.rpt-snapshot-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.rpt-snapshot-card>i {
  font-size: 22px;
  color: var(--navy);
  opacity: 0.5;
  margin-bottom: 4px;
}

.rpt-snap-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-body);
}

.rpt-snap-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.rpt-snap-val small {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-body);
}

.rpt-snap-blurred {
  color: var(--navy);
  border-radius: 4px;
  user-select: none;
  letter-spacing: 2px;
  font-size: 16px;
}

/* ══════════════════════════════════════════
   TRI SECTION — RISK + INSIGHT + RECO
══════════════════════════════════════════ */
.rpt-tri-section {
  background: var(--white);
}

.rpt-tri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.rpt-tri-card {
  border: 1px solid rgba(11, 28, 58, 0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.rpt-tri-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.rpt-tri-card-navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-color: rgba(255, 255, 255, 0.08);
}

.rpt-tri-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(11, 28, 58, 0.06);
}

.rpt-tri-card-navy .rpt-tri-header {
  border-color: rgba(255, 255, 255, 0.07);
}

.rpt-tri-header i {
  font-size: 19px;
  flex-shrink: 0;
}

.rpt-tri-header h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--navy);
  margin: 0;
}

.rpt-tri-card-navy .rpt-tri-header h4 {
  color: var(--white);
}

.rpt-tri-header-red i {
  color: #ef4444;
}

.rpt-tri-header-blue i {
  color: #3b82f6;
}

.rpt-tri-header-gold i {
  color: var(--gold);
}

.rpt-risk-list {
  list-style: none;
  padding: 18px 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.rpt-risk-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.rpt-risk-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 5px rgba(239, 68, 68, 0.5);
  flex-shrink: 0;
}

.rpt-risk-dot-yellow {
  background: #f59e0b;
  box-shadow: 0 0 5px rgba(245, 158, 11, 0.5);
}

.rpt-risk-name {
  flex: 1;
  font-size: 12.5px;
  color: var(--text-dark);
  font-weight: 500;
}

.rpt-risk-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 9px;
  border-radius: 100px;
}

.rpt-badge-red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.rpt-badge-yellow {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.rpt-insight-text {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.8;
  padding: 18px 20px 10px;
}

.rpt-insight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 18px;
}

.rpt-insight-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(11, 28, 58, 0.05);
  color: var(--text-dark);
}

.rpt-insight-tags span i {
  font-size: 12px;
}

.rpt-insight-tags span i.ri-check-line {
  color: #10b981;
}

.rpt-insight-tags span i.ri-alert-line {
  color: #f59e0b;
}

.rpt-rec-list {
  list-style: none;
  padding: 18px 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rpt-rec-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

.rpt-rec-list li i {
  color: #10b981;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-arrow {
  font-size: 18px;
  transition: transform 0.3s;
  position: relative;
  top: -2px;
  font-weight: 900;
}

.ct-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(212, 168, 67, 0.3);
}

/* ══════════════════════════════════════════
   WHY DEALLENS
══════════════════════════════════════════ */
.rpt-why-section {
  background: #f8fafc;
}

.rpt-why-card {
  background: var(--white);
  border: 1px solid rgba(11, 28, 58, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.rpt-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.rpt-why-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(11, 28, 58, 0.07) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold) !important;
  margin: 0 auto 18px;
}

.rpt-why-icon-gold {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
}

.rpt-why-icon-green {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.rpt-why-icon-blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.rpt-why-card h5 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.rpt-why-card p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .rpt-params-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .rpt-snapshot-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .rpt-meta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .rpt-meta-item {
    border-bottom: 1px solid rgba(11, 28, 58, 0.08);
  }

  .rpt-meta-item:nth-child(3) {
    border-right: none;
  }
}

@media (max-width: 992px) {
  .rpt-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rpt-hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .rpt-hero-title {
    font-size: clamp(28px, 5vw, 40px);
  }

  .rpt-tri-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rpt-params-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rpt-snapshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rpt-roi-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .rpt-module-row {
    grid-template-columns: 36px 1fr auto;
    gap: 12px;
  }

  .rpt-module-page {
    display: none;
  }
}

@media (max-width: 768px) {
  .rpt-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rpt-meta-item {
    border-right: 1px solid rgba(11, 28, 58, 0.08);
  }

  .rpt-meta-item:nth-child(2n) {
    border-right: none;
  }

  .rpt-meta-item:nth-child(3) {
    border-right: 1px solid rgba(11, 28, 58, 0.08);
  }

  .rpt-hero-ctas {
    flex-direction: column;
  }

  .rpt-hero-ctas a {
    justify-content: center;
  }

  .rpt-card-score-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .rpt-roi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rpt-intel-card {
    padding: 20px 16px;
  }

  .rpt-module-row {
    padding: 14px 16px;
    gap: 10px;
  }

  .rpt-tri-header {
    padding: 14px 16px;
  }

  .rpt-risk-list,
  .rpt-rec-list {
    padding: 14px 16px;
  }

  .rpt-insight-text {
    padding: 14px 16px 8px;
  }

  .rpt-insight-tags {
    padding: 0 16px 14px;
  }
}

@media (max-width: 576px) {
  .rpt-params-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rpt-snapshot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rpt-meta-grid {
    grid-template-columns: 1fr;
  }

  .rpt-meta-item {
    border-right: none;
    border-bottom: 1px solid rgba(11, 28, 58, 0.07);
  }

  .rpt-meta-item:last-child {
    border-bottom: none;
  }

  .rpt-decision-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .rpt-decision-val {
    text-align: left;
  }

  .rpt-hero-title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .rpt-trust-pills {
    gap: 7px;
  }

  .rpt-score-ring-wrap {
    width: 80px;
    height: 80px;
  }

  .rpt-score-ring {
    width: 80px;
    height: 80px;
  }

  .rpt-score-num {
    font-size: 22px;
  }

  .rpt-preview-card {
    border-radius: var(--radius-lg);
  }

  .rpt-trend-bars {
    gap: 4px;
  }