/* ================================================================
   VendorVerify.in — Master Stylesheet
   Premium Consulting · Deep Navy · Gold Accents
   ================================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ================================================================
   CSS CUSTOM PROPERTIES
   ================================================================ */
:root {
  /* Brand Colours */
  --navy:          #0B1929;
  --navy-mid:      #112338;
  --navy-light:    #1A3A5C;
  --slate:         #4A6580;
  --slate-light:   #8FA4B8;
  --gold:          #C5A55A;
  --gold-light:    #DFC07A;
  --gold-pale:     #F5EDD6;
  --white:         #FFFFFF;
  --off-white:     #F8F9FB;
  --light-grey:    #EEF1F5;
  --mid-grey:      #D1D9E0;
  --text-dark:     #0F1E2D;
  --text-body:     #3A4F63;
  --text-muted:    #7A90A4;

  /* Spacing */
  --section-pad:   clamp(4.5rem, 9vw, 8.5rem);
  --section-pad-sm: clamp(3rem, 6vw, 5.5rem);

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(11,25,41,0.08);
  --shadow-md: 0 8px 32px rgba(11,25,41,0.12);
  --shadow-lg: 0 24px 64px rgba(11,25,41,0.16);

  /* Transition */
  --ease: all 0.35s cubic-bezier(0.4,0,0.2,1);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: var(--font-body); }

/* ================================================================
   TYPOGRAPHY HELPERS
   ================================================================ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.lead-text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  color: var(--text-muted);
}
.italic { font-style: italic; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* ================================================================
   LAYOUT
   ================================================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4.5vw, 3rem);
}
.container-narrow {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4.5vw, 3rem);
}
.section-pad   { padding: var(--section-pad) 0; }
.section-pad-sm { padding: var(--section-pad-sm) 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex         { display: flex; }
.flex-col     { flex-direction: column; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.gap-sm { gap: 0.75rem; }
.gap-md { gap: 1.5rem; }
.gap-lg { gap: 2.5rem; }
.gap-xl { gap: 4rem; }
.mt-sm  { margin-top: 0.75rem; }
.mt-md  { margin-top: 1.5rem; }
.mt-lg  { margin-top: 2.5rem; }
.mt-xl  { margin-top: 4rem; }
.mb-sm  { margin-bottom: 0.75rem; }
.mb-md  { margin-bottom: 1.5rem; }
.mb-lg  { margin-bottom: 2.5rem; }
.relative { position: relative; }

/* ================================================================
   GOLD DIVIDER
   ================================================================ */
.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 1.5rem;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.875rem 2rem;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(197,165,90,0.32);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197,165,90,0.48);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.42);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 0.875rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.75rem; }
.btn-full { width: 100%; justify-content: center; }

/* ================================================================
   NAVIGATION
   ================================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--ease);
  padding: 0;
}
#navbar.scrolled {
  background: rgba(11,25,41,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.22);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  cursor: pointer;
}
.nav-logo .wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-logo .wordmark span { color: var(--gold); }
.nav-logo .sub {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.775rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-sm);
  transition: var(--ease);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-actions .btn { font-size: 0.72rem; padding: 0.55rem 1.15rem; }

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

/* Mobile menu */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  transition: var(--ease);
  letter-spacing: 0.01em;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.75rem;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-nav-close:hover { color: var(--white); }

/* ================================================================
   PAGE HERO (for inner pages)
   ================================================================ */
.page-hero {
  background: var(--navy);
  padding: clamp(7rem, 13vw, 11rem) 0 clamp(4rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(197,165,90,0.06) 0%, transparent 45%),
    linear-gradient(rgba(197,165,90,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,165,90,0.025) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  max-width: 700px;
}
.page-hero h1 em { color: var(--gold-light); font-style: italic; }
.page-hero p {
  color: rgba(255,255,255,0.58);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.75;
  max-width: 560px;
  margin-top: 1.25rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ================================================================
   SECTION HEADERS
   ================================================================ */
.section-header { max-width: 640px; }
.section-header.center {
  text-align: center;
  margin: 0 auto;
}
.section-header .lead-text { margin-top: 1rem; }

/* ================================================================
   HOMEPAGE HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(197,165,90,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(26,58,92,0.7) 0%, transparent 50%),
    linear-gradient(rgba(197,165,90,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,165,90,0.03) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(7rem, 14vw, 12rem) 0 clamp(5rem, 10vw, 8rem);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(197,165,90,0.1);
  border: 1px solid rgba(197,165,90,0.28);
  border-radius: 999px;
  padding: 0.38rem 1rem;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; } 50% { opacity: 0.35; }
}
.hero-badge span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.75rem);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 820px;
}
.hero-headline em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  max-width: 550px;
  margin-top: 1.75rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  align-items: center;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(197,165,90,0.15);
  border: 1px solid rgba(197,165,90,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-check svg { width: 10px; height: 10px; }
.trust-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}
/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollpulse 2.5s ease-in-out infinite;
}
@keyframes scrollpulse { 0%,100%{opacity:0.25} 50%{opacity:0.85} }
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

/* ================================================================
   MARQUEE BAR
   ================================================================ */
.marquee-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(197,165,90,0.1);
  border-bottom: 1px solid rgba(197,165,90,0.1);
  padding: 0.875rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 35s linear infinite;
  width: max-content;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-track:hover { animation-play-state: paused; }
.m-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 2.5rem;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.m-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

/* ================================================================
   PROBLEM SECTION
   ================================================================ */
.problem-section { background: var(--off-white); }
.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.risk-card {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--r-md);
  padding: 2rem;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.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);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.risk-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.risk-card:hover::before { transform: scaleX(1); }
.risk-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.risk-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.risk-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.problem-callout {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  position: relative;
  overflow: hidden;
}
.problem-callout::after {
  content: '';
  position: absolute;
  top: -60%; right: -8%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,165,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.problem-callout h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--white);
}
.problem-callout p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.52);
  margin-top: 0.5rem;
  max-width: 420px;
}

/* ================================================================
   SERVICES SECTION (homepage preview)
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
  margin-top: 3.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--r-md);
  padding: 2.25rem;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: var(--r-md);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { opacity: 1; }
.svc-num {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.svc-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.service-card p { font-size: 0.875rem; color: var(--text-muted); flex: 1; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.tag {
  padding: 0.22rem 0.65rem;
  background: var(--light-grey);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.svc-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ================================================================
   PROCESS SECTION
   ================================================================ */
.process-section { background: var(--navy); position: relative; overflow: hidden; }
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197,165,90,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,165,90,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
}
.process-section .display-lg { color: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(197,165,90,0.2), var(--gold));
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(197,165,90,0.38);
  background: rgba(197,165,90,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.step-circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(197,165,90,0.1);
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--white);
}
.step p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.step-bullets { text-align: left; width: 100%; }
.step-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.35rem;
}
.step-bullets li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ================================================================
   LEAD MAGNET SECTION
   ================================================================ */
.lead-magnet { background: var(--off-white); }
.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.lead-left h2 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3.25rem); font-weight:500; line-height:1.15; color:var(--navy); }
.lead-left h2 em { font-style:italic; color:var(--gold); }
.lead-left p { font-size:0.95rem; color:var(--text-muted); line-height:1.75; margin-top:1rem; }
.lead-perks { margin-top:2rem; display:flex; flex-direction:column; gap:0.85rem; }
.lead-perk {
  display:flex; align-items:flex-start; gap:0.75rem;
  padding:1rem 1.25rem;
  background:var(--white);
  border:1px solid var(--light-grey);
  border-radius:var(--r-md);
  transition:var(--ease);
}
.lead-perk:hover { border-color:var(--gold); }
.lead-perk-icon { font-size:1.2rem; flex-shrink:0; margin-top:2px; }
.lead-perk h5 { font-family:var(--font-display); font-size:1.05rem; font-weight:600; color:var(--navy); margin-bottom:0.2rem; }
.lead-perk p { font-size:0.82rem; color:var(--text-muted); }
.form-card {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-card h4 {
  font-family:var(--font-display);
  font-size:1.55rem;
  font-weight:600;
  color:var(--navy);
  margin-bottom:0.4rem;
}
.form-card > p { font-size:0.85rem; color:var(--text-muted); margin-bottom:1.75rem; }
.form-group { margin-bottom:1rem; }
.form-group label {
  display:block;
  font-size:0.72rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--navy);
  margin-bottom:0.4rem;
}
.form-control {
  width:100%;
  padding:0.8rem 1rem;
  border:1.5px solid var(--mid-grey);
  border-radius:var(--r-sm);
  font-family:var(--font-body);
  font-size:0.9rem;
  color:var(--text-dark);
  background:var(--white);
  transition:border-color 0.25s ease, box-shadow 0.25s ease;
  outline:none;
  appearance:none;
}
.form-control:focus {
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(197,165,90,0.12);
}
.form-control::placeholder { color:var(--text-muted); }
select.form-control { cursor:pointer; }
textarea.form-control { resize:vertical; min-height:110px; }
.form-disclaimer {
  font-size:0.72rem;
  color:var(--text-muted);
  line-height:1.55;
  margin-top:1rem;
}
.form-disclaimer a { color:var(--gold); text-decoration:underline; text-underline-offset:3px; }
.form-success {
  display:none;
  margin-top:1rem;
  padding:1rem;
  background:#f0fdf4;
  border:1px solid #bbf7d0;
  border-radius:var(--r-sm);
  font-size:0.875rem;
  color:#166534;
}
.what-included {
  background:var(--light-grey);
  border-radius:var(--r-md);
  padding:1.25rem;
  margin-top:1.25rem;
}
.what-included p {
  font-size:0.7rem;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--navy);
  margin-bottom:0.5rem;
}
.wi-item {
  display:flex;
  align-items:center;
  gap:0.4rem;
  font-size:0.8rem;
  color:var(--text-body);
  margin-bottom:0.3rem;
}
.wi-dot { width:4px;height:4px;border-radius:50%;background:var(--gold);flex-shrink:0; }

/* ================================================================
   PRICING PAGE
   ================================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--ease);
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-tier {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.pricing-card.featured h3 { color: var(--white); }
.price-block { display:flex; align-items:flex-end; gap:0.2rem; margin:0.25rem 0; }
.price-currency { font-size:1.1rem; font-weight:600; color:var(--gold); margin-bottom:6px; }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.pricing-card.featured .price-amount { color: var(--gold-light); }
.price-unit { font-size:0.78rem; color:var(--text-muted); margin-bottom:6px; }
.pricing-card.featured .price-unit { color: rgba(255,255,255,0.45); }
.price-for {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--light-grey);
  border-radius: var(--r-sm);
  padding: 0.5rem 0.75rem;
}
.pricing-card.featured .price-for { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }
.exposure-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(197,165,90,0.1);
  border: 1px solid rgba(197,165,90,0.22);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  display: inline-block;
}
.price-divider {
  height: 1px;
  background: var(--light-grey);
}
.pricing-card.featured .price-divider { background: rgba(255,255,255,0.1); }
.feature-list { display:flex; flex-direction:column; gap:0.65rem; flex:1; }
.feature-item {
  display:flex; align-items:flex-start; gap:0.6rem;
  font-size:0.86rem;
  color:var(--text-body);
}
.pricing-card.featured .feature-item { color: rgba(255,255,255,0.72); }
.fcheck {
  width:18px; height:18px;
  border-radius:50%;
  background:rgba(197,165,90,0.12);
  border:1px solid rgba(197,165,90,0.32);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; margin-top:2px;
}
.fcheck svg { width:8px; height:8px; }
.delivery-note {
  font-size:0.75rem;
  color:var(--text-muted);
  border-top:1px solid var(--light-grey);
  padding-top:1rem;
  display:flex; align-items:center; gap:0.4rem;
}
.pricing-card.featured .delivery-note { color:rgba(255,255,255,0.42); border-color:rgba(255,255,255,0.1); }

/* Add-ons table */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.addon-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--r-md);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--ease);
}
.addon-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.addon-icon { font-size:1.4rem; flex-shrink:0; }
.addon-name {
  font-family: var(--font-display);
  font-size:1.05rem;
  font-weight:600;
  color:var(--navy);
  margin-bottom:0.2rem;
}
.addon-price {
  font-size:0.875rem;
  font-weight:600;
  color:var(--gold);
}
.addon-desc { font-size:0.8rem; color:var(--text-muted); margin-top:0.25rem; }

/* ================================================================
   SERVICES FULL PAGE
   ================================================================ */
.full-service-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  transition: var(--ease);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
}
.full-service-card:hover { box-shadow: var(--shadow-md); border-color: var(--mid-grey); }
.fsc-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display:flex; align-items:center; justify-content:center;
  font-size:1.75rem;
  flex-shrink:0;
}
.fsc-body h3 {
  font-family:var(--font-display);
  font-size:1.55rem;
  font-weight:600;
  color:var(--navy);
  margin-bottom:0.6rem;
}
.fsc-body p { font-size:0.9rem; color:var(--text-muted); line-height:1.75; margin-bottom:1.25rem; }
.fsc-includes {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:0.5rem;
}
.fsc-includes li {
  display:flex; align-items:flex-start; gap:0.45rem;
  font-size:0.82rem;
  color:var(--text-body);
}
.fsc-includes li::before {
  content:'';
  width:4px; height:4px;
  border-radius:50%;
  background:var(--gold);
  flex-shrink:0;
  margin-top:8px;
}

/* ================================================================
   PROCESS FULL PAGE
   ================================================================ */
.process-full-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--r-lg);
  margin-bottom: 1.5rem;
  transition: var(--ease);
}
.process-full-step:hover { border-color: var(--mid-grey); box-shadow: var(--shadow-md); }
.pfs-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display);
  font-size:1.4rem;
  font-weight:500;
  color:var(--gold);
  flex-shrink:0;
}
.pfs-body h3 {
  font-family:var(--font-display);
  font-size:1.5rem;
  font-weight:600;
  color:var(--navy);
  margin-bottom:0.5rem;
}
.pfs-body p { font-size:0.9rem; color:var(--text-muted); line-height:1.75; }
.pfs-details {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
  gap:0.5rem;
  margin-top:1rem;
}
.pfs-details li {
  display:flex; align-items:flex-start; gap:0.4rem;
  font-size:0.82rem;
  color:var(--text-body);
}
.pfs-details li::before {
  content:'';
  width:4px; height:4px;
  border-radius:50%;
  background:var(--gold);
  flex-shrink:0;
  margin-top:8px;
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.stat-box {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--r-md);
  padding: 1.5rem;
  text-align: center;
  transition: var(--ease);
}
.stat-box:hover { border-color: var(--gold); }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.navy-card {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.navy-card::before {
  content:'';
  position:absolute;
  top:-40%; right:-15%;
  width:280px; height:280px;
  border-radius:50%;
  border:1px solid rgba(197,165,90,0.1);
}
.value-list { display:flex; flex-direction:column; gap:1.25rem; margin-top:1.5rem; }
.value-item { display:flex; align-items:flex-start; gap:1rem; }
.value-dot {
  width:8px; height:8px;
  border-radius:50%;
  background:var(--gold);
  flex-shrink:0;
  margin-top:6px;
}
.value-item h5 { font-family:var(--font-display); font-size:1.1rem; font-weight:600; color:var(--white); margin-bottom:0.2rem; }
.value-item p { font-size:0.845rem; color:rgba(255,255,255,0.5); }
.mission-block {
  background: var(--gold-pale);
  border: 1px solid rgba(197,165,90,0.22);
  border-radius: var(--r-lg);
  padding: clamp(2rem,4vw,3rem);
  text-align: center;
  margin-top: 4rem;
}
.mission-block h3 { font-family:var(--font-display); font-size:clamp(1.5rem,3vw,2.25rem); font-weight:500; color:var(--navy); margin-bottom:1rem; }
.mission-block p { font-size:0.95rem; color:var(--text-body); line-height:1.75; max-width:680px; margin:0 auto; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-detail-list { display:flex; flex-direction:column; gap:1.5rem; margin-top:2.5rem; }
.contact-detail {
  display:flex; align-items:flex-start; gap:1rem;
}
.cd-icon {
  width:44px; height:44px;
  border-radius:var(--r-md);
  background:var(--gold-pale);
  border:1px solid rgba(197,165,90,0.2);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem;
  flex-shrink:0;
}
.cd-label {
  font-size:0.68rem;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--text-muted);
  margin-bottom:0.25rem;
}
.cd-value { font-size:0.95rem; color:var(--navy); font-weight:500; }
.cd-value a { color:var(--navy); transition:color 0.2s; }
.cd-value a:hover { color:var(--gold); }
.coverage-box {
  margin-top:2rem;
  padding:1.5rem;
  background:var(--off-white);
  border:1px solid var(--light-grey);
  border-radius:var(--r-md);
}
.coverage-label {
  font-size:0.68rem; font-weight:700;
  letter-spacing:0.12em; text-transform:uppercase;
  color:var(--text-muted); margin-bottom:0.75rem;
}
.coverage-pills { display:flex; flex-wrap:wrap; gap:0.4rem; }
.pill {
  background:var(--white);
  border:1px solid var(--mid-grey);
  border-radius:999px;
  padding:0.22rem 0.7rem;
  font-size:0.78rem;
  color:var(--text-body);
  font-weight:500;
}
.contact-form-card {
  background:var(--off-white);
  border:1px solid var(--mid-grey);
  border-radius:var(--r-lg);
  padding:2.5rem;
}
.contact-form-card h3 {
  font-family:var(--font-display);
  font-size:1.75rem;
  font-weight:600;
  color:var(--navy);
  margin-bottom:0.4rem;
}
.contact-form-card > p { font-size:0.875rem; color:var(--text-muted); margin-bottom:2rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.response-note {
  display:flex; align-items:center; gap:0.4rem;
  margin-top:1rem;
  font-size:0.75rem;
  color:var(--text-muted);
}
.rn-dot { width:6px;height:6px;border-radius:50%;background:#22c55e;flex-shrink:0; }

/* ================================================================
   TRUST PILLARS (shared)
   ================================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
  margin-top: 3.5rem;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--r-md);
  padding: 2rem;
  transition: var(--ease);
}
.trust-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.tc-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--gold-pale);
  border: 1px solid rgba(197,165,90,0.18);
  display:flex; align-items:center; justify-content:center;
  font-size:1.3rem;
  margin-bottom:1.25rem;
}
.trust-card h4 {
  font-family:var(--font-display);
  font-size:1.15rem;
  font-weight:600;
  color:var(--navy);
  margin-bottom:0.5rem;
}
.trust-card p { font-size:0.85rem; color:var(--text-muted); line-height:1.65; }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--navy);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 1.75rem;
  border-top: 1px solid rgba(197,165,90,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.footer-brand .logo span { color: var(--gold); }
.footer-brand .tagline {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 1.25rem;
}
.footer-brand p { font-size:0.85rem; color:rgba(255,255,255,0.42); line-height:1.7; margin-bottom:1.5rem; max-width:260px; }
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links { display:flex; flex-direction:column; gap:0.6rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-legal { font-size:0.75rem; color:rgba(255,255,255,0.28); }
.footer-legal a { color:rgba(255,255,255,0.4); transition:color 0.2s; }
.footer-legal a:hover { color:var(--gold); }
.footer-contact-row { display:flex; align-items:center; gap:1.5rem; flex-wrap:wrap; }
.fci { display:flex; align-items:center; gap:0.35rem; font-size:0.75rem; color:rgba(255,255,255,0.38); }
.fci a { color:rgba(255,255,255,0.48); transition:color 0.2s; }
.fci a:hover { color:var(--gold); }

/* ================================================================
   ANIMATIONS
   ================================================================ */
.fade-up {
  opacity:0;
  transform:translateY(28px);
  transition:opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity:1; transform:translateY(0); }
.d1 { transition-delay:0.1s; }
.d2 { transition-delay:0.2s; }
.d3 { transition-delay:0.3s; }
.d4 { transition-delay:0.4s; }
.d5 { transition-delay:0.5s; }

/* Scroll-to-top */
.scroll-top {
  position:fixed;
  bottom:1.75rem;
  right:1.75rem;
  width:42px; height:42px;
  border-radius:50%;
  background:var(--gold);
  color:var(--navy);
  border:none;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem;
  box-shadow:var(--shadow-md);
  opacity:0;
  transform:translateY(16px);
  transition:var(--ease);
  z-index:500;
}
.scroll-top.show { opacity:1; transform:translateY(0); }
.scroll-top:hover { background:var(--gold-light); transform:translateY(-3px); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width:1024px) {
  .pricing-grid { grid-template-columns:1fr; max-width:500px; margin-left:auto; margin-right:auto; }
  .lead-inner { grid-template-columns:1fr; gap:3rem; }
  .about-grid { grid-template-columns:1fr; gap:3rem; }
  .contact-grid { grid-template-columns:1fr; gap:3rem; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:2.5rem; }
  .process-steps::before { display:none; }
  .process-steps { grid-template-columns:1fr; }
  .full-service-card { grid-template-columns:1fr; gap:1.5rem; }
}
@media (max-width:768px) {
  .nav-links, .nav-actions { display:none; }
  .hamburger { display:flex; }
  .services-grid { grid-template-columns:1fr; }
  .risk-grid { grid-template-columns:1fr; }
  .trust-grid { grid-template-columns:1fr 1fr; }
  .process-full-step { grid-template-columns:1fr; gap:1rem; }
  .hero-trust { flex-direction:column; gap:0.65rem; }
  .problem-callout { flex-direction:column; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }
  .form-row { grid-template-columns:1fr; }
  .stat-row { grid-template-columns:1fr 1fr; }
  .hero-cta { flex-direction:column; align-items:flex-start; }
}
@media (max-width:480px) {
  .trust-grid { grid-template-columns:1fr; }
   .hero {
color: white;
text-align: center;
}
.hero h1 {
color: white;
font-size: 48px;
}

.hero p {
color: #e5e5e5;
font-size: 20px;
}
  .stat-row { grid-template-columns:1fr 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns:1fr; }
  .about-stat-grid { grid-template-columns:1fr 1fr; }
  .pricing-grid { max-width:100%; }
}
.hero-content {
position: relative;
z-index: 10;
color: white;
}
.hero-headline,
.fade-up {
opacity: 1 !important;
transform: none !important;
}
/* Fix form alignment */
.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  font-size: 14px;
  box-sizing: border-box;
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.btn-primary {
  width: 100%;
  padding: 14px;
  background: #c9a64b;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.btn-primary:hover {
  opacity: 0.9;
}

/* Form alignment fix */

.form-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 28px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
}

