/* =============================================
   PropNRI — Main Stylesheet
   Package: PropNRI WordPress Theme v1.0.0
============================================= */

/* =============================================
   CSS CUSTOM PROPERTIES
============================================= */
:root {
  --ink: #0D1B2A;
  --ink-light: #1E3A5F;
  --gold: #B8860B;
  --gold-light: #D4A843;
  --gold-pale: #F5EDD5;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --mist: #EEE8DC;
  --terracotta: #C4622D;
  --green: #2D6A4F;
  --text-body: #3D4852;
  --text-muted: #7A8694;
  --border: rgba(184,134,11,0.2);
  --shadow-gold: 0 4px 40px rgba(184,134,11,0.12);
  --shadow-ink: 0 8px 60px rgba(13,27,42,0.15);
  --radius: 4px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --nav-h: 76px;
  --section-pad: clamp(72px, 10vw, 120px);
}

/* =============================================
   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);
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* =============================================
   TYPOGRAPHY
============================================= */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}
.label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.body-lg { font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.75; }
.body-sm { font-size: 0.9rem; }

/* =============================================
   LAYOUT UTILITIES
============================================= */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-12 { gap: 12px; }
.gap-20 { gap: 20px; }
.gap-40 { gap: 40px; }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--white); border: 2px solid var(--gold); }
.btn-primary:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(184,134,11,0.35);
}
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--ink); border: 2px solid var(--white); }
.btn-white:hover { background: var(--gold-pale); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* =============================================
   NAVIGATION
============================================= */
#navbar {
  position: fixed;
  top: auto; left: 0; right: 0;
  bottom: auto;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
#navbar.scrolled {
  background: rgba(250,247,242,0.98);
  box-shadow: 0 2px 24px rgba(13,27,42,0.08);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark {
  width: 38px; height: 38px;
  background: var(--ink);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.nav-logo-mark::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--gold);
  border-radius: 0 0 4px 4px;
}
.nav-logo-mark span {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700; color: var(--white);
  line-height: 1; padding-bottom: 4px;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700; color: var(--ink);
  letter-spacing: -0.02em; line-height: 1;
}
.nav-logo-text .name span { color: var(--gold); }
.nav-logo-text .tagline {
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); font-family: var(--font-mono);
}
/* WordPress menu support */
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a,
.nav-links .menu-item > a {
  font-size: 0.88rem; font-weight: 500; color: var(--text-body);
  position: relative; transition: color 0.2s;
}
.nav-links a::after,
.nav-links .menu-item > a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width 0.25s;
}
.nav-links a:hover,
.nav-links .menu-item > a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links .menu-item > a:hover::after { width: 100%; }
/* WP current-menu-item */
.nav-links .current-menu-item > a { color: var(--gold); }
.nav-links .current-menu-item > a::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}
.nav-phone .dot {
  width: 7px; height: 7px; background: var(--green);
  border-radius: 50%; animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }

/* =============================================
   HERO
============================================= */
#hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184,134,11,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(30,58,95,0.6) 0%, transparent 50%),
    linear-gradient(160deg, #0D1B2A 0%, #162840 50%, #0D1B2A 100%);
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,134,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,134,11,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 2;
  min-height: calc(100vh - var(--nav-h));
  display: grid; grid-template-columns: 1fr 480px;
  align-items: center; gap: 60px; padding: 80px 0 60px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(184,134,11,0.12); border: 1px solid rgba(184,134,11,0.3);
  border-radius: 100px; padding: 7px 18px 7px 10px;
  margin-bottom: 32px; animation: fadeUp 0.8s ease 0.1s both;
}
.hero-badge-dot { width: 8px; height: 8px; background: var(--gold-light); border-radius: 50%; animation: pulse-dot 2s infinite; }
.hero-badge span { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); }
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  font-weight: 600; line-height: 1.06; letter-spacing: -0.025em;
  color: var(--white); margin-bottom: 28px; animation: fadeUp 0.8s ease 0.2s both;
}
.hero-h1 em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.8;
  color: rgba(255,255,255,0.68); max-width: 560px;
  margin-bottom: 44px; animation: fadeUp 0.8s ease 0.3s both;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.4s both; margin-bottom: 56px;
}
.hero-stats {
  display: flex; gap: 48px; animation: fadeUp 0.8s ease 0.5s both;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  color: var(--white); line-height: 1; margin-bottom: 4px;
}
.hero-stat-num span { color: var(--gold-light); }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.4; }
.hero-card-wrap { animation: fadeUp 0.8s ease 0.3s both; }
.hero-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(184,134,11,0.25);
  border-radius: 12px; backdrop-filter: blur(20px); overflow: hidden;
}
.hero-card-header {
  background: var(--gold); padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.hero-card-header h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--white); }
.hero-card-header .secure-badge { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: rgba(255,255,255,0.85); font-family: var(--font-mono); }
.hero-card-body { padding: 28px 24px; }
.form-field { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.6); margin-bottom: 7px;
  letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--font-mono);
}
.form-input, .form-select {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(184,134,11,0.2);
  border-radius: 4px; font-family: var(--font-body); font-size: 0.92rem;
  color: var(--white); outline: none; transition: all 0.2s;
  appearance: none; -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus, .form-select:focus {
  border-color: var(--gold); background: rgba(184,134,11,0.08);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.12);
}
.form-select option { background: var(--ink); color: var(--white); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-card-footer { padding: 0 24px 24px; }
.privacy-note {
  display: flex; align-items: flex-start; gap: 8px; margin-top: 14px;
  font-size: 0.75rem; color: rgba(255,255,255,0.35); line-height: 1.5;
}
.privacy-note svg { flex-shrink: 0; margin-top: 2px; }
.hero-float-1, .hero-float-2, .hero-float-3 { position: absolute; pointer-events: none; }
.hero-float-1 {
  top: 15%; right: 52%; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(184,134,11,0.06) 0%, transparent 70%);
  border-radius: 50%; animation: float1 8s ease-in-out infinite;
}
.hero-float-2 {
  bottom: 10%; left: 5%; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(30,58,95,0.4) 0%, transparent 70%);
  border-radius: 50%; animation: float2 6s ease-in-out infinite;
}
.hero-float-3 {
  top: 20%; left: 40%; font-family: var(--font-display);
  font-size: 18rem; font-weight: 700; color: rgba(255,255,255,0.018);
  line-height: 1; user-select: none; letter-spacing: -0.05em;
}
@keyframes float1 { 0%,100%{ transform:translate(0,0) scale(1); } 50%{ transform:translate(20px,-30px) scale(1.1); } }
@keyframes float2 { 0%,100%{ transform:translate(0,0); } 50%{ transform:translate(-15px,20px); } }
@keyframes fadeUp { from{ opacity:0; transform:translateY(28px); } to{ opacity:1; transform:translateY(0); } }

/* =============================================
   TRUST BAR
============================================= */
#trust-bar { background: var(--white); border-bottom: 1px solid var(--mist); padding: 20px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: nowrap; }
.trust-item { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.trust-icon { width: 36px; height: 36px; background: var(--gold-pale); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.trust-item-text { line-height: 1.3; }
.trust-item-text strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.trust-item-text span { font-size: 0.75rem; color: var(--text-muted); }
.trust-divider { width: 1px; height: 36px; background: var(--mist); }

/* =============================================
   PROBLEM
============================================= */
#problem { padding: var(--section-pad) 0; background: var(--cream); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.problem-label { margin-bottom: 18px; }
.problem-map-card {
  background: var(--white); border: 1px solid var(--mist);
  border-radius: 12px; padding: 32px; box-shadow: var(--shadow-ink); position: relative;
}
.problem-map-card::before {
  content: ''; position: absolute; top: -1px; left: 32px;
  width: 80px; height: 3px; background: var(--gold); border-radius: 0 0 4px 4px;
}
.pain-list { margin-top: 32px; }
.pain-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--mist); }
.pain-item:last-child { border-bottom: none; }
.pain-num {
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--gold);
  background: var(--gold-pale); width: 28px; height: 28px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.pain-text h4 { font-size: 0.95rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.pain-text p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.globe-visual {
  background: linear-gradient(135deg, var(--ink) 0%, #1E3A5F 100%);
  border-radius: 12px; padding: 40px; text-align: center;
  position: relative; overflow: hidden; margin-bottom: 24px;
}
.globe-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184,134,11,0.15) 0%, transparent 60%);
}
.globe-icon { font-size: 5rem; line-height: 1; position: relative; z-index: 1; animation: float1 5s ease-in-out infinite; }
.country-flags { display: flex; justify-content: center; gap: 12px; margin-top: 20px; position: relative; z-index: 1; }
.flag-chip {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px; padding: 6px 14px; font-size: 0.78rem;
  color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 6px; font-family: var(--font-mono);
}

/* =============================================
   SERVICES
============================================= */
#services { padding: var(--section-pad) 0; background: var(--white); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header .label { margin-bottom: 16px; display: block; }
.section-header p { margin-top: 16px; font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--mist); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-ink);
}
.service-card { background: var(--white); padding: 40px 32px; position: relative; transition: all 0.3s ease; cursor: default; }
.service-card:hover { background: var(--ink); z-index: 2; }
.service-card:hover * { color: rgba(255,255,255,0.9) !important; }
.service-card:hover .service-num { background: rgba(184,134,11,0.2) !important; color: var(--gold-light) !important; }
.service-card:hover .service-icon { background: rgba(184,134,11,0.15) !important; }
.service-card:hover .service-link { color: var(--gold-light) !important; }
.service-card:hover .service-tag { background: rgba(255,255,255,0.08) !important; color: rgba(255,255,255,0.5) !important; }
.service-num { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold); background: var(--gold-pale); padding: 4px 10px; border-radius: 3px; display: inline-block; margin-bottom: 20px; transition: all 0.3s; }
.service-icon { width: 48px; height: 48px; background: var(--cream); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.4rem; transition: all 0.3s; }
.service-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; line-height: 1.3; transition: color 0.3s; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; transition: color 0.3s; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.service-tag { font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-muted); background: var(--cream); padding: 4px 10px; border-radius: 3px; letter-spacing: 0.04em; transition: all 0.3s; }
.service-link { font-size: 0.85rem; font-weight: 500; color: var(--gold); display: flex; align-items: center; gap: 6px; transition: all 0.3s; }
.service-link:hover { gap: 10px; }

/* =============================================
   PROCESS
============================================= */
#process { padding: var(--section-pad) 0; background: var(--ink); position: relative; overflow: hidden; }
#process::before {
  content: 'PROCESS'; position: absolute; right: -40px; top: 50%;
  transform: translateY(-50%) rotate(90deg); font-family: var(--font-display);
  font-size: 14rem; font-weight: 700; color: rgba(255,255,255,0.025);
  letter-spacing: -0.05em; pointer-events: none; white-space: nowrap;
}
#process .label { color: var(--gold-light); }
#process .display-lg { color: var(--white); }
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  margin-top: 64px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 48px; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(184,134,11,0.4) 20%, rgba(184,134,11,0.4) 80%, transparent); z-index: 0;
}
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.process-step-num {
  width: 96px; height: 96px; background: rgba(184,134,11,0.1);
  border: 1.5px solid rgba(184,134,11,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; position: relative; transition: all 0.3s;
}
.process-step:hover .process-step-num { background: var(--gold); border-color: var(--gold); transform: scale(1.08); box-shadow: 0 0 40px rgba(184,134,11,0.4); }
.process-step-num .num-inner { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold-light); line-height: 1; transition: color 0.3s; }
.process-step:hover .num-inner { color: var(--white); }
.process-step-icon { position: absolute; bottom: -8px; right: -8px; width: 28px; height: 28px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.process-step h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.process-step p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.process-timeline { margin-top: 12px; font-family: var(--font-mono); font-size: 0.68rem; color: var(--gold); letter-spacing: 0.08em; }

/* =============================================
   WHY US
============================================= */
#why-us { padding: var(--section-pad) 0; background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-sticky { position: sticky; top: calc(var(--nav-h) + 40px); }
.why-list { margin-top: 40px; }
.why-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--mist); opacity: 0.5; transition: opacity 0.3s; }
.why-item.active, .why-item:hover { opacity: 1; }
.why-item-icon { width: 44px; height: 44px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; background: var(--white); border: 1px solid var(--mist); transition: all 0.3s; }
.why-item.active .why-item-icon, .why-item:hover .why-item-icon { background: var(--gold-pale); border-color: var(--border); }
.why-item-content h4 { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.why-item-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.comparison-table { background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid var(--mist); box-shadow: var(--shadow-gold); }
.comparison-header { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; padding: 16px 24px; background: var(--ink); }
.comparison-header span { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); text-align: center; }
.comparison-header span:first-child { text-align: left; color: rgba(255,255,255,0.8); }
.comparison-header .highlight-col { color: var(--gold-light) !important; }
.comparison-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; padding: 14px 24px; border-bottom: 1px solid var(--mist); align-items: center; transition: background 0.2s; }
.comparison-row:last-child { border-bottom: none; }
.comparison-row:hover { background: var(--cream); }
.comparison-row span { font-size: 0.85rem; color: var(--text-muted); text-align: center; display: flex; align-items: center; justify-content: center; }
.comparison-row span:first-child { text-align: left; justify-content: flex-start; font-weight: 500; color: var(--text-body); font-size: 0.88rem; }
.check { color: var(--green); font-size: 1rem; }
.cross { color: #DC2626; font-size: 1rem; }
.partial { color: var(--gold); font-size: 0.8rem; }
.comparison-row .highlight-col { background: rgba(184,134,11,0.05); }

/* =============================================
   COVERAGE
============================================= */
#coverage { padding: var(--section-pad) 0; background: var(--white); overflow: hidden; }
.states-scroll-wrap { overflow: hidden; margin-top: 48px; position: relative; }
.states-scroll-wrap::before, .states-scroll-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.states-scroll-wrap::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.states-scroll-wrap::after { right: 0; background: linear-gradient(270deg, var(--white), transparent); }
.states-track { display: flex; gap: 16px; animation: scroll-states 30s linear infinite; width: max-content; }
.states-track:hover { animation-play-state: paused; }
@keyframes scroll-states { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.state-chip { display: flex; align-items: center; gap: 8px; background: var(--cream); border: 1px solid var(--mist); border-radius: 100px; padding: 10px 20px; white-space: nowrap; transition: all 0.2s; cursor: default; }
.state-chip:hover { background: var(--gold-pale); border-color: var(--border); }
.state-chip .dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; }
.state-chip span { font-size: 0.85rem; font-weight: 500; color: var(--text-body); }
.coverage-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.coverage-stat { text-align: center; padding: 32px 24px; background: var(--cream); border-radius: 10px; border: 1px solid var(--mist); transition: all 0.3s; }
.coverage-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); border-color: var(--border); }
.coverage-stat-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 8px; }
.coverage-stat-num span { color: var(--gold); }
.coverage-stat p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* =============================================
   TESTIMONIALS
============================================= */
#testimonials { padding: var(--section-pad) 0; background: var(--cream); overflow: hidden; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial-card { background: var(--white); border: 1px solid var(--mist); border-radius: 12px; padding: 32px; position: relative; transition: all 0.3s; }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-ink); border-color: var(--border); }
.testimonial-card::before { content: '"'; font-family: var(--font-display); font-size: 5rem; line-height: 1; color: var(--gold-pale); position: absolute; top: 16px; right: 24px; font-weight: 700; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { color: var(--gold); font-size: 0.9rem; }
.testimonial-text { font-size: 0.92rem; line-height: 1.8; color: var(--text-body); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--mist); }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--gold-light); flex-shrink: 0; }
.author-info strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.author-subtext { display: block; font-size: 0.78rem; color: var(--gold); font-family: var(--font-mono); letter-spacing: 0.03em; margin-top: 2px; }
.author-info span { font-size: 0.78rem; color: var(--text-muted); }
.testimonial-tag { display: inline-block; font-family: var(--font-mono); font-size: 0.65rem; color: var(--gold); background: var(--gold-pale); padding: 3px 8px; border-radius: 3px; margin-bottom: 12px; letter-spacing: 0.06em; text-transform: uppercase; }

/* =============================================
   FAQ
============================================= */
#faq { padding: var(--section-pad) 0; background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start; }
.faq-sidebar { position: sticky; top: calc(var(--nav-h) + 40px); }
.faq-categories { margin-top: 32px; display: flex; flex-direction: column; gap: 4px; }
.faq-cat { padding: 10px 16px; border-radius: 6px; font-size: 0.88rem; font-weight: 500; color: var(--text-muted); cursor: pointer; transition: all 0.2s; text-align: left; display: flex; align-items: center; gap: 10px; }
.faq-cat:hover, .faq-cat.active { background: var(--gold-pale); color: var(--ink); }
.faq-cat.active { color: var(--gold); font-weight: 600; }
.faq-cat .cat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mist); flex-shrink: 0; }
.faq-cat.active .cat-dot { background: var(--gold); }
.faq-list { display: flex; flex-direction: column; gap: 1px; }
.faq-item { background: var(--cream); border-radius: 8px; overflow: hidden; margin-bottom: 8px; border: 1px solid var(--mist); transition: all 0.3s; }
.faq-item.open { border-color: var(--border); }
.faq-question { width: 100%; text-align: left; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; transition: background 0.2s; }
.faq-question:hover, .faq-item.open .faq-question { background: var(--white); }
.faq-q-text { font-size: 0.95rem; font-weight: 500; color: var(--ink); line-height: 1.4; }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%; background: var(--mist); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; color: var(--text-muted); transition: all 0.3s; }
.faq-item.open .faq-toggle { background: var(--gold); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 24px 24px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; background: var(--white); }

/* =============================================
   CONTACT
============================================= */
#contact { padding: var(--section-pad) 0; background: var(--ink); position: relative; overflow: hidden; }
#contact::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(184,134,11,0.08) 0%, transparent 50%),
              radial-gradient(ellipse 40% 50% at 10% 80%, rgba(30,58,95,0.5) 0%, transparent 40%);
}
.contact-grid { display: grid; grid-template-columns: 1fr 520px; gap: 80px; align-items: start; position: relative; z-index: 1; }
.contact-info .label { color: var(--gold-light); margin-bottom: 16px; display: block; }
.contact-info .display-lg { color: var(--white); margin-bottom: 20px; }
.contact-info > p { color: rgba(255,255,255,0.55); font-size: 1.05rem; line-height: 1.8; margin-bottom: 48px; }
.contact-channels { display: flex; flex-direction: column; gap: 16px; }
.contact-channel { display: flex; align-items: center; gap: 16px; padding: 18px 22px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; transition: all 0.3s; cursor: pointer; }
.contact-channel:hover { background: rgba(184,134,11,0.08); border-color: rgba(184,134,11,0.2); transform: translateX(6px); }
.channel-icon { width: 44px; height: 44px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.channel-icon.whatsapp { background: rgba(37,211,102,0.15); }
.channel-icon.email { background: rgba(184,134,11,0.15); }
.channel-icon.phone { background: rgba(30,58,95,0.4); }
.channel-text strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.channel-text span { font-size: 0.78rem; color: rgba(255,255,255,0.4); font-family: var(--font-mono); }
.contact-form-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(184,134,11,0.2); border-radius: 12px; overflow: hidden; backdrop-filter: blur(20px); }
.contact-form-header { padding: 24px 28px; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; }
.contact-form-header h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--white); }
.step-indicator { display: flex; gap: 6px; align-items: center; }
.step-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); transition: all 0.3s; }
.step-dot.active { background: var(--gold); width: 20px; border-radius: 4px; }
.contact-form-body { padding: 28px; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form-footer { padding: 0 28px 28px; display: flex; align-items: center; justify-content: space-between; }
.form-progress { font-family: var(--font-mono); font-size: 0.72rem; color: rgba(255,255,255,0.3); letter-spacing: 0.08em; }
.textarea { width: 100%; padding: 12px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(184,134,11,0.2); border-radius: 4px; font-family: var(--font-body); font-size: 0.92rem; color: var(--white); outline: none; transition: all 0.2s; resize: vertical; min-height: 100px; }
.textarea::placeholder { color: rgba(255,255,255,0.3); }
.textarea:focus { border-color: var(--gold); background: rgba(184,134,11,0.08); box-shadow: 0 0 0 3px rgba(184,134,11,0.12); }
.checkbox-field { display: flex; align-items: flex-start; gap: 10px; margin-top: 14px; }
.checkbox-field input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.checkbox-field label { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.5; cursor: pointer; }
.checkbox-field label a { color: var(--gold-light); text-decoration: underline; }

/* =============================================
   TEAM
============================================= */
#team { padding: var(--section-pad) 0; background: var(--cream); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.team-card { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid var(--mist); transition: all 0.3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-ink); }
.team-card-img { height: 200px; background: var(--ink); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.team-card-img .initials { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: rgba(255,255,255,0.1); position: absolute; bottom: -10px; right: 10px; line-height: 1; pointer-events: none; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: rgba(184,134,11,0.15); border: 2px solid rgba(184,134,11,0.3); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold-light); position: relative; z-index: 1; }
.team-card-info { padding: 20px; }
.team-card-info h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.team-card-info .role { font-size: 0.78rem; color: var(--gold); font-weight: 500; margin-bottom: 10px; font-family: var(--font-mono); }
.team-card-info p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.team-credentials { display: flex; flex-wrap: wrap; gap: 6px; }
.credential-chip { font-size: 0.68rem; color: var(--text-muted); background: var(--cream); padding: 3px 8px; border-radius: 3px; font-family: var(--font-mono); }

/* =============================================
   CTA BANNER
============================================= */
#cta-banner { padding: 80px 0; background: linear-gradient(135deg, var(--gold) 0%, #8B6914 100%); position: relative; overflow: hidden; }
#cta-banner::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 40px 40px; }
.cta-banner-inner { position: relative; z-index: 1; text-align: center; }
.cta-banner-inner h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 700; color: var(--white); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
.cta-banner-inner p { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 40px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
============================================= */
#footer { background: #080F18; padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo .mark { width: 36px; height: 36px; background: var(--gold); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); }
.footer-logo .name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); }
.footer-logo .name span { color: var(--gold); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.35); line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; border-radius: 6px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: rgba(255,255,255,0.4); transition: all 0.2s; }
.social-link:hover { background: rgba(184,134,11,0.15); border-color: rgba(184,134,11,0.3); color: var(--gold-light); }
.footer-col h5,
.footer-widget-title { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-col ul, .footer-col nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a, .footer-col nav ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul li a:hover, .footer-col nav ul li a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-bottom p a { color: var(--gold); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold-light); }
.disclaimer { margin-top: 24px; padding: 16px 20px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); border-radius: 6px; font-size: 0.75rem; color: rgba(255,255,255,0.2); line-height: 1.7; }

/* =============================================
   WHATSAPP FLOAT
============================================= */
.whatsapp-float { position: fixed; bottom: 32px; right: 32px; z-index: 999; display: flex; align-items: center; gap: 12px; background: #25D366; color: var(--white); padding: 14px 20px; border-radius: 100px; font-size: 0.88rem; font-weight: 600; box-shadow: 0 8px 32px rgba(37,211,102,0.4); transition: all 0.3s; animation: fadeUp 0.8s ease 1s both; }
.whatsapp-float:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
.whatsapp-float .wa-icon { font-size: 1.2rem; }

/* =============================================
   SCROLL ANIMATIONS
============================================= */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   MOBILE MENU
============================================= */
.mobile-menu { position: fixed; inset: 0; background: var(--white); z-index: 999; padding: calc(var(--nav-h) + 20px) 24px 24px; transform: translateX(100%); transition: transform 0.35s ease; display: flex; flex-direction: column; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-menu-links a { font-size: 1.5rem; font-family: var(--font-display); font-weight: 600; color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--mist); display: flex; align-items: center; justify-content: space-between; }
.mobile-menu-links a:hover { color: var(--gold); }
.mobile-menu-bottom { padding-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* =============================================
   WORDPRESS BLOG STYLES
============================================= */
.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4,.entry-content h5,.entry-content h6 { font-family: var(--font-display); color: var(--ink); margin: 1.6em 0 0.6em; line-height: 1.25; }
.entry-content p { margin-bottom: 1.4em; }
.entry-content ul,.entry-content ol { margin: 0 0 1.4em 1.5em; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content a { color: var(--gold); text-decoration: underline; }
.entry-content blockquote { border-left: 3px solid var(--gold); padding: 16px 20px; margin: 24px 0; background: var(--gold-pale); border-radius: 0 6px 6px 0; font-style: italic; color: var(--text-body); }
.entry-content img { border-radius: 8px; margin: 20px 0; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.entry-content th { background: var(--ink); color: var(--white); padding: 12px 16px; text-align: left; font-size: 0.85rem; font-family: var(--font-mono); letter-spacing: 0.06em; }
.entry-content td { padding: 12px 16px; border-bottom: 1px solid var(--mist); font-size: 0.9rem; }
.entry-content code { background: var(--cream); padding: 2px 6px; border-radius: 3px; font-family: var(--font-mono); font-size: 0.88em; color: var(--terracotta); }
.entry-content pre { background: var(--ink); color: var(--white); padding: 20px; border-radius: 8px; overflow-x: auto; margin: 20px 0; }
/* WP alignments */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 6px; }
/* Navigation pagination */
nav.navigation .nav-links, .entry-content .page-links { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 24px; }
nav.navigation .nav-links a, nav.navigation .nav-links span, .entry-content .page-links a, .entry-content .page-links span { display: inline-flex; align-items: center; justify-content: center; width: 70px; height: 20px; border-radius: 2px; font-size: 0.88rem; font-weight: 300; background: var(--white); border: 1px solid var(--mist); color: var(--text-body); transition: all 0.2s; }
nav.navigation .nav-links a:hover, .entry-content .page-links a:hover { background: var(--gold); border-color: var(--gold); }
nav.navigation .nav-links .current, .entry-content .page-links .current { background: var(--ink); border-color: var(--ink); color: var(--white); }
/* Widget styles */
.widget { margin-bottom: 32px; }
.widget-title { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--mist); }
.widget ul { display: flex; flex-direction: column; gap: 8px; }
.widget ul li a { font-size: 0.88rem; color: var(--text-body); transition: color 0.2s; }
.widget ul li a:hover { color: var(--gold); }
/* WooCommerce product card basics */
.propnri-wc-main { background: var(--cream); }
.propnri-product-card { background: var(--white); border: 1px solid var(--mist); border-radius: 12px; overflow: hidden; transition: all 0.3s; }
.propnri-product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-ink); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-card-wrap { max-width: 480px; }
  .hero-stats { gap: 32px; }
  .problem-grid { gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .why-grid { gap: 48px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding: 60px 0 40px; }
  .hero-h1 { font-size: clamp(2.4rem, 7vw, 4rem); }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-sticky { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .coverage-stats { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .faq-categories { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .coverage-stats { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .comparison-header, .comparison-row { grid-template-columns: 2fr 1fr 1fr; }
  .comparison-header span:nth-child(4), .comparison-row span:nth-child(4) { display: none; }
  .trust-bar-inner { justify-content: flex-start; }
  .trust-divider { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}
