/* ===== Base Container ===== */

/* BASE */
body {
    margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #1e293b;
  -webkit-font-smoothing: antialiased;
}

/* HEADINGS */
h1, h2, h3, h4 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #0f172a;
}

/* HIERARCHY */
h1 {
  font-size: 44px;
  line-height: 1.2;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 15px;
}

/* PARAGRAPH */
p {
  font-size: 15px;
  color: #475569;
}

/* SMALL TEXT */
small {
  font-size: 13px;
  color: #64748b;
}

.vp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.vp-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.vp-header.scrolled {
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* ===== Header Layout ===== */
.vp-header .vp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* ===== Logo ===== */
.vp-header__logo img {
  height: 52px;
}

/* ===== Nav ===== */
.vp-header__menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.vp-header__menu a {
  text-decoration: none;
  font-size: 15px;
  color: #4a4a4a;
  font-weight: 500;
  transition: color 0.3s ease;
}

.vp-header__menu a:hover {
  color: #2F4EA2;
}

/* ===== CTA Button ===== */
.vp-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.vp-btn--primary {
  background: #2F4EA2;
  color: #ffffff;
}

.vp-btn--primary:hover {
  background: #243d85;
  transform: translateY(-2px);
}

/* ===== Mobile Toggle ===== */
.vp-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.vp-header__toggle span {
  width: 24px;
  height: 2px;
  background: #2F4EA2;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {

  .vp-header__nav {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: none;
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }

  .vp-header__nav.active {
    display: flex;
  }

  .vp-header__menu {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .vp-header__cta {
    display: none;
  }

  .vp-header__toggle {
    display: flex;
  }
}

/* ===== HERO SECTION ===== */
.vp-hero {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

.vp-hero__wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.vp-hero__content {
  flex: 1;
}

.vp-hero__title {
  font-size: 48px;
  font-weight: 700;
  color: #2F4EA2;
  line-height: 1.2;
  margin-bottom: 16px;
}

.vp-hero__subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin-bottom: 16px;
}

.vp-hero__desc {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
  max-width: 520px;
}

/* CTA */
.vp-hero__cta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.vp-btn--outline {
  border: 1px solid #2F4EA2;
  color: #2F4EA2;
}

.vp-btn--outline:hover {
  background: #2F4EA2;
  color: #fff;
}

/* TRUST */
.vp-hero__trust {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #444;
}

/* FORM CARD */
.vp-hero__form-card {
  flex: 0 0 380px;
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.vp-hero__form-card h3 {
  margin-bottom: 16px;
  font-size: 20px;
  color: #2F4EA2;
}

/* FORM */
.vp-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vp-form input {
  height: 48px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.vp-form input:focus {
  border-color: #2F4EA2;
  outline: none;
}

.vp-btn--full {
  width: 100%;
}

/* NOTE */
.vp-form__note {
  font-size: 13px;
  color: #777;
  margin-top: 10px;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {

  .vp-hero__wrapper {
    flex-direction: column;
  }

  .vp-hero__title {
    font-size: 34px;
  }

  .vp-hero__form-card {
    width: 100%;
  }

  .vp-hero__cta {
    flex-direction: column;
  }

  .vp-hero__trust {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 992px) {

  .vp-hero__cta {
    flex-direction: row;        /* ❗ keep side-by-side */
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;            /* wrap if needed */
  }

  .vp-btn {
    width: auto;                /* ❗ remove full width */
    padding: 8px 14px;          /* compact */
    font-size: 12.5px;
    border-radius: 6px;
  }

}
.vp-hero__trust {
  display: flex;
  gap: 24px;
  margin-top: 10px;
}

.vp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #444;
}

.vp-trust-item svg {
  width: 38px;
  height: 38px;
  color: #2F4EA2;
}

.vp-why {
  padding: 100px 0;
  background: #f7f8fa;
}

/* GRID */
.vp-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.vp-why__card {
  background: #ffffff;
  padding: 26px;
  border-radius: 14px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.vp-why__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* HIGHLIGHT CARD */
.vp-why__card--highlight {
  border-color: #2F4EA2;
  background: linear-gradient(180deg, #ffffff 0%, #f3f6ff 100%);
}

/* ICON */
.vp-why__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}

.vp-why__icon svg {
  width: 100%;
  height: 100%;
  color: #2F4EA2;
}

/* TEXT */
.vp-why__card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.vp-why__card p {
  font-size: 14px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .vp-why__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SECTION ===== */
.vp-services {
  padding: 100px 0;
  background: linear-gradient(180deg, #f3f6ff 0%, #ffffff 100%);
}

/* WRAPPER */
.vp-services__wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT SIDE */
.vp-services__intro {
  flex: 0 0 35%;
}

.vp-services__intro h2 {
  font-size: 32px;
  color: #2F4EA2;
  margin-bottom: 12px;
}

.vp-services__intro p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}

/* GRID */
.vp-services__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* CARD */
.vp-service-item {
  padding: 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid #eef0f4;
  transition: all 0.25s ease;
}

.vp-service-item:hover {
  background: #ffffff;
  border-color: #2F4EA2;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* TOP ROW */
.vp-service-item__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

/* ICON */
.vp-service-item__icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vp-service-item__icon svg {
  width: 100%;
  height: 100%;
}

/* TEXT */
.vp-service-item h3 {
  font-size: 16px;
  margin: 0;
}

.vp-service-item p {
  font-size: 13px;
  color: #666;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .vp-services__wrapper {
    flex-direction: column;
  }

  .vp-services__grid {
    grid-template-columns: 1fr;
  }
}


/* SECTION */
.vp-process {
  padding: 100px 0;
  background: #f8fafc;
}

/* FLOW */
.vp-process__flow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 50px;
  position: relative;
}

/* CONNECTOR LINE */
.vp-process__flow::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e2e8f0;
  z-index: 0;
}

/* STEP */
.vp-process-step {
  text-align: center;
  max-width: 180px;
  position: relative;
  z-index: 1;
}

/* ICON */
.vp-process-step__icon {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border: 2px solid #2F4EA2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
  transition: all 0.3s ease;
}

/* HOVER */
.vp-process-step:hover .vp-process-step__icon {
  background: #2F4EA2;
  color: #fff;
  transform: translateY(-4px);
}

/* TITLE */
.vp-process-step h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

/* TEXT */
.vp-process-step p {
  font-size: 13px;
  color: #64748b;
}

@media (max-width: 992px) {

  .vp-process__flow {
    flex-direction: column;
    gap: 30px;
  }

  .vp-process__flow::before {
    display: none;
  }

  .vp-process-step {
    max-width: 100%;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .vp-process-step__icon {
    margin: 0;
  }

}

/* ICON WRAPPER */
.vp-process-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 14px;
  transition: all 0.3s ease;
}

/* SVG */
.vp-process-step__icon svg {
  width: 26px;
  height: 26px;
}

/* HOVER */
.vp-process-step:hover .vp-process-step__icon {
  border-color: #2F4EA2;
  background: #f3f6ff;
  transform: translateY(-4px);
}

/* SECTION */
.vp-milestones {
  padding: 70px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
}

/* WRAPPER */
.vp-milestones__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 20px;
}

/* ITEM */
.vp-milestone {
  flex: 1;
  position: relative;
}

/* SEPARATOR LINE */
.vp-milestone:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

/* NUMBER */
.vp-milestone h3 {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

/* LABEL */
.vp-milestone p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* SECTION */
.vp-milestones {
  padding: 90px 0;
  background: radial-gradient(circle at top left, #1e293b, #0f172a);
}

/* GRID */
.vp-milestones__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* ITEM */
.vp-milestone {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  transition: all 0.3s ease;
}

/* GLASS EFFECT */
.vp-milestone {
  background: rgba(255,255,255,0.02);
}

/* SEPARATORS */
.vp-milestone:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

/* NUMBER */
.vp-milestone h3 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

/* LABEL */
.vp-milestone p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.3px;
}

/* HOVER EFFECT (SUBTLE PREMIUM) */
.vp-milestone:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .vp-milestones__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vp-milestone:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .vp-milestones__grid {
    grid-template-columns: 1fr;
  }

  .vp-milestone::after {
    display: none;
  }
}

/* ===== SECTION ===== */
.vp-pricing {
  padding: 100px 0;
  background: #f7f8fa;
}

/* TABLE WRAPPER */
.vp-pricing-table {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eaeaea;
}

/* ROW */
.vp-pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  padding: 18px 24px;
  background: #ffffff;
  transition: all 0.25s ease;
  border-bottom: 1px solid #f0f0f0;
}

.vp-pricing-row:last-child {
  border-bottom: none;
}

/* HOVER EFFECT */
.vp-pricing-row:hover {
  background: #f3f6ff;
}

/* COLUMN */
.vp-pricing-col {
  font-size: 14px;
  color: #555;
}

/* SERVICE COLUMN */
.vp-pricing-col--service {
  font-weight: 600;
  color: #111;
}

/* PRICE COLUMN */
.vp-pricing-col:nth-child(2) {
  font-weight: 600;
  color: #2F4EA2;
}

/* NOTE */
.vp-pricing__note {
  margin-top: 18px;
  font-size: 13px;
  color: #777;
  text-align: center;
}@media (max-width: 768px) {

  .vp-pricing-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .vp-pricing-col {
    font-size: 13px;
  }

  .vp-pricing-col--service {
    margin-bottom: 4px;
  }

}

/* ===== SECTION ===== */
.vp-testimonials {
  padding: 100px 0;
  background: #ffffff;
}

/* GRID */
.vp-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

/* CARD */
.vp-testimonial-card {
  background: #f7f8fa;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.vp-testimonial-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* TOP */
.vp-testimonial__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* AVATAR */
.vp-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2F4EA2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* NAME */
.vp-testimonial__top h4 {
  font-size: 15px;
  margin: 0;
}

.vp-testimonial__top span {
  font-size: 12px;
  color: #777;
}

/* STARS */
.vp-stars {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 10px;
}

/* TEXT */
.vp-testimonial-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .vp-testimonials__grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.vp-gallery {
  padding: 100px 0;
  background: #ffffff;
}

/* GRID */
.vp-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

/* ITEM */
.vp-gallery__item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.vp-gallery__item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* OVERLAY */
.vp-gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.1)
  );
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vp-gallery__overlay span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

/* HOVER */
.vp-gallery__item:hover img {
  transform: scale(1.06);
}

.vp-gallery__item:hover .vp-gallery__overlay {
  opacity: 1;
}

@media (max-width: 992px) {
  .vp-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .vp-gallery__grid {
    grid-template-columns: 1fr;
  }

  .vp-gallery__item img {
    height: 220px;
  }
}
/* ===== SECTION ===== */
.vp-faq {
  padding: 100px 0;
  background: #f7f8fa;
}

/* LIST */
.vp-faq__list {
  max-width: 800px;
  margin: 40px auto 0;
}

/* ITEM */
.vp-faq__item {
  border-bottom: 1px solid #eaeaea;
}

/* QUESTION */
.vp-faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* ICON */
.vp-faq__icon {
  width: 18px;
  height: 18px;
  position: relative;
}

.vp-faq__icon::before,
.vp-faq__icon::after {
  content: "";
  position: absolute;
  background: #2F4EA2;
}

.vp-faq__icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
}

.vp-faq__icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transition: all 0.3s ease;
}

/* ACTIVE ICON */
.vp-faq__item.active .vp-faq__icon::after {
  height: 0;
}

/* ANSWER */
.vp-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.vp-faq__answer p {
  padding-bottom: 16px;
  font-size: 14px;
  color: #666;
}

.vp-final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #2F4EA2 0%, #1f3575 100%);
  color: #fff;
}

.vp-final-cta__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.vp-final-cta__content h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.vp-final-cta__content p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  max-width: 480px;
}

/* BUTTONS */
.vp-btn--light {
  background: #ffffff;
  color: #2F4EA2;
}

.vp-btn--ghost {
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
}

/* RIGHT STATS */
.vp-final-cta__stats {
  display: flex;
  gap: 40px;
}

.vp-final-cta__stats strong {
  display: block;
  font-size: 22px;
}

.vp-final-cta__stats span {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

/* MOBILE */
@media (max-width: 992px) {
  .vp-final-cta__wrapper {
    flex-direction: column;
    text-align: center;
  }

  .vp-final-cta__stats {
    justify-content: center;
  }
}

.vp-footer {
  background: #0b1220;
  color: #cbd5e1;
  padding: 80px 0 0;
}

/* GRID */
.vp-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr 1fr;
  gap: 40px;
}

/* BRAND */
.vp-footer__brand h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
}

.vp-footer__brand p {
  font-size: 14px;
  line-height: 1.6;
}

.vp-footer__contact {
  margin-top: 16px;
  font-size: 13px;
}

/* HEADINGS */
.vp-footer__col h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  position: relative;
}

/* subtle underline */
.vp-footer__col h4::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #2F4EA2;
  position: absolute;
  left: 0;
  bottom: -6px;
}

/* LINKS */
.vp-footer ul {
  list-style: none;
  padding: 0;
}

.vp-footer li {
  margin-bottom: 8px;
}

.vp-footer a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 14px;
  position: relative;
  transition: all 0.25s ease;
}

/* HOVER ANIMATION */
.vp-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: #2F4EA2;
  transition: width 0.25s ease;
}

.vp-footer a:hover {
  color: #fff;
}

.vp-footer a:hover::after {
  width: 100%;
}

/* AREAS */
.vp-footer__areas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 12px;
  font-size: 13px;
  color: #94a3b8;
}

/* BOTTOM */
.vp-footer__bottom {
  margin-top: 60px;
  border-top: 1px solid #1e293b;
  padding: 20px 0;
}

.vp-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* CREDIT */
.vp-footer__credit a {
  color: #fff;
  font-weight: 500;
}

.vp-footer__credit a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .vp-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .vp-footer__grid {
    grid-template-columns: 1fr;
  }

  .vp-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .vp-footer__areas {
    grid-template-columns: 1fr;
  }
}

/* CONTAINER *//* CTA CONTAINER */
.vp-sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;

  display: flex;
  gap: 12px;

  width: calc(100% - 32px);
  max-width: 420px;

  padding: 10px;
  border-radius: 60px;

  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);

  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

  transition: all 0.3s ease;
}

/* BUTTON */
.vp-sticky-btn {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px;
  border-radius: 40px;

  font-size: 14px;
  font-weight: 500;
  text-decoration: none;

  transition: all 0.25s ease;
}

/* CALL BUTTON */
.vp-sticky-btn--call {
  background: #2F4EA2;
  color: #fff;
  box-shadow: 0 4px 12px rgba(47,78,162,0.4);
}

/* QUOTE BUTTON */
.vp-sticky-btn--quote {
  background: #fff;
  color: #2F4EA2;
  border: 1px solid #e2e8f0;
}

/* ICON */
.vp-sticky-icon {
  width: 22px;
  height: 22px;
}

.vp-sticky-icon svg {
  width: 100%;
  height: 100%;
}

/* ACTIVE TAP */
.vp-sticky-btn:active {
  transform: scale(0.96);
}

/* HIDDEN STATE */
.vp-sticky-cta.hide {
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
}

/* DESKTOP HIDE */
@media (min-width: 992px) {
  .vp-sticky-cta {
    display: none;
  }
}
/* CONTAINER */
.vp-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HERO */
.vp-about-hero {
  padding: 100px 0 60px;
  text-align: center;
}

.vp-about-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.vp-about-hero p {
  max-width: 600px;
  margin: auto;
  color: #64748b;
}

/* FOUNDER */
.vp-founder {
  padding: 80px 0;
}

.vp-founder__wrap {
  display: flex;
  align-items: center;
  gap: 50px;
}

.vp-founder__img img {
  width: 300px;
  border-radius: 14px;
}

.vp-founder__content h2 {
  margin-bottom: 10px;
}

.vp-founder__content p {
  line-height: 1.7;
  color: #475569;
}

/* VISION */
.vp-vm {
  padding: 80px 0;
  background: #f8fafc;
}

.vp-vm__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.vp-vm__card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* WHY */
.vp-about-why {
  padding: 80px 0;
  text-align: center;
}

.vp-about-why p {
  max-width: 700px;
  margin: auto;
  color: #64748b;
}

/* STATS */
.vp-about-stats {
  padding: 80px 0;
  background: #0f172a;
  color: #fff;
}

.vp-about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.vp-stat h3 {
  font-size: 28px;
}

.vp-stat p {
  font-size: 13px;
  opacity: 0.7;
}

/* CTA */
.vp-about-cta {
  padding: 80px 0;
  text-align: center;
}

.vp-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #2F4EA2;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .vp-founder__wrap {
    flex-direction: column;
    text-align: center;
  }

  .vp-vm__grid {
    grid-template-columns: 1fr;
  }

  .vp-about-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

}


/* HERO */
.vp-contact-hero {
  padding: 90px 0 40px;
  text-align: center;
}

.vp-contact-hero h1 {
  font-size: 34px;
}

/* GRID */
.vp-contact__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  padding: 60px 0;
}

/* FORM */
.vp-contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.vp-contact-form input,
.vp-contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.vp-form-row {
  display: flex;
  gap: 10px;
}

.vp-contact-form button {
  width: 100%;
  padding: 14px;
  background: #2F4EA2;
  color: #fff;
  border: none;
  border-radius: 8px;
}

/* INFO */
.vp-contact-info {
  padding: 20px;
}

.vp-contact-item {
  margin-bottom: 14px;
  font-size: 14px;
}

/* QUICK */
.vp-contact-quick {
  padding: 60px 0;
  background: #f8fafc;
}

.vp-contact-quick__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vp-contact-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-decoration: none;
  color: #111;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.25s;
}

.vp-contact-card:hover {
  transform: translateY(-4px);
}

/* MAP */
.vp-contact-map iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* CTA */
.vp-contact-cta {
  padding: 60px 0;
  text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {

  .vp-contact__grid {
    grid-template-columns: 1fr;
  }

  .vp-contact-quick__grid {
    grid-template-columns: 1fr;
  }

  .vp-form-row {
    flex-direction: column;
  }

}


/* HERO */
.vp-policy-hero {
  padding: 80px 0 40px;
  text-align: center;
}

.vp-policy-hero h1 {
  font-size: 32px;
}

.vp-policy-hero p {
  color: #64748b;
}

/* CONTENT */
.vp-policy {
  padding: 40px 0 80px;
}

.vp-policy-box {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.vp-policy-box h2 {
  margin-top: 20px;
  font-size: 18px;
}

.vp-policy-box p {
  margin-top: 8px;
  line-height: 1.7;
  color: #475569;
}

.vp-policy-update {
  margin-top: 30px;
  font-size: 12px;
  color: #94a3b8;
}