/* VOZ Office — Main Stylesheet
 * vozoffice.ch — German domiciliation vitrine
 * Brand: Navy #0B1F3A | Blue #2563EB | Steel #4B8FD4
 */

:root {
  --vo-navy:   #0B1F3A;
  --vo-blue:   #2563EB;
  --vo-steel:  #4B8FD4;
  --vo-light:  #F0F4FA;
  --vo-muted:  #6B7A92;
  --vo-white:  #FFFFFF;
  --vo-green:  #16A34A;
  --vo-radius: 12px;
  --vo-shadow: 0 4px 24px rgba(11,31,58,.10);
}

/* Reset / Base */
.vo-page { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--vo-navy); }
.vo-page *, .vo-page *::before, .vo-page *::after { box-sizing: border-box; }
.vo-wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.vo-section { padding: 80px 0; }
.vo-section--light { background: var(--vo-light); }
.vo-section--navy  { background: var(--vo-navy); color: var(--vo-white); }

/* Typography */
.vo-eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--vo-blue); margin-bottom: 12px; }
.vo-h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; margin: 0 0 20px; }
.vo-h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.2; margin: 0 0 16px; }
.vo-h3 { font-size: 1.2rem; font-weight: 700; margin: 0 0 10px; }
.vo-lead { font-size: 1.1rem; color: var(--vo-muted); line-height: 1.7; margin: 0 0 32px; }
.vo-text { font-size: .95rem; line-height: 1.7; color: var(--vo-muted); }
.vo-section--navy .vo-lead, .vo-section--navy .vo-text { color: rgba(255,255,255,.7); }
.vo-section--navy .vo-eyebrow { color: var(--vo-steel); }
.vo-center { text-align: center; }

/* Buttons */
.vo-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 8px; font-size: .95rem; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: all .2s; white-space: nowrap; }
.vo-btn--primary { background: var(--vo-blue); color: var(--vo-white); }
.vo-btn--primary:hover { background: #1D4ED8; color: var(--vo-white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.35); }
.vo-btn--ghost { background: transparent; color: var(--vo-navy); border: 2px solid var(--vo-navy); }
.vo-btn--ghost:hover { background: var(--vo-navy); color: var(--vo-white); }
.vo-btn--ghost-white { background: transparent; color: var(--vo-white); border: 2px solid rgba(255,255,255,.5); }
.vo-btn--ghost-white:hover { background: rgba(255,255,255,.12); color: var(--vo-white); }
.vo-btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.vo-btn svg { width: 18px; height: 18px; }

/* Hero */
.vo-hero { background: var(--vo-navy); color: var(--vo-white); padding: 100px 0 80px; position: relative; overflow: hidden; }
.vo-hero::after { content: ''; position: absolute; right: -120px; top: -60px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(37,99,235,.25) 0%, transparent 70%); pointer-events: none; }
.vo-hero__inner { position: relative; z-index: 1; }
.vo-hero__eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--vo-steel); margin-bottom: 16px; }
.vo-hero__title { font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 800; line-height: 1.1; margin: 0 0 24px; }
.vo-hero__title span { color: var(--vo-steel); }
.vo-hero__sub { font-size: 1.15rem; color: rgba(255,255,255,.75); line-height: 1.7; max-width: 560px; margin: 0 0 40px; }
.vo-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.vo-hero__badges { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.12); }
.vo-hero__badge { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: rgba(255,255,255,.8); }
.vo-hero__badge svg { width: 18px; height: 18px; color: var(--vo-steel); flex-shrink: 0; }

/* Cards */
.vo-card { background: var(--vo-white); border-radius: var(--vo-radius); box-shadow: var(--vo-shadow); padding: 32px; }
.vo-cards-grid { display: grid; gap: 24px; }
.vo-cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.vo-cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.vo-cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Steps */
.vo-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.vo-step { text-align: center; }
.vo-step__num { width: 52px; height: 52px; background: var(--vo-blue); color: var(--vo-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 800; margin: 0 auto 20px; }
.vo-step__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.vo-step__text { font-size: .9rem; color: var(--vo-muted); line-height: 1.65; }

/* Pricing */
.vo-price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 820px; margin: 0 auto; }
.vo-price-card { background: var(--vo-white); border-radius: var(--vo-radius); box-shadow: var(--vo-shadow); padding: 36px; border: 2px solid transparent; display: flex; flex-direction: column; }
.vo-price-card--featured { border-color: var(--vo-blue); }
.vo-price-badge { display: inline-block; background: var(--vo-blue); color: var(--vo-white); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; }
.vo-price-badge--hidden { visibility: hidden; }
.vo-price-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.vo-price-amount { font-size: 2.5rem; font-weight: 800; color: var(--vo-navy); margin-bottom: 4px; }
.vo-price-amount small { font-size: 1rem; font-weight: 400; color: var(--vo-muted); }
.vo-price-billing { font-size: .82rem; color: var(--vo-muted); margin-bottom: 24px; line-height: 1.5; }
.vo-price-list { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.vo-price-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--vo-muted); padding: 7px 0; border-bottom: 1px solid var(--vo-light); }
.vo-price-list li::before { content: ''; display: inline-block; width: 18px; height: 18px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2316a34a'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat; flex-shrink: 0; margin-top: 1px; }

/* Office cards grid */
.vo-offices-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.vo-office-card { background: var(--vo-white); border-radius: var(--vo-radius); box-shadow: var(--vo-shadow); padding: 24px; text-decoration: none; color: var(--vo-navy); display: flex; flex-direction: column; gap: 8px; transition: all .2s; border: 2px solid transparent; }
.vo-office-card:hover { border-color: var(--vo-blue); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(11,31,58,.14); }
.vo-office-card__canton { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--vo-muted); }
.vo-office-card__city { font-size: 1.15rem; font-weight: 700; }
.vo-office-card__addr { font-size: .82rem; color: var(--vo-muted); }
.vo-office-card__tax { font-size: .82rem; color: var(--vo-green); font-weight: 600; }
.vo-office-card__arrow { margin-top: auto; align-self: flex-end; color: var(--vo-blue); font-weight: 700; font-size: .85rem; }

/* Canton hub grid */
.vo-canton-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.vo-canton-card { background: var(--vo-white); border-radius: var(--vo-radius); box-shadow: var(--vo-shadow); padding: 28px; text-decoration: none; color: var(--vo-navy); transition: all .2s; border: 2px solid transparent; }
.vo-canton-card:hover { border-color: var(--vo-blue); transform: translateY(-2px); }
.vo-canton-card__name { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.vo-canton-card__count { font-size: .82rem; color: var(--vo-muted); }
.vo-canton-card__tax { font-size: .82rem; color: var(--vo-green); font-weight: 600; margin-top: 8px; }

/* Trust bar */
.vo-trust-bar { background: var(--vo-light); padding: 28px 0; border-top: 1px solid #DDE3EE; border-bottom: 1px solid #DDE3EE; }
.vo-trust-bar__inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.vo-trust-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 600; color: var(--vo-navy); }
.vo-trust-item svg { width: 22px; height: 22px; color: var(--vo-blue); }

/* Office single page */
.vo-office-hero { background: var(--vo-navy); color: var(--vo-white); padding: 80px 0 60px; }
.vo-office-hero__crumb { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.vo-office-hero__crumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.vo-office-hero__crumb a:hover { color: var(--vo-white); }
.vo-office-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 20px; }
.vo-office-meta__item { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: rgba(255,255,255,.8); }
.vo-office-meta__item svg { width: 16px; height: 16px; color: var(--vo-steel); }

.vo-office-body { display: grid; grid-template-columns: 1fr 360px; gap: 40px; padding: 60px 0; }
.vo-office-main {}
.vo-office-sidebar {}
.vo-order-card { background: var(--vo-white); border-radius: var(--vo-radius); box-shadow: var(--vo-shadow); padding: 32px; position: sticky; top: 24px; }
.vo-order-card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }

/* FAQ */
.vo-faq-list { max-width: 800px; margin: 0 auto; }
.vo-faq-item { border-bottom: 1px solid #DDE3EE; }
.vo-faq-item summary { padding: 20px 0; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 1rem; }
.vo-faq-item summary::-webkit-details-marker { display: none; }
.vo-faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--vo-blue); flex-shrink: 0; }
.vo-faq-item[open] summary::after { content: '−'; }
.vo-faq-item p { padding: 0 0 20px; color: var(--vo-muted); line-height: 1.7; font-size: .95rem; margin: 0; }

/* Nav / Header */
.vo-nav { background: var(--vo-navy); padding: 16px 0; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,.08); }
.vo-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.vo-nav__logo { font-size: 1.2rem; font-weight: 800; color: var(--vo-white); text-decoration: none; letter-spacing: -.02em; }
.vo-nav__logo span { color: var(--vo-steel); }
.vo-nav__links { display: flex; align-items: center; gap: 28px; }
.vo-nav__links a { color: rgba(255,255,255,.8); text-decoration: none; font-size: .9rem; transition: color .2s; }
.vo-nav__links a:hover { color: var(--vo-white); }
.vo-nav__cta { margin-left: 12px; }

/* Footer */
.vo-footer { background: var(--vo-navy); color: rgba(255,255,255,.7); padding: 60px 0 32px; }
.vo-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.vo-footer__brand { font-size: .95rem; line-height: 1.7; }
.vo-footer__brand-name { font-size: 1.3rem; font-weight: 800; color: var(--vo-white); margin-bottom: 12px; }
.vo-footer__brand-name span { color: var(--vo-steel); }
.vo-footer__col h4 { color: var(--vo-white); font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.vo-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.vo-footer__col ul a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .88rem; transition: color .2s; }
.vo-footer__col ul a:hover { color: var(--vo-white); }
.vo-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .82rem; }
.vo-footer__bottom a { color: rgba(255,255,255,.55); text-decoration: none; }
.vo-footer__bottom a:hover { color: var(--vo-white); }

/* Responsive */
@media (max-width: 900px) {
  .vo-steps { grid-template-columns: 1fr; gap: 24px; }
  .vo-price-grid { grid-template-columns: 1fr; }
  .vo-cards-grid--3 { grid-template-columns: 1fr; }
  .vo-cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .vo-office-body { grid-template-columns: 1fr; }
  .vo-footer__grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .vo-section { padding: 56px 0; }
  .vo-cards-grid--2 { grid-template-columns: 1fr; }
  .vo-cards-grid--4 { grid-template-columns: 1fr; }
  .vo-hero { padding: 72px 0 56px; }
  .vo-hero__ctas { flex-direction: column; }
  .vo-hero__badges { gap: 16px; }
  .vo-trust-bar__inner { gap: 24px; }
  .vo-nav__links { display: none; }
}

/* Utilities */
.vo-mt-8  { margin-top: 8px;  }
.vo-mt-16 { margin-top: 16px; }
.vo-mt-24 { margin-top: 24px; }
.vo-mt-40 { margin-top: 40px; }
.vo-mb-8  { margin-bottom: 8px;  }
.vo-mb-40 { margin-bottom: 40px; }
.vo-loading { text-align: center; padding: 40px; color: var(--vo-muted); }
.vo-check-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.vo-check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; color: var(--vo-muted); }
.vo-check-list li::before { content: ''; display: inline-block; width: 20px; height: 20px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%232563eb'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat; flex-shrink: 0; margin-top: 1px; }

/* Canton page specifics */
.vo-canton-hero { background: var(--vo-navy); color: var(--vo-white); padding: 72px 0 56px; }
.vo-canton-offices { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
