/* ==========================================================
   VELDRIC ASSET MANAGEMENT — PREMIUM PAGE DESIGN SYSTEM
   Uses: Template Swiper, WOW.js, Bootstrap grid, Jarallax
   + custom premium CSS with Veldric brand tokens
========================================================== */

/* ─── BRAND TOKENS ─── */
:root {
  --vp-cyan:     #6BF4FB;
  --vp-cyan-dim: #4DE8F0;
  --vp-dark:     #0B1D3A;
  --vp-dark2:    #163563;
  --vp-white:    #ffffff;
  --vp-off:      #F4F7FB;
  --vp-border:   rgba(11,29,58,.09);
  --vp-text:     #1F2937;
  --vp-muted:    #6B7280;
  --vp-ease:     cubic-bezier(.4,0,.2,1);

  /* ─── Sync with native template typography ─── */
  --vp-body-font:    var(--body-font, "Manrope", Helvetica, Arial, sans-serif);
  --vp-head-font:    var(--heading-font, "Inter Tight", Helvetica, Arial, sans-serif);
  --vp-body-size:    var(--body-font-size, 16px);
  --vp-body-color:   var(--body-font-color, #606060);
  --vp-body-weight:  var(--body-font-weight, 400);
  --vp-head-weight:  var(--heading-font-weight, 500);
}

/* ─── REVEAL ANIMATION ─── */
.vp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--vp-ease), transform .75s var(--vp-ease);
}
.vp-reveal.vp-visible { opacity: 1; transform: none; }
.vp-reveal[data-delay="1"] { transition-delay: .12s; }
.vp-reveal[data-delay="2"] { transition-delay: .24s; }
.vp-reveal[data-delay="3"] { transition-delay: .36s; }
.vp-reveal[data-delay="4"] { transition-delay: .48s; }

/* ─── SECTION SPACING ─── */
.vp-section          { padding: 100px 0; }
.vp-section.vp-white { background: #fff; }
.vp-section.vp-off   { background: var(--vp-off); }
.vp-section.vp-dark  {
  background: var(--vp-dark);
  position: relative; overflow: hidden;
}
.vp-section.vp-dark::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,244,251,.07) 0%, transparent 65%);
  pointer-events: none;
}
@media (max-width: 991px) { .vp-section { padding: 72px 0; } }
@media (max-width: 767px) { .vp-section { padding: 56px 0; } }

/* ─── CONTAINER ─── */
.vp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 575px) { .vp-wrap { padding: 0 18px; } }

/* ─── SECTION LABELS ─── */
.vp-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--vp-cyan);
  margin-bottom: 16px;
}
.vp-label::before {
  content: ''; width: 18px; height: 2px; background: var(--vp-cyan);
  border-radius: 2px;
}
.vp-label.vp-label--dark { color: var(--vp-dark); }
.vp-label.vp-label--dark::before { background: var(--vp-dark); }

/* ─── HEADINGS — inherit native template font system ─── */
.vp-h2 {
  font-family: var(--vp-head-font);
  font-size: var(--h2-font-size, clamp(28px, 3.5vw, 44px));
  font-weight: var(--vp-head-weight); color: var(--vp-dark);
  line-height: var(--h2-line-height, 1.18);
  letter-spacing: var(--h2-letter-spacing, -.5px);
  margin-bottom: 20px;
}
.vp-h2.vp-h2--white { color: #fff; }
.vp-h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--vp-cyan), var(--vp-cyan-dim));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vp-body {
  font-family: var(--vp-body-font);
  font-size: var(--vp-body-size);
  line-height: 1.82; color: var(--vp-body-color);
  max-width: 680px;
}
.vp-body.vp-body--white { color: rgba(255,255,255,.78); }
/* All vp-section inherits template typography */
.vp-section { font-family: var(--vp-body-font); font-size: var(--vp-body-size); color: var(--vp-body-color); }
.vp-section h3 { font-family: var(--vp-head-font); font-size: var(--h3-font-size, 26px); font-weight: var(--h3-font-weight, 600); line-height: var(--h3-line-height, 1.5); }
.vp-section h4 { font-family: var(--vp-head-font); font-size: var(--h4-font-size, 20px); font-weight: var(--h4-font-weight, 600); line-height: var(--h4-line-height, 1.6); }
.vp-section h5 { font-family: var(--vp-head-font); font-size: var(--h5-font-size, 18px); font-weight: var(--h5-font-weight, 600); }
.vp-section p  { font-family: var(--vp-body-font); font-size: var(--vp-body-size); line-height: 1.82; color: var(--vp-body-color); }

/* ─── SECTION HEADER ─── */
.vp-sec-head           { margin-bottom: 60px; }
.vp-sec-head--center   { text-align: center; }
.vp-sec-head--center .vp-body { margin-left: auto; margin-right: auto; }
@media (max-width: 767px) { .vp-sec-head { margin-bottom: 40px; } }

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.vp-hero {
  background: linear-gradient(135deg, #07152a 0%, var(--vp-dark2) 100%);
  padding: 160px 0 110px;
  position: relative; overflow: hidden;
}
.vp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 55%, rgba(107,244,251,.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(107,244,251,.05) 0%, transparent 50%);
  pointer-events: none;
}
.vp-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom right, rgba(0,0,0,.4) 0%, transparent 60%);
  -webkit-mask-image: linear-gradient(to bottom right, rgba(0,0,0,.4) 0%, transparent 60%);
  pointer-events: none;
}
.vp-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 30px;
}
.vp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 1023px) {
  .vp-hero-grid { grid-template-columns: 1fr; gap: 50px; }
}
.vp-hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px; border-radius: 30px;
  background: rgba(107,244,251,.12); border: 1px solid rgba(107,244,251,.25);
  color: var(--vp-cyan); font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px;
}
.vp-hero-badge i { font-size: 12px; }

.vp-hero-title {
  font-family: var(--vp-head-font);
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 900; color: #fff; line-height: 1.1;
  letter-spacing: -1px; margin-bottom: 24px;
}
.vp-hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--vp-cyan), var(--vp-cyan-dim));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vp-hero-desc {
  font-size: 16px; line-height: 1.82;
  color: rgba(255,255,255,.72); margin-bottom: 36px; max-width: 520px;
}
.vp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.vp-hero-btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 32px; border-radius: 50px;
  background: linear-gradient(135deg, var(--vp-cyan), var(--vp-cyan-dim));
  color: var(--vp-dark); font-weight: 700; font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(107,244,251,.32);
  transition: all .3s var(--vp-ease);
}
.vp-hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(107,244,251,.48);
  color: var(--vp-dark);
}
.vp-hero-btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.24);
  color: rgba(255,255,255,.85); font-weight: 600; font-size: 14px;
  text-decoration: none; backdrop-filter: blur(8px);
  transition: all .3s var(--vp-ease);
}
.vp-hero-btn-ghost:hover {
  border-color: var(--vp-cyan); color: var(--vp-cyan);
  transform: translateY(-3px);
}

/* Hero stats pills */
.vp-hero-stats {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.vp-hero-stat {
  flex: 1 1 140px; min-width: 140px;
  padding: 20px 22px; border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  transition: border-color .3s;
}
.vp-hero-stat:hover { border-color: rgba(107,244,251,.3); }
.vp-hero-stat__num {
  font-family: var(--vp-head-font);
  font-size: 32px; font-weight: 700; color: var(--vp-cyan);
  line-height: 1; margin-bottom: 6px; display: block;
}
.vp-hero-stat__label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}

/* Hero floating image */
.vp-hero-visual { position: relative; }
.vp-hero-img {
  width: 100%; border-radius: 20px;
  border: 2px solid rgba(107,244,251,.18);
  box-shadow: 0 30px 90px rgba(0,0,0,.4);
  animation: vpFloat 7s ease-in-out infinite;
  object-fit: cover; display: block;
}
@keyframes vpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.vp-hero-accent {
  position: absolute; bottom: -20px; right: -20px;
  padding: 18px 24px; border-radius: 14px;
  background: var(--vp-dark);
  border: 1px solid rgba(107,244,251,.25);
  backdrop-filter: blur(14px);
  text-align: center; min-width: 130px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.vp-hero-accent__num {
  font-family: var(--vp-head-font);
  font-size: 38px; font-weight: 700; color: var(--vp-cyan);
  line-height: 1; display: block;
}
.vp-hero-accent__txt {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  margin-top: 4px; display: block;
}
@media (max-width: 575px) {
  .vp-hero { padding: 120px 0 80px; }
  .vp-hero-inner { padding: 0 18px; }
  .vp-hero-stats { flex-direction: column; }
  .vp-hero-stat { flex: none; }
  .vp-hero-accent { bottom: -15px; right: -10px; }
}

/* ═══════════════════════════════════════════════
   OVERVIEW / SPLIT SECTION
═══════════════════════════════════════════════ */
.vp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
/* Prevent grid blowout — each column is capped at its fr fraction */
.vp-split > * { min-width: 0; }
@media (max-width: 991px) {
  .vp-split { grid-template-columns: 1fr; gap: 48px; }
}
.vp-split__img-wrap {
  position: relative;
  border-radius: 20px; overflow: hidden;
  width: 100%;
}
/* Constrain all img tags inside the image wrapper */
.vp-split__img-wrap img,
.vp-split__img {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: 20px; display: block;
  transition: transform .6s var(--vp-ease);
}
.vp-split__img-wrap:hover img,
.vp-split__img-wrap:hover .vp-split__img { transform: scale(1.04); }
@media (max-width: 575px) {
  .vp-split__img-wrap img, .vp-split__img { height: 300px; }
}
.vp-split__badge {
  position: absolute; bottom: 24px; left: 24px;
  padding: 14px 22px; border-radius: 12px;
  background: var(--vp-dark);
  border: 1px solid rgba(107,244,251,.22);
  backdrop-filter: blur(14px);
}
.vp-split__badge-num {
  font-family: var(--vp-head-font);
  font-size: 28px; font-weight: 700; color: var(--vp-cyan);
  line-height: 1; display: block;
}
.vp-split__badge-txt {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  display: block; margin-top: 3px;
}
.vp-checklist { list-style: none; padding: 0; margin: 0 0 32px; }
.vp-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--vp-text);
  padding: 9px 0; border-bottom: 1px solid var(--vp-border);
  font-weight: 500;
}
.vp-checklist li:last-child { border-bottom: none; }
.vp-checklist li i { color: var(--vp-cyan); font-size: 14px; margin-top: 3px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   APPROACH / PROCESS CARDS
═══════════════════════════════════════════════ */
.vp-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) { .vp-approach-grid { grid-template-columns: 1fr; } }
@media (max-width: 767px) { .vp-approach-grid { gap: 20px; } }

.vp-approach-card {
  padding: 44px 36px; border-radius: 18px;
  background: #fff;
  border: 1px solid var(--vp-border);
  position: relative; overflow: hidden;
  transition: all .4s var(--vp-ease);
}
.vp-approach-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(to bottom, var(--vp-cyan), var(--vp-cyan-dim));
  border-radius: 0 0 4px 0;
  transition: height .4s var(--vp-ease);
}
.vp-approach-card:hover::before { height: 100%; }
.vp-approach-card:hover {
  box-shadow: 0 24px 60px rgba(11,29,58,.10);
  transform: translateY(-8px);
}
.vp-approach-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--vp-cyan), var(--vp-cyan-dim));
  color: var(--vp-dark); font-family: var(--vp-head-font);
  font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(107,244,251,.28);
}
.vp-approach-card h4 {
  font-family: var(--vp-head-font);
  font-size: 20px; font-weight: 600; color: var(--vp-dark);
  margin-bottom: 14px; line-height: 1.3;
}
.vp-approach-card p {
  font-size: 14px; line-height: 1.78;
  color: var(--vp-muted); margin: 0;
}

/* ═══════════════════════════════════════════════
   PORTFOLIO / STRATEGY CARDS (2×2 grid)
═══════════════════════════════════════════════ */
.vp-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 767px) { .vp-portfolio-grid { grid-template-columns: 1fr; } }

.vp-portfolio-card {
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--vp-border);
  background: #fff;
  transition: all .4s var(--vp-ease);
}
.vp-portfolio-card:hover {
  box-shadow: 0 24px 64px rgba(11,29,58,.12);
  transform: translateY(-6px);
}
.vp-portfolio-card__img {
  height: 220px; position: relative; overflow: hidden;
}
.vp-portfolio-card__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,29,58,.70), rgba(22,53,99,.80));
}
.vp-portfolio-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--vp-ease);
}
.vp-portfolio-card:hover .vp-portfolio-card__img img { transform: scale(1.08); }
.vp-portfolio-card__icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  font-size: 48px; color: var(--vp-cyan);
  opacity: .85;
}
.vp-portfolio-card__body { padding: 30px 28px; }
.vp-portfolio-card__body h4 {
  font-family: var(--vp-head-font);
  font-size: 20px; font-weight: 600; color: var(--vp-dark);
  margin-bottom: 10px;
}
.vp-portfolio-card__body p {
  font-size: 14px; line-height: 1.75;
  color: var(--vp-muted); margin: 0;
}

/* ═══════════════════════════════════════════════
   VALUE CREATION ROWS (dark section)
═══════════════════════════════════════════════ */
.vp-value-list { display: flex; flex-direction: column; gap: 22px; }
.vp-value-item {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 36px 38px; border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: all .4s var(--vp-ease);
}
.vp-value-item:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(107,244,251,.22);
  transform: translateX(6px);
}
.vp-value-item__icon {
  width: 68px; height: 68px; min-width: 68px;
  border-radius: 50%;
  background: rgba(107,244,251,.12);
  border: 1px solid rgba(107,244,251,.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--vp-cyan); font-size: 26px;
  transition: all .3s var(--vp-ease);
}
.vp-value-item:hover .vp-value-item__icon {
  background: var(--vp-cyan); color: var(--vp-dark);
}
.vp-value-item__content h4 {
  font-family: var(--vp-head-font);
  font-size: 20px; font-weight: 600; color: #fff;
  margin-bottom: 10px; line-height: 1.3;
}
.vp-value-item__content p {
  font-size: 15px; line-height: 1.78;
  color: rgba(255,255,255,.72); margin: 0;
}
@media (max-width: 767px) {
  .vp-value-item { flex-direction: column; padding: 26px 24px; }
}

/* ═══════════════════════════════════════════════
   ADVANTAGES / 2×2 CARD GRID
═══════════════════════════════════════════════ */
.vp-adv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767px) { .vp-adv-grid { grid-template-columns: 1fr; } }

.vp-adv-card {
  padding: 40px 36px; border-radius: 16px;
  background: var(--vp-off);
  border-left: 4px solid var(--vp-cyan);
  transition: all .4s var(--vp-ease);
}
.vp-adv-card:hover {
  box-shadow: 0 16px 44px rgba(11,29,58,.08);
  transform: translateX(8px);
  background: #fff;
}
.vp-adv-card h4 {
  font-family: var(--vp-head-font);
  font-size: 19px; font-weight: 600; color: var(--vp-dark);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.vp-adv-card h4 i { color: var(--vp-cyan); font-size: 18px; }
.vp-adv-card p {
  font-size: 14px; line-height: 1.78;
  color: var(--vp-muted); margin: 0;
}

/* ═══════════════════════════════════════════════
   CTA STRIP — Light (footer is already dark)
═══════════════════════════════════════════════ */
.vp-cta-strip {
  background: #fff;
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
  border-top: 4px solid var(--vp-cyan);
}
.vp-cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(107,244,251,.07) 0%, transparent 55%);
  pointer-events: none;
}
.vp-cta-strip h2 {
  font-family: var(--vp-head-font);
  font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--vp-dark);
  margin-bottom: 14px; position: relative;
}
.vp-cta-strip p {
  font-size: 16px; line-height: 1.7;
  color: var(--vp-muted); max-width: 560px;
  margin: 0 auto 32px; position: relative;
}
/* Ghost button becomes dark-on-white inside the CTA strip */
.vp-cta-strip .vp-hero-btn-ghost {
  border-color: rgba(11,29,58,.22);
  color: var(--vp-dark);
  backdrop-filter: none;
}
.vp-cta-strip .vp-hero-btn-ghost:hover {
  border-color: var(--vp-cyan);
  color: var(--vp-dark);
  background: rgba(107,244,251,.08);
}

/* ═══════════════════════════════════════════════
   CONTACT ROW (dark bar)
═══════════════════════════════════════════════ */
.vp-contact-row {
  background: var(--vp-dark); padding: 60px 0;
  border-top: 1px solid rgba(107,244,251,.08);
}
.vp-contact-row .grid-divider .col-lg-4 + .col-lg-4 {
  border-left: 1px solid rgba(255,255,255,.07);
}

/* ═══════════════════════════════════════════════
   PHILOSOPHY CARDS (3 col)
═══════════════════════════════════════════════ */
.vp-phil-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 991px) { .vp-phil-grid { grid-template-columns: 1fr; } }

.vp-phil-card {
  padding: 42px 34px; border-radius: 18px;
  background: #fff; border: 1px solid var(--vp-border);
  transition: all .4s var(--vp-ease);
}
.vp-phil-card:hover {
  border-color: var(--vp-cyan);
  box-shadow: 0 20px 56px rgba(107,244,251,.10);
  transform: translateY(-8px);
}
.vp-phil-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(107,244,251,.10);
  display: flex; align-items: center; justify-content: center;
  color: var(--vp-cyan); font-size: 30px;
  margin-bottom: 24px; transition: all .4s var(--vp-ease);
}
.vp-phil-card:hover .vp-phil-icon {
  background: var(--vp-cyan); color: var(--vp-dark); transform: scale(1.1);
}
.vp-phil-card h4 {
  font-family: var(--vp-head-font);
  font-size: 20px; font-weight: 600; color: var(--vp-dark); margin-bottom: 12px;
}
.vp-phil-card p { font-size: 14px; line-height: 1.78; color: var(--vp-muted); margin: 0; }

/* ═══════════════════════════════════════════════
   STATS BAR (about page)
═══════════════════════════════════════════════ */
.vp-stats-bar {
  padding: 0; position: relative; z-index: 10;
  margin-top: -56px;
}
.vp-stats-card {
  background: #fff; border-radius: 20px;
  box-shadow: 0 24px 70px rgba(11,29,58,.13);
  padding: 50px 60px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  position: relative;
}
.vp-stats-card::before {
  content: '';
  position: absolute; top: 0; left: 40px; right: 40px; height: 4px;
  background: linear-gradient(90deg, var(--vp-cyan), var(--vp-cyan-dim));
  border-radius: 0 0 4px 4px;
}
.vp-stat-box { text-align: center; position: relative; }
.vp-stat-box:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 10%; height: 80%;
  width: 1px; background: var(--vp-border);
}
.vp-stat-num {
  font-family: var(--vp-head-font);
  font-size: 48px; font-weight: 700; color: var(--vp-dark);
  line-height: 1; margin-bottom: 10px;
}
.vp-stat-num .accent { color: var(--vp-cyan); }
.vp-stat-lbl {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--vp-muted);
}
@media (max-width: 1023px) { .vp-stats-card { grid-template-columns: repeat(2, 1fr); padding: 40px; } }
@media (max-width: 575px) {
  .vp-stats-card { grid-template-columns: 1fr; padding: 30px 24px; }
  .vp-stat-box:not(:last-child)::after { display: none; }
  .vp-stats-bar { margin-top: -30px; }
}

/* ═══════════════════════════════════════════════
   SECTORS SLIDER (about page)
═══════════════════════════════════════════════ */
.vp-sectors-slide {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px; padding: 56px 50px;
  display: block;
  min-height: 280px;
}
@media (max-width: 767px) {
  .vp-sectors-slide { padding: 36px 28px; min-height: auto; }
}
.vp-sectors-slide__icon-wrap { text-align: center; }
.vp-sectors-slide__icon {
  width: 130px; height: 130px; margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(107,244,251,.18), rgba(107,244,251,.08));
  display: flex; align-items: center; justify-content: center;
  color: var(--vp-cyan); font-size: 54px;
  box-shadow: 0 16px 48px rgba(107,244,251,.18);
}
.vp-sectors-slide__num {
  font-size: 12px; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,.35);
}
.vp-sectors-slide__content h3 {
  font-family: var(--vp-head-font);
  font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: #fff;
  margin-bottom: 18px;
}
.vp-sectors-slide__content p {
  font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.72); margin-bottom: 24px;
}
.vp-sectors-slide__features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px;
}
@media (max-width: 767px) {
  .vp-sectors-slide__features { grid-template-columns: 1fr; justify-items: center; }
}
.vp-sectors-slide__feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.85);
}
.vp-sectors-slide__feature i { color: var(--vp-cyan); font-size: 14px; }

.vp-sectors-nav {
  display: flex; justify-content: center; gap: 14px; margin-top: 44px;
}
.vp-sectors-nav button {
  width: auto; min-width: 52px; height: 52px; padding: 0 18px; border-radius: 50px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: var(--vp-cyan); font-size: 18px; cursor: pointer;
  transition: all .3s; display: flex; align-items: center; justify-content: center;
}
.vp-sectors-nav button:hover {
  background: var(--vp-cyan); color: var(--vp-dark); border-color: var(--vp-cyan);
}
.vp-sectors-pag { text-align: center; margin-top: 28px; }
.vp-sectors-pag .swiper-pagination-bullet {
  width: 10px; height: 10px;
  background: rgba(255,255,255,.25); opacity: 1; margin: 0 5px;
}
.vp-sectors-pag .swiper-pagination-bullet-active {
  background: var(--vp-cyan); width: 28px; border-radius: 5px;
}

/* ═══════════════════════════════════════════════
   VALUES LIST (about page)
═══════════════════════════════════════════════ */
.vp-values-list { display: flex; flex-direction: column; gap: 20px; }
.vp-value-row {
  display: flex; gap: 26px; align-items: flex-start;
  padding: 36px; border-radius: 16px;
  background: var(--vp-off);
  border-left: 4px solid var(--vp-cyan);
  transition: all .4s var(--vp-ease);
}
.vp-value-row:hover {
  box-shadow: 0 14px 38px rgba(11,29,58,.08);
  transform: translateX(8px); background: #fff;
}
.vp-value-row__icon {
  width: 58px; height: 58px; min-width: 58px; border-radius: 50%;
  background: #fff; box-shadow: 0 6px 18px rgba(0,0,0,.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--vp-cyan); font-size: 22px;
}
.vp-value-row__content h4 {
  font-family: var(--vp-head-font);
  font-size: 19px; font-weight: 600; color: var(--vp-dark); margin-bottom: 8px;
}
.vp-value-row__content p {
  font-size: 14px; line-height: 1.78; color: var(--vp-muted); margin: 0;
}
@media (max-width: 767px) {
  .vp-value-row { flex-direction: column; padding: 26px 22px; }
}

/* ═══════════════════════════════════════════════
   PLANS SECTION
═══════════════════════════════════════════════ */
.vp-plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch;
}
@media (max-width: 991px) { .vp-plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.vp-plan {
  padding: 40px 32px; border-radius: 20px;
  border: 1.5px solid var(--vp-border);
  background: #fff; transition: all .4s var(--vp-ease);
  position: relative;
}
.vp-plan:hover { box-shadow: 0 24px 64px rgba(11,29,58,.1); transform: translateY(-6px); }
.vp-plan--featured {
  background: linear-gradient(145deg, var(--vp-dark) 0%, var(--vp-dark2) 100%);
  border-color: var(--vp-cyan);
  box-shadow: 0 24px 64px rgba(107,244,251,.18);
  color: #fff;
}
.vp-plan--featured:hover { box-shadow: 0 32px 80px rgba(107,244,251,.28); }
.vp-plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--vp-cyan); color: var(--vp-dark);
  padding: 4px 18px; border-radius: 50px;
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  white-space: nowrap;
}
.vp-plan__tier { font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--vp-cyan); margin-bottom: 8px; }
.vp-plan__name {
  font-family: var(--vp-head-font);
  font-size: 24px; font-weight: 700; margin-bottom: 4px; color: inherit;
}
.vp-plan--featured .vp-plan__name { color: #fff; }
.vp-plan__roi {
  font-family: var(--vp-head-font);
  font-size: 48px; font-weight: 700; color: var(--vp-cyan);
  line-height: 1; margin: 16px 0 4px;
}
.vp-plan__roi-note { font-size: 12px; color: var(--vp-muted); margin-bottom: 8px; }
.vp-plan--featured .vp-plan__roi-note { color: rgba(255,255,255,.5); }
.vp-plan__min { font-size: 15px; font-weight: 700; color: var(--vp-dark); }
.vp-plan--featured .vp-plan__min { color: #fff; }
.vp-plan__min-note { font-size: 12px; color: var(--vp-muted); margin-bottom: 20px; }
.vp-plan--featured .vp-plan__min-note { color: rgba(255,255,255,.5); }
.vp-plan hr { border-color: var(--vp-border); margin: 18px 0; }
.vp-plan--featured hr { border-color: rgba(255,255,255,.12); }
.vp-plan ul { list-style: none; padding: 0; margin: 0 0 28px; }
.vp-plan ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; padding: 6px 0; color: var(--vp-text);
  border-bottom: 1px solid var(--vp-border);
}
.vp-plan--featured ul li { color: rgba(255,255,255,.85); border-bottom-color: rgba(255,255,255,.08); }
.vp-plan ul li:last-child { border-bottom: none; }
.vp-plan ul li i { color: var(--vp-cyan); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.vp-plan__cta { display: block; }

/* ═══════════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════════ */
.vp-faq-grid {
  display: grid; grid-template-columns: 340px 1fr; gap: 60px; align-items: start;
}
@media (max-width: 991px) { .vp-faq-grid { grid-template-columns: 1fr; } }
.vp-faq-sidebar { position: sticky; top: 110px; }
.vp-faq-sidebar h3 {
  font-family: var(--vp-head-font);
  font-size: 28px; font-weight: 700; color: var(--vp-dark); margin-bottom: 16px;
}
.vp-accordion-item {
  border: 1px solid var(--vp-border); border-radius: 12px; margin-bottom: 10px; overflow: hidden;
}
.vp-accordion-item .accordion-button {
  background: #fff; color: var(--vp-dark); font-weight: 600;
  border-radius: 12px; font-size: 15px; padding: 18px 22px;
}
.vp-accordion-item .accordion-button:not(.collapsed) {
  background: var(--vp-dark); color: #fff; border-radius: 12px 12px 0 0;
  box-shadow: none;
}
.vp-accordion-item .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.vp-accordion-item .accordion-body { font-size: 14px; line-height: 1.8; color: var(--vp-muted); }

/* ═══════════════════════════════════════════════
   CONTACT CARDS
═══════════════════════════════════════════════ */
.vp-contact-card {
  padding: 36px 30px; border-radius: 18px; background: #fff;
  border: 1px solid var(--vp-border); text-align: center;
  transition: all .4s var(--vp-ease);
}
.vp-contact-card:hover {
  box-shadow: 0 20px 56px rgba(107,244,251,.12);
  border-color: var(--vp-cyan); transform: translateY(-6px);
}
.vp-contact-card__icon {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 18px;
  background: rgba(107,244,251,.10);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--vp-cyan);
  transition: all .3s;
}
.vp-contact-card:hover .vp-contact-card__icon { background: var(--vp-cyan); color: var(--vp-dark); }

/* ═══════════════════════════════════════════════
   AUTH PAGES
═══════════════════════════════════════════════ */
.vp-auth {
  display: flex; min-height: 100vh; overflow: hidden;
}
.vp-auth__panel {
  position: relative; flex: 0 0 480px;
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px 52px; overflow: hidden;
}
.vp-auth__panel-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.vp-auth__panel-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(145deg, rgba(7,21,42,.94) 0%, rgba(22,53,99,.88) 100%);
}
.vp-auth__panel-content { position: relative; z-index: 2; }
.vp-auth__panel-foot {
  position: absolute; bottom: 28px; left: 52px; z-index: 2;
  font-size: 12px; color: rgba(255,255,255,.35);
}
.vp-auth__form {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 64px 48px; background: #fff; overflow-y: auto;
}
.vp-auth__form-inner { width: 100%; max-width: 460px; }
.vp-auth__form-inner .form-control,
.vp-auth__form-inner .form-select {
  border-radius: 10px; border-color: #e5e7eb; padding: 12px 16px; font-size: 15px;
}
.vp-auth__form-inner .form-control:focus,
.vp-auth__form-inner .form-select:focus {
  border-color: var(--vp-cyan); box-shadow: 0 0 0 3px rgba(107,244,251,.15);
}
@media (max-width: 991px) {
  .vp-auth__panel { display: none; }
  .vp-auth__form { padding: 48px 24px; }
}

/* ═══════════════════════════════════════════════
   APPROACH CARD BEM SUBCLASSES (used in sector pages)
═══════════════════════════════════════════════ */
.vp-approach-card__num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--vp-cyan), var(--vp-cyan-dim));
  color: var(--vp-dark); font-family: var(--vp-head-font);
  font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(107,244,251,.28);
}
.vp-approach-card__icon {
  font-size: 26px; color: var(--vp-cyan);
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .vp-approach-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .vp-approach-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   INVESTMENT PLAN CARDS (plans.php)
═══════════════════════════════════════════════ */
.vp-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 991px) { .vp-plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

.vp-plan-card {
  border-radius: 20px;
  border: 1px solid var(--vp-border);
  background: #fff;
  overflow: hidden;
  transition: all .4s var(--vp-ease);
  position: relative;
}
.vp-plan-card:hover {
  box-shadow: 0 24px 64px rgba(11,29,58,.10);
  transform: translateY(-8px);
}
.vp-plan-card--featured {
  background: var(--vp-dark);
  border-color: var(--vp-cyan);
  box-shadow: 0 20px 56px rgba(107,244,251,.18);
}
.vp-plan-card--featured:hover {
  box-shadow: 0 32px 80px rgba(107,244,251,.30);
}
.vp-plan-card__ribbon {
  position: absolute; top: 20px; right: -28px;
  background: var(--vp-cyan); color: var(--vp-dark);
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 36px;
  transform: rotate(45deg);
}
.vp-plan-card__header {
  padding: 32px 32px 0;
}
.vp-plan-card__badge {
  font-family: var(--vp-head-font);
  font-size: 22px; font-weight: 700;
  color: var(--vp-dark); margin-bottom: 4px;
}
.vp-plan-card--featured .vp-plan-card__badge { color: #fff; }
.vp-plan-card__min {
  font-size: 13px; color: var(--vp-muted);
}
.vp-plan-card--featured .vp-plan-card__min { color: rgba(255,255,255,.6); }
.vp-plan-card__min strong {
  font-size: 20px; font-weight: 800; color: var(--vp-dark);
}
.vp-plan-card--featured .vp-plan-card__min strong { color: var(--vp-cyan); }
.vp-plan-card__body {
  padding: 24px 32px 32px;
}
.vp-plan-card__return {
  font-size: 36px; font-weight: 900;
  color: var(--vp-cyan);
  margin-bottom: 4px; line-height: 1;
}
.vp-plan-card__return span {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--vp-muted); margin-top: 4px;
}
.vp-plan-card--featured .vp-plan-card__return span { color: rgba(255,255,255,.5); }
.vp-plan-card__features {
  list-style: none; padding: 0; margin: 20px 0 28px;
}
.vp-plan-card__features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--vp-body);
  padding: 9px 0; border-bottom: 1px solid var(--vp-border);
}
.vp-plan-card--featured .vp-plan-card__features li {
  color: rgba(255,255,255,.8);
  border-bottom-color: rgba(255,255,255,.08);
}
.vp-plan-card__features li:last-child { border-bottom: none; }
.vp-plan-card__features li i { color: var(--vp-cyan); font-size: 13px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   OFFICE CARD (contact.php)
═══════════════════════════════════════════════ */
.vp-office-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px 22px;
  border-radius: 14px;
  background: var(--vp-off);
  border-left: 3px solid var(--vp-cyan);
  margin-bottom: 14px;
  transition: transform .3s var(--vp-ease);
}
.vp-office-card__role {
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--vp-cyan); margin-bottom: 2px;
}
.vp-office-card__city {
  font-size: 16px; font-weight: 700;
  font-family: var(--vp-head-font);
  color: var(--vp-dark); margin-bottom: 4px;
}
.vp-office-card__addr {
  font-size: 13px; color: var(--vp-muted); line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   PHILOSOPHY CARD (about.php - inside Bootstrap cols)
═══════════════════════════════════════════════ */
.vp-phil-card {
  padding: 36px 32px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--vp-border);
  height: 100%;
  transition: all .4s var(--vp-ease);
}
.vp-phil-card:hover {
  box-shadow: 0 24px 60px rgba(11,29,58,.10);
  transform: translateY(-6px);
  border-color: var(--vp-cyan);
}
.vp-phil-card__icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(107,244,251,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--vp-cyan); font-size: 22px;
  margin-bottom: 20px;
  transition: background .3s;
}
.vp-phil-card:hover .vp-phil-card__icon {
  background: var(--vp-cyan);
  color: var(--vp-dark);
}
.vp-phil-card h4 {
  font-family: var(--vp-head-font);
  font-size: 20px; font-weight: 600; color: var(--vp-dark);
  margin-bottom: 14px; line-height: 1.3;
}
.vp-phil-card p {
  font-size: 14px; line-height: 1.78;
  color: var(--vp-muted); margin: 0;
}

/* ═══════════════════════════════════════════════
   AUTH PAGES (login, signup, forgot-password)
   — uses header.php + footer.php
═══════════════════════════════════════════════ */
.vp-auth-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.vp-auth-page__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(7,21,42,.92) 0%, rgba(11,29,58,.80) 100%);
  z-index: 1;
}
.vp-auth-page .container { position: relative; z-index: 2; }

.vp-auth-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.30);
}
.vp-auth-card__head {
  padding: 36px 32px 24px;
  border-bottom: 1px solid var(--vp-border);
}
.vp-auth-card__body {
  padding: 28px 32px;
}
.vp-auth-card__foot {
  padding: 20px 32px 24px;
  border-top: 1px solid var(--vp-border);
  background: var(--vp-off);
  text-align: center;
}

.vp-auth-label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--vp-dark) !important;
  margin-bottom: 6px !important;
}
.vp-auth-input {
  border-radius: 10px !important;
  border-color: #e5e7eb !important;
  padding: 11px 16px !important;
  font-size: 14px !important;
  transition: border-color .2s, box-shadow .2s !important;
}
.vp-auth-input:focus {
  border-color: var(--vp-cyan) !important;
  box-shadow: 0 0 0 3px rgba(107,244,251,.15) !important;
  outline: none !important;
}
@media (max-width: 576px) {
  .vp-auth-card__head, .vp-auth-card__body { padding-left: 20px; padding-right: 20px; }
  .vp-auth-card__foot { padding-left: 20px; padding-right: 20px; }
}

/* ═══════════════════════════════════════════════
   MOBILE RESPONSIVE CORRECTIONS
   — Image heights, subheader, portfolio carousel
═══════════════════════════════════════════════ */

/* ── Subheader jarallax: cap height on mobile so it doesn't stretch ── */
@media (max-width: 991px) {
  #subheader {
    padding: 120px 0 70px !important;
  }
  #subheader h1 {
    font-size: 2.8em !important;
  }
}
@media (max-width: 767px) {
  #subheader {
    padding: 110px 0 56px !important;
  }
  #subheader h1 {
    font-size: 2em !important;
  }
  /* Prevent jarallax background from rendering too tall on mobile */
  #subheader.jarallax {
    min-height: auto !important;
  }
  #subheader .jarallax-img {
    object-position: center top;
  }
}

/* ── vp-split image: reduce height on medium and small screens ── */
@media (max-width: 991px) {
  .vp-split__img-wrap img,
  .vp-split__img {
    height: 340px !important;
  }
}
@media (max-width: 767px) {
  .vp-split__img-wrap img,
  .vp-split__img {
    height: 240px !important;
  }
}
@media (max-width: 575px) {
  .vp-split__img-wrap img,
  .vp-split__img {
    height: 200px !important;
  }
}

/* ── Portfolio mobile carousel: fix dark space below card ── */
.swiper.vh-portfolio-swiper {
  padding-bottom: 40px;
}
.swiper.vh-portfolio-swiper .swiper-wrapper {
  align-items: flex-start;
}
/* Ensure the card's negative margin doesn't create overflow on mobile */
@media (max-width: 991px) {
  .swiper.vh-portfolio-swiper .swiper-slide {
    overflow: hidden;
    padding-bottom: 8px;
  }
  .swiper.vh-portfolio-swiper .hover { overflow: visible; }
}

/* ── Sectors slide swiper: ensure wrapper shrinks to content ── */
.swiper-container.vp-sectorsSwiper .swiper-wrapper,
.swiper.vp-sectorsSwiper .swiper-wrapper {
  align-items: flex-start;
}

/* ── General: all img tags within section should be max-width: 100% on mobile ── */
@media (max-width: 767px) {
  .vp-section img:not(.logo-footer):not(.logo-main):not(.logo-mobile) {
    max-width: 100% !important;
  }
}
