:root {
  --orange: #B35000;
  --orange-light: #D4600A;
  --charcoal: #111111;
  --slate: #1B2A3B;
  --slate-mid: #243447;
  --warm-gray: #F5F3F0;
  --off-white: #FAF9F7;
  --white: #FFFFFF;
  --border: #E2DDD8;
  --text-primary: #1a1a1a;
  --text-secondary: #555;
  --text-muted: #696969;
  --zoom-blue: #2D8CFF;
  --zoom-blue-dark: #1a6fd4;
  --panopto-red: #C0392B;
  --panopto-red-dark: #a33025;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--text-primary); background: var(--white); overflow-x: hidden; }

/* ── SYSTEM BAR ── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #071b3e 0%, #111111 50%, #0a1635 100%);
  color: #fff;
  padding: 4.5rem 3rem 4rem;
}
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
@media (max-width: 780px) { .hero-inner { grid-template-columns: 1fr; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(45,140,255,0.2); border: 1px solid rgba(45,140,255,0.4);
  color: #7ec8ff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em;
  padding: 0.3rem 0.8rem; border-radius: 20px; margin-bottom: 1rem;
  text-transform: uppercase;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; }
.hero-title { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; line-height: 1.1; margin-bottom: 0.75rem; }
.hero-title .accent-zoom { color: #7ec8ff; }
.hero-title .accent-panopto { color: #f9a89a; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 540px; line-height: 1.65; margin-bottom: 1.75rem; }
.hero-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.hero-chip {
  padding: 0.3rem 0.85rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8);
}
.hero-stats { display: flex; flex-direction: column; gap: 0.75rem; }
.hero-stat {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 1rem 1.5rem; text-align: center; min-width: 120px;
}
.hero-stat-num { font-size: 1.7rem; font-weight: 800; line-height: 1; margin-bottom: 0.3rem; }
.hero-stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.6); line-height: 1.3; }
.stat-zoom { color: #7ec8ff; }
.stat-panopto { color: #f9a89a; }
.stat-canvas { color: #a0e8b0; }

/* ── QUICK LAUNCH ── */
.quick-launch {
  background: var(--charcoal);
  padding: 1rem 2rem;
  border-bottom: 1px solid #222;
}
.ql-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.ql-label { color: rgba(255,255,255,0.62); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-right: 0.5rem; }
.ql-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.85rem; border-radius: 6px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.82); font-size: 0.78rem; font-weight: 500;
  text-decoration: none; transition: all 0.15s;
}
.ql-btn:hover { background: rgba(255,255,255,0.13); color: #fff; border-color: rgba(255,255,255,0.25); }
.ql-icon { font-size: 1rem; }

/* ── SECTION CONTAINER ── */
.section { padding: 4rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-alt { background: var(--warm-gray); }
.section-dark { background: var(--charcoal); color: #fff; }

.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.6rem;
}
.section-title { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 0.75rem; line-height: 1.2; }
.section-sub { font-size: 1rem; color: var(--text-secondary); line-height: 1.65; max-width: 640px; }

/* ── DUAL SERVICE CARDS ── */
.service-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 740px) { .service-cards { grid-template-columns: 1fr; } }
.service-card {
  background: var(--white); border-radius: 12px; padding: 2rem;
  border: 1px solid var(--border);
  border-top: 4px solid transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.service-card.zoom-card { border-top-color: var(--zoom-blue); }
.service-card.panopto-card { border-top-color: var(--panopto-red); }
.service-card-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.service-card-title { font-size: 1.35rem; font-weight: 800; margin-bottom: 0.4rem; }
.service-card-sub { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.25rem; }
.service-tag {
  display: inline-block; padding: 0.2rem 0.7rem; border-radius: 20px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}
.tag-zoom { background: rgba(45,140,255,0.1); color: var(--zoom-blue); }
.tag-panopto { background: rgba(192,57,43,0.1); color: var(--panopto-red); }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.service-features li { display: flex; gap: 0.6rem; font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }
.service-features li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }
.service-card-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.btn-zoom {
  padding: 0.55rem 1.1rem; border-radius: 6px;
  background: var(--zoom-blue); color: #fff;
  text-decoration: none; font-size: 0.83rem; font-weight: 600;
  transition: background 0.2s;
}
.btn-zoom:hover { background: var(--zoom-blue-dark); }
.btn-panopto {
  padding: 0.55rem 1.1rem; border-radius: 6px;
  background: var(--panopto-red); color: #fff;
  text-decoration: none; font-size: 0.83rem; font-weight: 600;
  transition: background 0.2s;
}
.btn-panopto:hover { background: var(--panopto-red-dark); }
.btn-outline-sm {
  padding: 0.55rem 1.1rem; border-radius: 6px;
  border: 1px solid var(--border); color: var(--text-secondary);
  text-decoration: none; font-size: 0.83rem; font-weight: 500;
  transition: all 0.15s;
}
.btn-outline-sm:hover { border-color: var(--orange); color: var(--orange); }

/* ── FEATURE GRIDS ── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.feature-card {
  background: var(--white); border-radius: 10px; padding: 1.4rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.15s, transform 0.15s;
}
.feature-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-1px); }
.feature-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.feature-title { font-size: 0.93rem; font-weight: 700; margin-bottom: 0.4rem; }
.feature-desc { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.55; }
.feature-badge {
  display: inline-block; padding: 0.15rem 0.5rem; border-radius: 4px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.badge-zoom { background: rgba(45,140,255,0.1); color: var(--zoom-blue); }
.badge-panopto { background: rgba(192,57,43,0.1); color: var(--panopto-red); }

/* ── INTEGRATION BAND ── */
.integration-band {
  background: linear-gradient(135deg, var(--slate) 0%, #1a3a52 100%);
  padding: 3.5rem 2rem;
  color: #fff;
}
.integration-inner { max-width: 1100px; margin: 0 auto; }
.integration-title { font-size: 1.55rem; font-weight: 800; margin-bottom: 0.6rem; }
.integration-sub { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.65; max-width: 600px; margin-bottom: 2rem; }
.integration-flow { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.int-node {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 0.75rem 1.25rem;
}
.int-node-icon { font-size: 1.4rem; }
.int-node-label { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.9); line-height: 1.2; }
.int-node-sub { font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 0.1rem; }
.int-arrow {
  font-size: 1.1rem; color: rgba(255,255,255,0.35);
  flex-shrink: 0;
}
.integration-notes { margin-top: 2rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.int-note {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 1rem 1.25rem;
}
.int-note-title { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 0.35rem; }
.int-note-desc { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ── GETTING STARTED ── */
.gs-tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; }
.gs-tab {
  padding: 0.5rem 1.25rem; border-radius: 6px; cursor: pointer;
  font-size: 0.85rem; font-weight: 600;
  background: var(--warm-gray); color: var(--text-secondary);
  border: 1px solid var(--border); transition: all 0.15s;
}
.gs-tab.active { background: var(--orange); color: #fff; border-color: var(--orange); }
.gs-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.gs-step {
  background: var(--white); border-radius: 10px; padding: 1.5rem;
  border: 1px solid var(--border); position: relative;
}
.gs-step-num {
  width: 32px; height: 32px; border-radius: 50%; background: var(--orange);
  color: #fff; font-weight: 800; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem;
}
.gs-step-title { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.4rem; }
.gs-step-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55; }
.gs-tip {
  background: rgba(45,140,255,0.07); border: 1px solid rgba(45,140,255,0.2);
  border-radius: 8px; padding: 1rem 1.25rem;
  font-size: 0.84rem; color: var(--text-primary); line-height: 1.55;
  margin-top: 1.5rem;
}
.gs-tip strong { color: #0E5AB3; }

/* ── TRAINING GRID ── */
.training-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.training-card {
  background: var(--white); border-radius: 10px; padding: 1.4rem;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.training-icon { font-size: 1.5rem; }
.training-title { font-size: 0.9rem; font-weight: 700; }
.training-desc { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; flex: 1; }
.training-link { font-size: 0.78rem; color: var(--orange); text-decoration: none; font-weight: 600; margin-top: auto; }
.training-link:hover { text-decoration: underline; }

/* ── SUPPORT TRIPTYCH ── */
.support-triptych { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
@media (max-width: 680px) { .support-triptych { grid-template-columns: 1fr; } }
.support-card {
  background: var(--white); border-radius: 12px; padding: 1.75rem;
  border: 1px solid var(--border); text-align: center;
}
.support-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.support-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.support-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55; margin-bottom: 1.1rem; }
.btn-support {
  display: inline-block; padding: 0.5rem 1.2rem; border-radius: 6px;
  background: var(--orange); color: #fff;
  text-decoration: none; font-size: 0.82rem; font-weight: 600;
  transition: background 0.2s;
}
.btn-support:hover { background: var(--orange-light); }
.btn-support-outline {
  display: inline-block; padding: 0.5rem 1.2rem; border-radius: 6px;
  border: 1px solid var(--border); color: var(--text-secondary);
  text-decoration: none; font-size: 0.82rem; font-weight: 500;
  transition: all 0.15s;
}
.btn-support-outline:hover { border-color: var(--orange); color: var(--orange); }

/* ── FOOTER ── */
@media (max-width: 680px) { .footer-top { grid-template-columns: 1fr 1fr; } }
.footer-brand-ut { font-size: 0.65rem; font-weight: 700; color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.3rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; padding: 0.22rem 0; transition: color 0.15s; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
