/* Veridian Workplace Services — avaspass.xyz · Light premium B2B */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #f4f6f8;
  --bg-warm: #eef2f0;
  --surface: #ffffff;
  --surface-2: #f9fafb;
  --text: #4a5d6e;
  --heading: #0f1f2e;
  --muted: #7a8d9e;
  --border: #dde4ea;
  --border-light: #e8edf2;
  --accent: #0d6e6e;
  --accent-hover: #0a5858;
  --accent-light: #e6f3f3;
  --accent-glow: rgba(13, 110, 110, 0.12);
  --gold: #b8954a;
  --gold-light: #f5f0e4;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 20px 50px rgba(15, 31, 46, 0.08);
  --shadow-sm: 0 4px 16px rgba(15, 31, 46, 0.06);
  --max: 1180px;
  --header: 76px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-underline-offset: 3px; transition: color .2s; }
a:hover { color: var(--accent-hover); }
h1, h2, h3, h4 {
  color: var(--heading);
  line-height: 1.2;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
ul { color: var(--text); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff; padding: .75rem 1rem; z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header); gap: 1rem;
}
.logo {
  display: inline-flex; align-items: center; gap: .7rem;
  font-weight: 700; font-size: 1.05rem; color: var(--heading); text-decoration: none;
}
.logo__text em { font-style: normal; color: var(--accent); font-weight: 600; }
.logo__mark { width: 38px; height: 38px; border-radius: 10px; }
.nav-toggle {
  display: none; padding: .55rem .9rem; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--surface);
  font-family: var(--font); font-weight: 600; font-size: .85rem;
  color: var(--heading); cursor: pointer;
}
.nav-main ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .15rem 1.35rem; }
.nav-main a {
  color: var(--muted); text-decoration: none; font-weight: 500;
  font-size: .875rem; transition: color .2s;
}
.nav-main a:hover, .nav-main a[aria-current="page"] { color: var(--accent); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-main {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem; box-shadow: var(--shadow);
  }
  .nav-main.is-open { display: block; }
  .nav-main ul { flex-direction: column; gap: .75rem; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.6rem; border-radius: 999px;
  font-family: var(--font); font-weight: 600; font-size: .9rem;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s, transform .2s;
}
.btn--primary {
  background: var(--accent); color: #fff; border-color: var(--accent);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-hover); border-color: var(--accent-hover);
  color: #fff; transform: translateY(-1px);
}
.btn--outline {
  background: transparent; color: var(--heading);
  border-color: var(--border);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--ghost { background: var(--accent-light); color: var(--accent); border-color: transparent; }
.btn--ghost:hover { background: #d4ecec; }

/* Hero */
.hero {
  position: relative; padding: 3.5rem 0 4rem;
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-warm) 55%, var(--bg) 100%);
  overflow: hidden;
}
.hero__pattern {
  position: absolute; inset: 0; opacity: .45; pointer-events: none;
  background: url('../img/bg-pattern.svg') center/cover no-repeat;
}
.hero__grid {
  position: relative; display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 900px) {
  .hero { padding: 5rem 0 5.5rem; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}
.hero__badge {
  display: inline-block; padding: .4rem 1rem; margin-bottom: 1.25rem;
  background: var(--accent-light); color: var(--accent);
  border-radius: 999px; font-size: .8rem; font-weight: 600; letter-spacing: .02em;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.25rem); margin: 0 0 1.25rem; }
.hero__lead { font-size: 1.1rem; max-width: 34rem; color: var(--text); margin-bottom: 1.75rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.hero__meta {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  padding-top: 1.5rem; border-top: 1px solid var(--border);
  font-size: .85rem; color: var(--muted);
}
.hero__meta strong { display: block; color: var(--heading); font-size: .95rem; margin-bottom: .15rem; }
.hero__visual { position: relative; }
.hero__visual img { border-radius: var(--radius-xl); box-shadow: var(--shadow); border: 1px solid var(--border-light); }
.hero__float {
  position: absolute; bottom: -1rem; left: -1rem; right: 1rem;
  display: flex; gap: .75rem; flex-wrap: wrap;
}
.hero__float-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .75rem 1rem;
  box-shadow: var(--shadow-sm); font-size: .8rem;
}
.hero__float-card strong { display: block; color: var(--accent); font-size: 1.1rem; }

/* Logo bar */
.logo-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2.5rem;
  padding: 1.5rem 1.25rem; background: var(--surface);
  border-bottom: 1px solid var(--border); font-size: .8rem;
  font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em;
}

/* Ticker */
.ticker {
  overflow: hidden; background: var(--heading); color: rgba(255,255,255,.7);
  padding: .65rem 0; font-size: .75rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase;
}
.ticker__track {
  display: flex; gap: 3rem; width: max-content;
  animation: ticker 35s linear infinite;
}
.ticker span { white-space: nowrap; }
.ticker span::before { content: '◆'; margin-right: 1rem; color: var(--gold); font-size: .5rem; vertical-align: middle; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
}

/* Sections */
.section { padding: 4rem 0; }
.section--alt { background: var(--surface); }
.section--warm { background: var(--bg-warm); }
.section__head { text-align: center; max-width: 38rem; margin: 0 auto 2.75rem; }
.section__head h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin: 0 0 .75rem; }
.section__head p { color: var(--muted); font-size: 1.05rem; }
.section__label {
  display: inline-block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--accent);
  margin-bottom: .75rem;
}

/* Cards */
.card-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.card:hover {
  box-shadow: var(--shadow); transform: translateY(-3px);
  border-color: var(--accent-light);
}
.card__icon {
  width: 52px; height: 52px; margin-bottom: 1.25rem;
  padding: .75rem; background: var(--accent-light);
  border-radius: var(--radius); color: var(--accent);
}
.card h3 { font-family: var(--font); font-size: 1.1rem; font-weight: 700; margin: 0 0 .6rem; }
.card p { font-size: .925rem; color: var(--muted); margin-bottom: 1rem; }
.card__link {
  font-size: .875rem; font-weight: 600; color: var(--accent);
  text-decoration: none; display: inline-flex; align-items: center; gap: .35rem;
}
.card__link:hover { color: var(--accent-hover); }

/* Stats */
.stats {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.stat {
  text-align: center; padding: 1.75rem 1rem;
  background: var(--surface); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.stat strong {
  display: block; font-family: var(--font-display);
  font-size: 2.25rem; color: var(--accent); font-weight: 400;
}
.stat span { font-size: .85rem; color: var(--muted); }

/* Process steps */
.steps { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative; padding: 1.5rem;
  background: var(--surface); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: .8rem; font-weight: 700;
  margin-bottom: 1rem;
}
.step h3 { font-family: var(--font); font-size: 1rem; font-weight: 700; margin: 0 0 .5rem; }
.step p { font-size: .875rem; color: var(--muted); }

/* Two column */
.split {
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split__visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }

/* Testimonials */
.testimonial {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  position: relative;
}
.testimonial::before {
  content: '\201C'; position: absolute; top: .5rem; left: 1.25rem;
  font-family: var(--font-display); font-size: 4rem; color: var(--accent-light); line-height: 1;
}
.testimonial blockquote { margin: 0; padding-top: 1.5rem; font-size: 1rem; color: var(--text); }
.testimonial cite {
  display: block; margin-top: 1.25rem; font-style: normal;
  font-size: .875rem; color: var(--muted);
}
.testimonial cite strong { color: var(--heading); display: block; }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: .75rem; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-item summary {
  padding: 1.15rem 1.5rem; cursor: pointer; font-weight: 600;
  color: var(--heading); list-style: none; display: flex;
  justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.25rem; color: var(--accent); font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding: 0 1.5rem 1.25rem; font-size: .925rem; color: var(--muted); }

/* Tabs (interactive) */
.tabs { margin-top: 1rem; }
.tab-list {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border); padding-bottom: .75rem;
}
.tab-btn {
  padding: .55rem 1.1rem; border: 1px solid var(--border);
  border-radius: 999px; background: transparent;
  font-family: var(--font); font-size: .85rem; font-weight: 600;
  color: var(--muted); cursor: pointer; transition: all .2s;
}
.tab-btn[aria-selected="true"] {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.tab-panel { display: none; animation: fadeIn .3s ease; }
.tab-panel.is-active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* Pricing */
.pricing-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}
.price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; position: relative;
}
.price-card--featured {
  border-color: var(--accent); box-shadow: var(--shadow);
}
.price-card--featured::before {
  content: 'Most selected'; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%); background: var(--accent); color: #fff;
  font-size: .7rem; font-weight: 700; padding: .3rem .85rem;
  border-radius: 999px; text-transform: uppercase; letter-spacing: .05em;
}
.price-card h3 { font-family: var(--font); font-weight: 700; margin: 0 0 .5rem; }
.price-card .price {
  font-family: var(--font-display); font-size: 2.5rem;
  color: var(--heading); margin: .5rem 0 1rem;
}
.price-card .price small { font-size: 1rem; color: var(--muted); font-family: var(--font); }
.price-card ul { padding-left: 1.2rem; margin: 0 0 1.5rem; font-size: .9rem; }
.price-card li { margin-bottom: .4rem; }

/* Contact */
.contact-grid {
  display: grid; gap: 2rem;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.info-block {
  padding: 1.25rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.info-block h3 { font-family: var(--font); font-size: .95rem; font-weight: 700; margin: 0 0 .35rem; }
.info-block p, .info-block a { font-size: .9rem; margin: 0; }
.form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
}
.form-group { margin-bottom: 1.15rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--heading); margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .75rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font); font-size: .9rem;
  color: var(--heading); background: var(--surface-2); transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-row { display: grid; gap: 1rem; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-status { font-size: .875rem; color: var(--accent); margin-top: .75rem; min-height: 1.25rem; }

/* Page hero */
.page-hero {
  padding: 3rem 0; background: linear-gradient(180deg, var(--surface), var(--bg));
  border-bottom: 1px solid var(--border);
}
.page-hero__inner {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 768px) {
  .page-hero { padding: 4rem 0; }
  .page-hero__inner { grid-template-columns: 1fr auto; }
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.75rem); margin: 0 0 .5rem; }
.page-hero p { color: var(--muted); font-size: 1.05rem; max-width: 36rem; }
.page-hero__art { max-width: 320px; margin: 0 auto; }

/* Prose (legal) */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-family: var(--font); font-size: 1.25rem; font-weight: 700; margin: 2rem 0 .75rem; }
.prose h3 { font-family: var(--font); font-size: 1.05rem; font-weight: 600; margin: 1.5rem 0 .5rem; }
.prose p, .prose li { font-size: .95rem; }
.prose ul, .prose ol { margin: 0 0 1rem; padding-left: 1.4rem; }
.prose li { margin-bottom: .35rem; }

/* CTA band */
.cta-band {
  background: var(--heading); color: rgba(255,255,255,.8);
  padding: 3.5rem 0; text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.25rem); margin: 0 0 .75rem; }
.cta-band p { max-width: 32rem; margin: 0 auto 1.5rem; }
.cta-band .btn--primary { background: var(--gold); border-color: var(--gold); }
.cta-band .btn--primary:hover { background: #a6843f; border-color: #a6843f; }

/* Footer */
.site-footer {
  margin-top: auto; background: var(--heading); color: rgba(255,255,255,.65);
  padding: 3.5rem 0 1.5rem; font-size: .875rem;
}
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 2.5rem;
}
.footer-grid h3 {
  color: #fff; font-family: var(--font); font-size: .8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  margin: 0 0 1rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: .45rem; }
.footer-grid a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .8rem;
}
.site-footer .logo { color: #fff; margin-bottom: .75rem; }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 1rem 1.25rem; box-shadow: 0 -8px 30px rgba(0,0,0,.1);
  transform: translateY(100%); transition: transform .3s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
}
.cookie-banner p { margin: 0; font-size: .85rem; flex: 1; min-width: 200px; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(12px); transition: opacity .4s ease, transform .4s ease; }
.stagger.is-visible > *:nth-child(1) { transition-delay: .05s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: .1s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: .15s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: .2s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: .25s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: .3s; }
.stagger.is-visible > * { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * { opacity: 1; transform: none; transition: none; }
}

/* Counter animation target */
[data-count] { font-variant-numeric: tabular-nums; }

/* Industry chips */
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.chip {
  padding: .4rem .9rem; background: var(--accent-light);
  color: var(--accent); border-radius: 999px;
  font-size: .8rem; font-weight: 600;
}

/* Support hours table */
.hours-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.hours-table th, .hours-table td {
  padding: .65rem 1rem; text-align: left; border-bottom: 1px solid var(--border);
}
.hours-table th { font-weight: 600; color: var(--heading); }
