/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --accent: #5b4cf5;
  --accent-light: #7c6ff7;
  --accent-dark: #4338ca;
  --accent-glow: rgba(91, 76, 245, 0.12);
  --green: #10b981;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ─── Utility ─── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.eyebrow-accent { color: var(--accent); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-header h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--gray-900); line-height: 1.2; margin-bottom: 16px; }
.section-desc { color: var(--gray-500); font-size: 17px; line-height: 1.7; }

.section { padding: 100px 0; }
.section-alt { background: var(--gray-50); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(91,76,245,.35);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(91,76,245,.4); }
.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
}
.btn-ghost:hover { border-color: var(--gray-400); color: var(--gray-900); }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--gray-900);
  flex-shrink: 0;
}
.logo-mark {
  width: 34px;
  height: 34px;
  display: block;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  list-style: none;
}
.nav-links > li {
  display: flex;
  align-items: center;
}
.nav-links a {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--gray-900); background: var(--gray-100); }
.nav-cta { margin-left: 8px; padding: 8px 18px; font-size: 14px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: .2s; }

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(91,76,245,.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.hero-sub {
  max-width: 580px;
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}
.hero-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gray-400);
  font-size: 13px;
}
.trust-label { font-weight: 500; }
.partner-logo {
  height: 26px;
  opacity: .6;
  filter: grayscale(1);
  transition: opacity .2s;
}
.partner-logo:hover { opacity: 1; filter: none; }
.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(91,76,245,.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.service-card p { color: var(--gray-500); line-height: 1.65; }

/* ─── HOW WE WORK ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  counter-reset: process;
}
.process-card {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: box-shadow .2s, transform .2s;
}
.process-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
}
.process-card h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.process-card p { color: var(--gray-500); font-size: 14.5px; line-height: 1.65; margin: 0; }

/* ─── FRIDAY AI SPOTLIGHT ─── */
.spotlight-card {
  display: flex;
  align-items: center;
  gap: 48px;
  background: linear-gradient(135deg, #f8f7ff 0%, #eef2ff 100%);
  border: 1.5px solid rgba(91,76,245,.15);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.spotlight-logo {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}
.spotlight-body { flex: 1; }
.spotlight-body h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--gray-900); margin-bottom: 12px; line-height: 1.2; }
.spotlight-body p { color: var(--gray-500); font-size: 16px; line-height: 1.7; margin-bottom: 20px; }
.spotlight-bullets {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 28px;
}
.spotlight-bullets li {
  font-size: 14px;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
}
.spotlight-bullets li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── FRIDAY AI (legacy, kept for sub-pages) ─── */
.friday-section { background: var(--white); }
.friday-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.friday-text .section-desc { text-align: left; margin-bottom: 28px; }
.friday-text h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: var(--gray-900); line-height: 1.15; margin-bottom: 20px; }
.friday-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.friday-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--gray-700);
}
.bullet-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}
.friday-actions { display: flex; gap: 12px; }

/* Chat UI mockup */
.friday-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.chat-ui {}
.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}
.chat-avatar {
  width: 38px; height: 38px;
  background: var(--accent);
  color: white;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
}
.chat-name { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.chat-status { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--gray-400); }
.status-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}
.chat-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.msg { max-width: 90%; padding: 12px 16px; border-radius: 12px; font-size: 14px; line-height: 1.55; }
.msg-user {
  background: var(--accent);
  color: white;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.msg-ai {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  color: var(--gray-700);
}
.msg-ai-label { font-size: 11px; font-weight: 700; color: var(--accent); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.automation-preview {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 12px;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.auto-step { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-700); }
.auto-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.auto-dot.trigger { background: #f59e0b; }
.auto-dot.action { background: var(--accent); }
.msg-confirm { display: flex; gap: 8px; margin-top: 8px; }
.confirm-btn {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--gray-200);
  background: white;
  color: var(--gray-700);
  transition: .15s;
}
.confirm-btn.active { background: var(--accent); color: white; border-color: var(--accent); }

/* ─── FEATURES ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-200);
}
.feature-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background .2s;
}
.feature-card:hover { background: var(--gray-50); }
.feature-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.feature-card p { color: var(--gray-500); font-size: 14.5px; line-height: 1.65; }

/* ─── CONTACT ─── */
.contact-section {
  background: linear-gradient(160deg, #f8f7ff 0%, var(--white) 60%);
}
.contact-inner { max-width: 680px; margin: 0 auto; }
.contact-inner .section-header { margin-bottom: 48px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--gray-900);
  background: white;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91,76,245,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-success {
  text-align: center;
  padding: 14px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  color: #065f46;
  font-weight: 500;
}
.form-error {
  text-align: center;
  padding: 14px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #991b1b;
  font-weight: 500;
}
.hidden { display: none; }

/* ─── FOOTER ─── */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding-top: 60px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 240px; }
.footer-links { display: flex; gap: 64px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: .05em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 8px;
}

/* ─── NAV DROPDOWN ─── */
.nav-item-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  transition: color .15s, background .15s;
  user-select: none;
  white-space: nowrap;
  line-height: 1.5;
}
.nav-dropdown-trigger:hover { color: var(--gray-900); background: var(--gray-100); }
.nav-dropdown-trigger svg { transition: transform .2s; flex-shrink: 0; }
.nav-item-dropdown:hover .nav-dropdown-trigger svg,
.nav-item-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 190px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .15s, transform .15s, visibility .15s;
  z-index: 200;
}
.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: background .15s, color .15s;
}
.nav-dropdown-menu a:hover { background: var(--gray-100); color: var(--gray-900); }
.nav-dropdown-icon {
  width: 28px;
  height: 28px;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  overflow: hidden;
}
.nav-dropdown-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ─── INNER PAGES ─── */
.page-hero {
  padding: 80px 0 60px;
  background: linear-gradient(160deg, #f8f7ff 0%, var(--white) 80%);
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: var(--gray-900); margin-bottom: 16px; line-height: 1.15; }
.page-hero p { font-size: 18px; color: var(--gray-500); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.page-hero-actions { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

.inner-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 24px;
}
.inner-content h2 { font-size: 22px; font-weight: 700; color: var(--gray-900); margin: 40px 0 14px; }
.inner-content h2:first-child { margin-top: 0; }
.inner-content h3 { font-size: 17px; font-weight: 600; color: var(--gray-900); margin: 24px 0 10px; }
.inner-content p { color: var(--gray-500); line-height: 1.8; margin-bottom: 16px; }
.inner-content ul, .inner-content ol { color: var(--gray-500); line-height: 1.8; margin-bottom: 16px; padding-left: 24px; }
.inner-content ul li { list-style: disc; margin-bottom: 8px; }
.inner-content ol li { list-style: decimal; margin-bottom: 8px; }
.inner-content a { color: var(--accent); }
.inner-content a:hover { text-decoration: underline; }
.inner-content strong { color: var(--gray-700); }
.inner-content .last-updated { font-size: 13px; color: var(--gray-400); margin-bottom: 40px; }
.inner-content hr { border: none; border-top: 1px solid var(--gray-200); margin: 40px 0; }

/* Pricing page */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 48px 0;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.pricing-plan { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); }
.pricing-price { font-size: 28px; font-weight: 800; color: var(--gray-900); }
.pricing-price span { font-size: 14px; font-weight: 500; color: var(--gray-400); }
.pricing-note { font-size: 13px; color: var(--gray-400); }
.pricing-divider { border: none; border-top: 1px solid var(--gray-200); }
.pricing-features { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; color: var(--gray-500); display: flex; align-items: center; gap: 8px; }
.pricing-features li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-badge {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* How to Use - steps */
.step-list { display: flex; flex-direction: column; gap: 32px; margin: 32px 0; }
.step-item { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}
.step-body h3 { margin-top: 6px; margin-bottom: 8px; }
.step-body p { margin: 0; }

/* Demo page */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 32px 0;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  background: #000;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gray-400);
  font-size: 15px;
  margin: 32px 0;
}
.video-play-icon {
  width: 72px;
  height: 72px;
  background: var(--accent-glow);
  border: 2px solid rgba(91,76,245,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

/* Friday AI hub page - links grid */
.friday-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 48px 0;
}
.friday-hub-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  cursor: pointer;
}
.friday-hub-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--accent); }
.friday-hub-card .hub-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.friday-hub-card h3 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.friday-hub-card p { font-size: 13px; color: var(--gray-400); margin: 0; }

/* ─── Material Symbols sizing in icon containers ─── */
.hub-icon .material-symbols-outlined { font-size: 28px; color: var(--accent); }
.uc-icon .material-symbols-outlined { font-size: 22px; color: var(--accent); }
.dept-icon-wrap .material-symbols-outlined { font-size: 26px; color: var(--accent); }
.multiboard-icon-wrap .material-symbols-outlined { font-size: 36px; color: white; }
.service-icon .material-symbols-outlined { font-size: 22px; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-inner.open {
    flex-wrap: wrap;
    gap: 0;
    padding-bottom: 16px;
  }
  .nav-inner.open > .logo {
    height: 68px;
    display: flex;
    align-items: center;
  }
  .nav-inner.open > .nav-toggle {
    height: 68px;
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  .nav-inner.open .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid var(--gray-200);
    padding: 12px 0 4px;
    gap: 4px;
  }
  .nav-inner.open .nav-cta {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }
  .nav-item-dropdown { width: 100%; }
  .nav-dropdown-trigger { width: 100%; justify-content: space-between; }
  .nav-dropdown-menu {
    position: static;
    visibility: hidden;
    opacity: 1;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--gray-50);
    border-radius: 8px;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height .2s ease, visibility .2s, padding .2s;
  }
  .nav-item-dropdown.open .nav-dropdown-menu {
    visibility: visible;
    max-height: 200px;
    padding: 6px;
    margin-top: 4px;
  }
  .hero { padding: 80px 0 60px; }
  .friday-inner { grid-template-columns: 1fr; gap: 40px; }
  .spotlight-card { flex-direction: column; gap: 28px; padding: 32px 24px; }
  .spotlight-bullets { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .step-item { flex-direction: column; gap: 12px; }
}
