/* ===== GLOBAL SECTION ===== */
.ve-hero,
.ve-services,
.ve-works,
.ve-flow,
.ve-price {
  padding: 72px 24px;
}

.project-header-video {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 20px;
}

.project-header-video__title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 3.5rem;
  color: var(--color-text);
  line-height: 1.1;
}

.project-header-video__meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.ve-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ve-card__num {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 0.72rem;
  color: #d1d5db;
  letter-spacing: 0.05em;
}

.ve-card__name {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 0.95rem;
  color: #111111;
}

.ve-card__desc {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.65;
}

/* ===== HERO ===== */
.ve-hero {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.ve-hero__inner {
  max-width: 680px;
  margin: 0 auto;
}

.ve-hero__eyebrow {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.ve-hero__title {
  font-family: var(--font-inter);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #111111;
  line-height: 1.15;
  margin-bottom: 20px;
}

.ve-hero__desc {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 28px;
}

.ve-hero__btn {
  display: inline-block;
  background: #111111;
  color: #ffffff;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 40px;
}

.ve-hero__btn:hover {
  background: #333333;
}

.ve-hero__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ve-hero__meta-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #f9f9f9;
}

.ve-hero__meta-label {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 0.7rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ve-hero__meta-val {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 0.875rem;
  color: #111111;
}

/* ===== SERVICES ===== */
.ve-services {
  background: #f9f9f9;
}

.ve-services__inner {
  max-width: 900px;
  margin: 0 auto;
}

.ve-services__label {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 0.72rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.ve-services__title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: #111111;
  margin-bottom: 32px;
}

.ve-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

/* ===== WORKS ===== */
.ve-works {
  background: #ffffff;
}

.ve-works__inner {
  max-width: 900px;
  margin: 0 auto;
}

.ve-works__label {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 0.72rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.ve-works__title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: #111111;
  margin-bottom: 32px;
}

.ve-works__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.ve-work-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}

.ve-work-card__video-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: #f3f4f6;
  overflow: hidden;
}

.ve-work-card__video-wrap--vertical {
  aspect-ratio: 9/16;
  max-width: 420px;
  margin: 0 auto;
}

.ve-work-card__video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.ve-work-card__info {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ve-work-card__tag {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 0.7rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ve-work-card__title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 0.9rem;
  color: #111111;
}

.ve-works__more {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.ve-works__more-btn {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 0.875rem;
  color: #111111;
  text-decoration: none;
  border: 1px solid #919191;
  border-radius: 8px;
  padding: 12px 24px;
  transition: background 0.2s;
}

.ve-works__more-btn:hover {
  color: #ffffff;
  background: #0e0e0e;
}

.ve-works__more-btn:active {
  background: #555555;
  transform: scale(0.98);
}

.ve-flow__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ve-flow__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ve-flow__row--center {
  justify-content: center;
}

.ve-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px 14px;
}

.ve-flow__num {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 0.65rem;
  color: #9a9ea3;
  letter-spacing: 0.05em;
}

.ve-flow__name {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 0.82rem;
  color: #111111;
  text-align: center;
}

.ve-flow__arrow {
  font-size: 0.85rem;
  color: #858585;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.ve-flow__step--optional {
  opacity: 0.5;
}

.ve-about {
  padding: 32px 0;
  border-top: 1px solid #e5e7eb;
  margin-top: 32px;
}

.ve-about__text {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.75;
}

.meta-item-video {
  text-align: right;
}

.meta-item-video__label {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 10px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.1rem;
}

.meta-item-video__value {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 15px;
  color: var(--color-text);
}

.ve-services__inner {
  max-width: 680px;
  margin: 0 auto;
}

.ve-services__label {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 0.72rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.ve-services__title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: #111111;
  margin-bottom: 24px;
}

.ve-services__grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ve-services__card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 20px;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ve-services__num {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 0.72rem;
  color: #969696;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.ve-services__name {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 0.95rem;
  color: #111111;
}

.ve-services__note {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 0.78rem;
  color: #8d929b;
  line-height: 1.65;
  margin-top: 16px;
}

.ve-services__footer {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.ve-services__consult {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 0.8rem;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  background-color: #1b1b1b;
  border-radius: 999px;
  padding: 10px 22px;
  letter-spacing: 0.05em;
  transition: background 0.2s;
  width: 100%;
  text-align: center;
}

.ve-services__consult:hover {
  background: #333333;
  color: #ffffff;
}

.ve-services__consult:active {
  background: #555555;
  transform: scale(0.98);
}
.ve-services__card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 20px;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  position: relative;
}

.ve-services__img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 160px;
  object-fit: cover;
  object-position: center;
  border-radius: 0 12px 12px 0;
}

.ve-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.ve-cta__title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #000000;
}

.ve-cta__desc {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 480px;
}

.ve-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0088cc;
  color: #ffffff;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 13px 22px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 8px;
  transition: background 0.2s;
}

.ve-cta__btn:active {
  transform: scale(0.98);
}

.ve-cta__btn:hover {
  opacity: 0.8;
}

@media (max-width: 480px) {
  .ve-hero__meta {
    grid-template-columns: 1fr;
  }

  .ve-works__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .project-header-video {
    grid-template-columns: 1fr;
  }
  .project-header-video__meta {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 35px;
  }
  .project-header-video__title {
    font-size: 2rem;
  }
  .meta-item-video {
    text-align: left;
  }
}