body.body--velvet-gradient {
  background-attachment: fixed;
}

.corporate-hero {
  padding-top: var(--space-14);
}

.corporate-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.corporate-hero__content p {
  max-width: 40rem;
}

.corporate-hero__cta {
  margin-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.corporate-hero__media {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.corporate-hero__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.corporate-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.corporate-hero__quick-facts {
  font-size: var(--font-size-sm);
}

.corporate-hero__meta {
  margin-top: var(--space-6);
}

.corporate-section-header {
  max-width: 46rem;
  margin-bottom: var(--space-8);
}

.corporate-section-header h2 {
  margin-bottom: var(--space-3);
}

.corporate-section-header p {
  margin-bottom: 0;
}

.corporate-list {
  list-style: none;
}

.corporate-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: var(--space-2);
  color: var(--color-text-soft);
  font-size: var(--font-size-sm);
}

.corporate-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, var(--color-accent-gold-soft), var(--color-accent-burgundy));
  box-shadow: 0 0 8px var(--color-accent-gold);
}

.corporate-packages {
  align-items: stretch;
}

.corporate-packages__note {
  font-size: var(--font-size-sm);
}

.corporate-flow {
  align-items: flex-start;
  gap: var(--space-8);
}

.corporate-steps {
  list-style: none;
  counter-reset: corporate-steps;
}

.corporate-steps > li {
  counter-increment: corporate-steps;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(244, 245, 255, 0.08);
}

.corporate-steps > li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.corporate-steps h3 {
  font-family: var(--font-sans);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
  color: var(--color-text-soft);
}

.corporate-steps p {
  font-size: var(--font-size-sm);
}

.corporate-flow__aside {
  align-self: stretch;
}

.corporate-live {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.corporate-live__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.corporate-live__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.corporate-live__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.corporate-theme__grid {
  align-items: stretch;
}

.corporate-theme__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  align-items: center;
}

.corporate-connecting__cta {
  margin-top: var(--space-4);
}

.corporate-gallery__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: var(--space-6);
  align-items: stretch;
}

.corporate-gallery__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.corporate-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.corporate-gallery__content p {
  font-size: var(--font-size-sm);
}

.corporate-gallery__cta {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.corporate-testimonials__grid {
  align-items: stretch;
}

.corporate-testimonial blockquote {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
  margin-bottom: var(--space-4);
}

.corporate-testimonial__author {
  display: block;
  font-weight: 600;
}

.corporate-testimonial__company {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.corporate-testimonials__footer {
  text-align: center;
}

.corporate-faq__grid {
  gap: var(--space-6);
}

.corporate-faq__item {
  border-radius: var(--radius-md);
  padding: var(--space-4);
  background-color: rgba(5, 6, 10, 0.9);
  border: 1px solid rgba(244, 245, 255, 0.06);
}

.corporate-faq__item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  color: var(--color-text-soft);
}

.corporate-faq__item[open] {
  box-shadow: var(--shadow-soft);
}

.corporate-faq__item p {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
}

.corporate-faq__item summary::-webkit-details-marker {
  display: none;
}

.corporate-faq__item summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  color: var(--color-accent-gold);
}

.corporate-faq__item[open] summary::after {
  content: "–";
}

.corporate-faq__footer {
  text-align: center;
}

.corporate-final-cta__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.corporate-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 992px) {
  .corporate-hero__grid,
  .corporate-live,
  .corporate-gallery__wrapper {
    grid-template-columns: 1fr;
  }

  .corporate-hero {
    padding-top: var(--space-12);
  }
}

@media (max-width: 768px) {
  .corporate-section-header {
    margin-bottom: var(--space-6);
  }

  .corporate-hero__cta,
  .corporate-live__cta,
  .corporate-gallery__cta,
  .corporate-final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .corporate-gallery__wrapper {
    padding: var(--space-4);
  }
}
