/* Vanzy inner pages — premium visual treatment (shared with homepage) */

.page-inner .site-header {
  position: fixed;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.page-inner .site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(77, 163, 255, 0.15);
  box-shadow: 0 4px 24px rgba(8, 20, 38, 0.08);
}

.page-inner .site-header:not(.scrolled) .logo-link { color: #fff; }
.page-inner .site-header:not(.scrolled) .nav-desktop a { color: rgba(255,255,255,0.88); }
.page-inner .site-header:not(.scrolled) .nav-desktop a:hover,
.page-inner .site-header:not(.scrolled) .nav-desktop a.active { color: #fff; background: rgba(255,255,255,0.12); }
.page-inner .site-header:not(.scrolled) .menu-toggle { background: rgba(255,255,255,0.12); }
.page-inner .site-header:not(.scrolled) .menu-toggle span { background: #fff; }
.page-inner .site-header:not(.scrolled) .btn-secondary { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.25); }

/* Inner hero */
.inner-hero {
  position: relative;
  min-height: 42vh;
  min-height: 42svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 48px;
}

.inner-hero__bg {
  position: absolute;
  inset: 0;
}

.inner-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.inner-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(8,20,38,0.88) 100%);
}

.inner-hero__content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-h) + 24px);
  color: #fff;
}

.inner-hero__content .section-label {
  color: var(--light-blue);
  margin-bottom: 10px;
}

.inner-hero__content h1 {
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  max-width: 640px;
  line-height: 1.1;
}

.inner-hero__content p {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  line-height: 1.55;
}

/* Page body sections */
.page-section {
  padding: 56px 0;
}

.page-section--alt {
  background: linear-gradient(180deg, #E8EEF8 0%, #DCE6F5 100%);
}

.page-section--tight {
  padding-top: 0;
}

/* Listing cards — see listings.css + vanzy-glass.css */

/* Steps */
.steps { gap: 16px; }

.step-item {
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Contact */
.contact-info-item {
  transition: transform 0.2s;
  border-radius: var(--radius-md);
  padding: 20px;
}

.contact-info-item:hover {
  transform: translateX(4px);
}

.contact-info-item .icon-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(77, 163, 255, 0.1);
  border-radius: 12px;
  color: var(--seed-blue);
}

.contact-info-item .icon-wrap svg {
  width: 22px;
  height: 22px;
}

.contact-form {
  border: none;
  box-shadow: 0 8px 32px rgba(8, 20, 38, 0.08);
  border-radius: var(--radius-lg);
}

/* Profile page */
.profile-hero {
  box-shadow: 0 8px 40px rgba(8, 20, 38, 0.2);
}

.stat-box {
  border: none;
  box-shadow: 0 2px 16px rgba(8, 20, 38, 0.06);
}

/* Plan highlight box */
.plan-highlight {
  background: linear-gradient(135deg, var(--navy-top), var(--navy-bottom));
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.plan-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(77,163,255,0.25) 0%, transparent 50%);
}

.plan-highlight > * { position: relative; }

.plan-highlight .section-label { color: var(--light-blue); }
.plan-highlight .section-title { color: #fff; }
.plan-highlight p { color: rgba(255,255,255,0.75); }
.plan-highlight ul { color: rgba(255,255,255,0.85); text-align: left; max-width: 360px; margin: 0 auto 28px; }

@media (min-width: 768px) {
  .inner-hero { min-height: 38vh; padding-bottom: 56px; }
}
