/* ============================================================
   virtual-office.css — PortfolixHub virtual office page styles
   ============================================================ */

/* ── PAGE WRAPPER ── */
.page { padding-top: 0; }

/* ── HERO STRIP ── */
.vo-hero {
  background: var(--black);
  padding: 80px var(--pad) 72px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Subtle grid texture */
.vo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Glowing orb */
.vo-hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

/* Eyebrow label */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow span {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, .25);
  display: block;
}

.vo-hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .95;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.vo-hero h1 em {
  font-style: normal;
  color: rgba(255, 255, 255, .25);
}

.vo-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.65;
  max-width: 540px;
  position: relative;
  z-index: 1;
}

/* ── MAIN CONTENT WRAPPER ── */
.main-content {
  position: relative;
  z-index: 1;
  background: var(--white);
}

/* ── WHAT'S INCLUDED ── */
.vo-features {
  padding: 80px var(--pad);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.vo-features h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 48px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  padding: 32px;
  border: 1.5px solid var(--g200);
  border-radius: 16px;
  background: var(--g50);
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.feature:hover {
  border-color: var(--black);
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1.5px solid var(--g200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--g600);
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: inherit;
}

.feature:hover .feature-icon {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.feature h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  color: var(--black);
}

.feature p {
  font-size: 13.5px;
  color: var(--g500);
  line-height: 1.6;
}

/* ── PRICING ── */
.vo-pricing {
  padding: 0 var(--pad) 80px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.vo-pricing h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 36px;
}

.vo-price-card {
  background: var(--black);
  border-radius: 20px;
  padding: 48px 52px;
  max-width: 620px;
  position: relative;
  overflow: hidden;
}

.vo-price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.vo-price-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.vo-price-amount {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.vo-price-amount span {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, .4);
  margin-left: 4px;
}

.vo-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.vo-features-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.vo-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, .45);
  font-weight: 600;
}

.vo-addons {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
  line-height: 1.6;
  margin-bottom: 28px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .04);
  border-radius: 10px;
  border-left: 2px solid rgba(255, 255, 255, .12);
  position: relative;
  z-index: 1;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  text-decoration: none;
  transition: background .2s, transform .25s, box-shadow .25s;
  cursor: none;
  position: relative;
  z-index: 1;
}

.cta-link:hover {
  background: var(--g100);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

/* ── SERVICES ── */
.vo-services {
  padding: 0 var(--pad) 80px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.vo-services h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.section-intro {
  font-size: 15px;
  color: var(--g500);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-box {
  padding: 32px;
  border: 1.5px solid var(--g200);
  border-radius: 16px;
  background: var(--g50);
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.service-box:hover {
  border-color: var(--black);
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.service-box h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 18px;
  color: var(--black);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--g200);
}

.service-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-box li {
  font-size: 13.5px;
  color: var(--g500);
  line-height: 1.55;
  padding-left: 20px;
  position: relative;
}

.service-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 600;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .features-list,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .features-list,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .vo-price-card {
    padding: 32px 28px;
  }

  .vo-features,
  .vo-pricing,
  .vo-services {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
