/* VSEP static page styles: about */
.vsep-about {
    --vsep-blue: #0E0E48;
    --vsep-red: #DF0A00;
    --vsep-graphite: #28334A;
    --vsep-gray: #6B7280;
    --vsep-white: #F8FAFC;
    --vsep-concrete: #E5E7EB;
  }

  .vsep-about {
    font-family: Arial, sans-serif;
    color: var(--vsep-graphite);
    background: var(--vsep-white);
  }

  .vsep-about * {
    box-sizing: border-box;
  }

  .vsep-about-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 56px 20px;
  }

  .vsep-about-hero {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 58px 46px;
    color: #fff;
    background:
      radial-gradient(circle at 88% 18%, rgba(223,10,0,0.34), transparent 28%),
      linear-gradient(135deg, rgba(14,14,72,0.98), rgba(40,51,74,0.94));
  }

  .vsep-about-hero::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -110px;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background: var(--vsep-red);
    opacity: 0.14;
  }

  .vsep-about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255,255,255,0.9);
  }

  .vsep-about-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--vsep-red);
  }

  .vsep-about-hero h1 {
    max-width: 860px;
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.03em;
  }

  .vsep-about-hero p {
    max-width: 780px;
    margin: 0 0 30px;
    color: rgba(255,255,255,0.86);
    font-size: 18px;
    line-height: 1.68;
  }

  .vsep-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .vsep-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
  }

  .vsep-about-btn--red {
    background: var(--vsep-red);
    color: #fff;
  }

  .vsep-about-btn--red:hover {
    filter: brightness(0.92);
  }

  .vsep-about-btn--light {
    background: #fff;
    color: var(--vsep-blue);
  }

  .vsep-about-btn--light:hover {
    background: var(--vsep-concrete);
  }

  .vsep-about-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
  }

  .vsep-about-fact {
    padding: 24px;
    border: 1px solid var(--vsep-concrete);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(14,14,72,0.06);
  }

  .vsep-about-fact strong {
    display: block;
    margin-bottom: 8px;
    color: var(--vsep-blue);
    font-size: 28px;
    line-height: 1;
  }

  .vsep-about-fact span {
    color: var(--vsep-gray);
    font-size: 15px;
    line-height: 1.45;
  }

  .vsep-about-title {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: end;
    margin-bottom: 30px;
  }

  .vsep-about-title h2 {
    margin: 0;
    color: var(--vsep-blue);
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.025em;
  }

  .vsep-about-title p {
    margin: 0;
    color: var(--vsep-gray);
    font-size: 17px;
    line-height: 1.68;
  }

  .vsep-about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .vsep-about-card {
    position: relative;
    min-height: 250px;
    padding: 26px;
    border: 1px solid var(--vsep-concrete);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 15px 38px rgba(14,14,72,0.055);
  }

  .vsep-about-card::before {
    content: "";
    display: block;
    width: 44px;
    height: 5px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: var(--vsep-red);
  }

  .vsep-about-card h3 {
    margin: 0 0 12px;
    color: var(--vsep-blue);
    font-size: 22px;
    line-height: 1.18;
  }

  .vsep-about-card p {
    margin: 0;
    color: var(--vsep-gray);
    font-size: 16px;
    line-height: 1.65;
  }

  .vsep-about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
  }

  .vsep-about-textbox {
    padding: 32px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--vsep-concrete);
    box-shadow: 0 15px 38px rgba(14,14,72,0.055);
  }

  .vsep-about-textbox h2,
  .vsep-about-textbox h3 {
    margin: 0 0 16px;
    color: var(--vsep-blue);
  }

  .vsep-about-textbox h2 {
    font-size: 32px;
    line-height: 1.15;
  }

  .vsep-about-textbox h3 {
    font-size: 24px;
    line-height: 1.2;
  }

  .vsep-about-textbox p {
    margin: 0 0 16px;
    color: var(--vsep-graphite);
    font-size: 16px;
    line-height: 1.72;
  }

  .vsep-about-textbox p:last-child {
    margin-bottom: 0;
  }

  .vsep-about-dark {
    background:
      linear-gradient(135deg, rgba(14,14,72,0.98), rgba(40,51,74,0.96));
    color: #fff;
  }

  .vsep-about-dark h2,
  .vsep-about-dark h3 {
    color: #fff;
  }

  .vsep-about-dark p {
    color: rgba(255,255,255,0.82);
  }

  .vsep-about-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
  }

  .vsep-about-list li {
    position: relative;
    padding-left: 28px;
    color: var(--vsep-graphite);
    line-height: 1.62;
  }

  .vsep-about-dark .vsep-about-list li {
    color: rgba(255,255,255,0.86);
  }

  .vsep-about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 11px;
    height: 11px;
    border-radius: 3px;
    background: var(--vsep-red);
  }

  .vsep-about-route {
    display: grid;
    gap: 14px;
  }

  .vsep-about-route-item {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px;
    border: 1px solid var(--vsep-concrete);
    border-radius: 18px;
    background: #fff;
  }

  .vsep-about-route-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--vsep-blue);
    color: #fff;
    font-weight: 800;
  }

  .vsep-about-route-item h3 {
    margin: 0 0 7px;
    color: var(--vsep-blue);
    font-size: 19px;
  }

  .vsep-about-route-item p {
    margin: 0;
    color: var(--vsep-gray);
    line-height: 1.6;
  }

  .vsep-about-cta {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 26px;
    align-items: center;
    padding: 40px;
    border-radius: 28px;
    background:
      radial-gradient(circle at 82% 20%, rgba(223,10,0,0.32), transparent 24%),
      var(--vsep-blue);
    color: #fff;
  }

  .vsep-about-cta h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 34px;
    line-height: 1.12;
  }

  .vsep-about-cta p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
  }

  .vsep-about-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  @media (max-width: 980px) {
    .vsep-about-hero {
      padding: 38px 24px;
    }

    .vsep-about-facts,
    .vsep-about-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vsep-about-title,
    .vsep-about-split,
    .vsep-about-cta {
      grid-template-columns: 1fr;
    }

    .vsep-about-cta-actions {
      flex-direction: row;
      flex-wrap: wrap;
    }
  }

  @media (max-width: 640px) {
    .vsep-about-section {
      padding: 38px 16px;
    }

    .vsep-about-facts,
    .vsep-about-grid {
      grid-template-columns: 1fr;
    }

    .vsep-about-textbox,
    .vsep-about-cta {
      padding: 26px 22px;
    }

    .vsep-about-route-item {
      grid-template-columns: 1fr;
    }
  }

/* VSEP static page styles: delivery */
.vsep-delivery {
    --vsep-blue: #0E0E48;
    --vsep-red: #DF0A00;
    --vsep-graphite: #28334A;
    --vsep-gray: #6B7280;
    --vsep-white: #F8FAFC;
    --vsep-concrete: #E5E7EB;
  }

  .vsep-delivery {
    font-family: Arial, sans-serif;
    color: var(--vsep-graphite);
    background: var(--vsep-white);
  }

  .vsep-delivery * {
    box-sizing: border-box;
  }

  .vsep-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 56px 20px;
  }

  .vsep-hero {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 58px 46px;
    color: #fff;
    background:
      radial-gradient(circle at 88% 18%, rgba(223,10,0,0.34), transparent 28%),
      linear-gradient(135deg, rgba(14,14,72,0.98), rgba(40,51,74,0.94));
  }

  .vsep-hero::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -120px;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background: var(--vsep-red);
    opacity: 0.14;
  }

  .vsep-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 8px 15px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255,255,255,0.9);
  }

  .vsep-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--vsep-red);
  }

  .vsep-hero h1 {
    max-width: 900px;
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.03em;
  }

  .vsep-hero p {
    max-width: 820px;
    margin: 0 0 30px;
    color: rgba(255,255,255,0.86);
    font-size: 18px;
    line-height: 1.68;
  }

  .vsep-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .vsep-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
  }

  .vsep-btn--red {
    background: var(--vsep-red);
    color: #fff;
  }

  .vsep-btn--red:hover {
    filter: brightness(0.92);
  }

  .vsep-btn--light {
    background: #fff;
    color: var(--vsep-blue);
  }

  .vsep-btn--light:hover {
    background: var(--vsep-concrete);
  }

  .vsep-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
  }

  .vsep-fact {
    padding: 24px;
    border: 1px solid var(--vsep-concrete);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(14,14,72,0.06);
  }

  .vsep-fact strong {
    display: block;
    margin-bottom: 8px;
    color: var(--vsep-blue);
    font-size: 28px;
    line-height: 1;
  }

  .vsep-fact span {
    color: var(--vsep-gray);
    font-size: 15px;
    line-height: 1.45;
  }

  .vsep-title {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: end;
    margin-bottom: 30px;
  }

  .vsep-title h2 {
    margin: 0;
    color: var(--vsep-blue);
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.025em;
  }

  .vsep-title p {
    margin: 0;
    color: var(--vsep-gray);
    font-size: 17px;
    line-height: 1.68;
  }

  .vsep-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .vsep-card {
    position: relative;
    padding: 26px;
    border: 1px solid var(--vsep-concrete);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 15px 38px rgba(14,14,72,0.055);
  }

  .vsep-card::before {
    content: "";
    display: block;
    width: 44px;
    height: 5px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: var(--vsep-red);
  }

  .vsep-card h3 {
    margin: 0 0 12px;
    color: var(--vsep-blue);
    font-size: 22px;
    line-height: 1.18;
  }

  .vsep-card p {
    margin: 0;
    color: var(--vsep-gray);
    font-size: 16px;
    line-height: 1.65;
  }

  .vsep-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
  }

  .vsep-box {
    padding: 32px;
    border: 1px solid var(--vsep-concrete);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 15px 38px rgba(14,14,72,0.055);
  }

  .vsep-box--dark {
    background: linear-gradient(135deg, rgba(14,14,72,0.98), rgba(40,51,74,0.96));
    color: #fff;
  }

  .vsep-box h2,
  .vsep-box h3 {
    margin: 0 0 16px;
    color: var(--vsep-blue);
  }

  .vsep-box--dark h2,
  .vsep-box--dark h3 {
    color: #fff;
  }

  .vsep-box h2 {
    font-size: 32px;
    line-height: 1.15;
  }

  .vsep-box h3 {
    font-size: 24px;
    line-height: 1.2;
  }

  .vsep-box p {
    margin: 0 0 16px;
    color: var(--vsep-graphite);
    font-size: 16px;
    line-height: 1.72;
  }

  .vsep-box--dark p {
    color: rgba(255,255,255,0.82);
  }

  .vsep-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
  }

  .vsep-list li {
    position: relative;
    padding-left: 28px;
    color: var(--vsep-graphite);
    line-height: 1.62;
  }

  .vsep-box--dark .vsep-list li {
    color: rgba(255,255,255,0.86);
  }

  .vsep-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 11px;
    height: 11px;
    border-radius: 3px;
    background: var(--vsep-red);
  }

  .vsep-steps {
    display: grid;
    gap: 14px;
  }

  .vsep-step {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px;
    border: 1px solid var(--vsep-concrete);
    border-radius: 18px;
    background: #fff;
  }

  .vsep-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--vsep-blue);
    color: #fff;
    font-weight: 800;
  }

  .vsep-step h3 {
    margin: 0 0 7px;
    color: var(--vsep-blue);
    font-size: 19px;
  }

  .vsep-step p {
    margin: 0;
    color: var(--vsep-gray);
    line-height: 1.6;
  }

  .vsep-transport {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .vsep-transport-item {
    padding: 22px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--vsep-concrete);
    box-shadow: 0 12px 30px rgba(14,14,72,0.05);
  }

  .vsep-transport-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--vsep-blue);
    font-size: 20px;
  }

  .vsep-transport-item span {
    color: var(--vsep-gray);
    line-height: 1.55;
  }

  .vsep-cta {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 26px;
    align-items: center;
    padding: 40px;
    border-radius: 28px;
    background:
      radial-gradient(circle at 82% 20%, rgba(223,10,0,0.32), transparent 24%),
      var(--vsep-blue);
    color: #fff;
  }

  .vsep-cta h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 34px;
    line-height: 1.12;
  }

  .vsep-cta p {
    margin: 0;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
  }

  .vsep-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  @media (max-width: 980px) {
    .vsep-hero {
      padding: 38px 24px;
    }

    .vsep-facts,
    .vsep-card-grid,
    .vsep-transport {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vsep-title,
    .vsep-split,
    .vsep-cta {
      grid-template-columns: 1fr;
    }

    .vsep-cta-actions {
      flex-direction: row;
      flex-wrap: wrap;
    }
  }

  @media (max-width: 640px) {
    .vsep-section {
      padding: 38px 16px;
    }

    .vsep-facts,
    .vsep-card-grid,
    .vsep-transport {
      grid-template-columns: 1fr;
    }

    .vsep-box,
    .vsep-cta {
      padding: 26px 22px;
    }

    .vsep-step {
      grid-template-columns: 1fr;
    }
  }

/* VSEP static page shared fixes */
.vsep-about,
.vsep-delivery {
  width: 100%;
}
.vsep-about a,
.vsep-delivery a {
  text-decoration: none;
}
.vsep-about a:hover,
.vsep-delivery a:hover {
  text-decoration: none;
}

/* VSEP static page legacy wrapper cleanup */
.info-page__title {
  display: none;
}
.info-page__text-content .vsep-about:first-child,
.info-page__text-content .vsep-delivery:first-child {
  margin-top: 0;
}
