/* Base */
body { margin: 0; background: linear-gradient(180deg, #eef1ff 0%, #f5f6f7 2400px); font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
a { color: #4f46e5; text-decoration: none; }
a:hover { color: #4338ca; }
::selection { background: #e0e4ff; }
img { max-width: 100%; }

/* Layout helpers */
.page-wrap { position: relative; }
.container { max-width: 1160px; margin: 0 auto; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; display: flex; justify-content: center; padding: 8px 24px; }
.site-header-inner { width: 100%; max-width: 1160px; box-sizing: border-box; }
.site-header-bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; border-radius: 1rem; background: rgba(255,255,255,0.55); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border: 1px solid rgba(255,255,255,0.5); box-shadow: 0 8px 32px rgba(15,17,21,0.08), inset 0 1px 0 rgba(255,255,255,0.6); }
.brand { display: flex; align-items: center; gap: 20px; min-width: 0; }
.brand-link { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-logo { width: 26px; height: 26px; flex: 0 0 auto; }
.brand-name { font: 800 17px 'Inter', sans-serif; color: #0f1115; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.nav-link { position: relative; font: 500 14px 'Inter', sans-serif; color: #23262b; }
.nav-desktop { display: flex; }
.nav-desktop.links { align-items: center; gap: 32px; flex-wrap: wrap; }
.nav-desktop.actions { align-items: center; gap: 12px; }
.nav-hamburger { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: none; background: transparent; cursor: pointer; flex: 0 0 auto; }
.hamburger-bars { width: 20px; display: flex; flex-direction: column; gap: 5px; }
.hamburger-bar { height: 2px; background: #0f1115; border-radius: 2px; }
.hamburger-bar.bar1, .hamburger-bar.bar3 { transition: transform 0.2s ease; }
.hamburger-bar.bar2 { transition: opacity 0.15s ease; }

.mobile-menu { display: none; margin-top: 10px; background: #fff; border-radius: 20px; border: 1px solid rgba(15,17,21,0.06); box-shadow: 0 12px 32px rgba(15,17,21,0.12); padding: 12px; flex-direction: column; gap: 2px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 14px; border-radius: 12px; font: 500 15px 'Inter', sans-serif; color: #23262b; }
.mobile-menu a.btn-dark { color: #fff; }
.mobile-menu a.btn-dark:hover { background: #fff; color: #0f1115; }

@media (max-width: 760px) {
  .nav-desktop { display: none !important; }
  .nav-hamburger { display: flex !important; }
}

/* Buttons */
.btn { display: inline-block; font: 600 15px 'Inter', sans-serif; padding: 14px 28px; border-radius: 999px; transition: background 0.15s ease, transform 0.15s ease; box-sizing: border-box; }
.btn-sm { font-size: 14px; padding: 10px 20px; border-radius: 0.5rem; white-space: nowrap; }
.btn-dark { background: #0f1115; color: #fff; border: 1.5px solid #0f1115; }
.btn-dark:hover { background: #fff; color: #0f1115; border-color: #0f1115; }
.btn-indigo { background: #4f46e5; color: #fff; }
.btn-indigo:hover { background: #4338ca; color: #fff; }
.btn-ghost { background: transparent; color: #0f1115; border: 1.5px solid #9aa1a9; padding: 12.5px 26px; transition: border-color 0.15s ease, color 0.15s ease; }
.btn-ghost:hover { border-color: #565d66; color: #0f1115; }
.btn-block { margin-top: 8px; text-align: center; padding: 12px 20px; border-radius: 0.5rem; }
.btn-on-dark { background: #fff; color: #3730a3; }
.btn-on-dark:hover { background: #eef1ff; color: #3730a3; }
.btn-ghost-on-dark { border: 1.5px solid rgba(255,255,255,0.4); color: #fff; padding: 12.5px 26px; transition: border-color 0.15s ease, background 0.15s ease; }
.btn-ghost-on-dark:hover { border-color: #fff; background: rgba(255,255,255,0.12); color: #fff; }

/* Hero */
.hero { background: linear-gradient(135deg,#312e81 0%,#1e1b4b 60%,#14152e 100%); }
.hero-inner { padding: clamp(40px,6vw,72px) clamp(20px,5vw,56px) clamp(56px,8vw,96px); display: flex; flex-wrap: wrap; align-items: center; gap: 48px; max-width: 1280px; margin: 0 auto; box-sizing: border-box; }
.hero-copy { flex: 1 1 420px; min-width: 0; text-align: left; }
.hero-eyebrow { display: inline-block; font: 700 12.5px 'Inter', sans-serif; letter-spacing: 0.06em; text-transform: uppercase; color: #d6d9ff; background: rgba(255,255,255,0.1); padding: 8px 18px; border-radius: 999px; margin-bottom: 24px; }
.hero-title { font: 800 clamp(32px,5.2vw,52px)/1.14 'Inter', sans-serif; letter-spacing: -0.02em; color: #fff; margin: 0; }
.hero-title-gradient { background: linear-gradient(100deg,#3b82f6,#22b8b0 55%,#22c55e); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-desc { font: 400 clamp(16px,2vw,18px)/1.6 'Inter', sans-serif; color: #c6c9e6; max-width: 480px; margin: 22px 0 0; }
.hero-ctas { display: flex; gap: 14px; margin-top: 32px; align-items: center; flex-wrap: wrap; }
.hero-footnote { font: 400 13.5px 'Inter', sans-serif; color: #9199c2; margin-top: 16px; }

.hero-widget-card { flex: 1 1 420px; min-width: 0; width: 100%; box-sizing: border-box; text-align: left; border-radius: 16px; box-shadow: 0 24px 64px rgba(15,17,21,0.16); overflow: hidden; border: 1px solid #e7e9ec; background: #fff; }
.hero-widget-chrome { background: #f5f6f7; padding: 12px 16px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid #e7e9ec; }
.chrome-dot { width: 11px; height: 11px; border-radius: 50%; background: #e7e9ec; }
.chrome-url { flex: 1; background: #fff; border-radius: 6px; padding: 6px 11px; font: 400 12px 'Inter', sans-serif; color: #565d66; margin-left: 8px; }
.hero-widget-body { padding: 0; height: 500px; max-height: 500px; overflow: hidden; background: #f5f6f7; }
.hero-widget-body > div { height: 100%; }

@media (max-width: 640px) {
  .hero-widget-card { border-radius: 0 !important; border-left: none !important; border-right: none !important; margin-left: calc(50% - 50vw) !important; margin-right: calc(50% - 50vw) !important; }
}

/* See it in action */
.demo-section { padding: 20px 56px 96px; background: #fff; }
.demo-heading { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.demo-eyebrow { font: 700 12.5px 'Inter', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; color: #4f46e5; margin-bottom: 12px; }
.demo-title { font: 800 clamp(26px,3.2vw,32px)/1.2 'Inter', sans-serif; letter-spacing: -0.01em; color: #0f1115; margin: 0 0 12px; }
.demo-subtitle { font: 400 16.5px/1.6 'Inter', sans-serif; color: #565d66; margin: 0; }
.demo-card { max-width: 1080px; margin: 0 auto; background: #fff; border: 1px solid #e7e9ec; border-radius: 20px; padding: 22px; box-shadow: 0 30px 70px -30px rgba(15,17,21,0.28); box-sizing: border-box; }
.demo-chrome { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.demo-chrome .chrome-dot { width: 7px; height: 7px; }
.demo-chrome .chrome-url { background: #f5f6f7; }

.flow-stage { min-height: 280px; background: #f5f6f7; border-radius: 12px; padding: 26px; display: flex; flex-direction: column; justify-content: center; box-sizing: border-box; overflow: hidden; position: relative; }
.flow-step { display: none; }
.flow-step.active { display: block; }
.flow-step-title { font: 700 19px 'Inter', sans-serif; color: #0f1115; margin-bottom: 14px; }

.flow-play-btn { display: none; position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; background: #0f1115; align-items: center; justify-content: center; cursor: pointer; z-index: 2; }
.flow-play-btn.show { display: flex; }
.flow-play-icon { width: 0; height: 0; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid #fff; margin-left: 3px; }

.step-signup-fields { display: flex; flex-direction: column; gap: 8px; max-width: 340px; }
.step-input { background: #fff; border: 1px solid #e7e9ec; border-radius: 8px; padding: 9px 13px; font: 400 14px 'Inter', sans-serif; color: #9aa1ab; }
.step-submit { align-self: flex-start; background: #22a35c; color: #fff; border-radius: 7px; padding: 9px 22px; font: 600 13.5px 'Inter', sans-serif; margin-top: 4px; }

.layout-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.layout-tile { flex: 1; min-width: 110px; background: #fff; border: 1px solid #e7e9ec; border-radius: 8px; padding: 10px; }
.layout-tile.active { border: 2px solid #4f46e5; }
.layout-thumb { height: 96px; border-radius: 4px; background-color: #eef0f6; background-position: center; background-size: cover; margin-bottom: 8px; }
.layout-label { font: 600 12.5px 'Inter', sans-serif; color: #565d66; }
.layout-label.active { color: #0f1115; }

.import-formats { display: flex; gap: 8px; margin-bottom: 12px; }
.import-format-chip { background: #fff; border: 1px solid #e7e9ec; border-radius: 7px; padding: 7px 12px; font: 500 12.5px 'Inter', sans-serif; color: #565d66; }
.import-toggles { display: flex; flex-direction: column; gap: 6px; font: 400 13px 'Inter', sans-serif; color: #565d66; margin-bottom: 12px; }
.import-toggle-row { display: flex; align-items: center; gap: 8px; }
.toggle-pill { width: 30px; height: 16px; border-radius: 9px; display: inline-block; }
.toggle-pill.on { background: #4f46e5; }
.toggle-pill.off { background: #d7dae0; }
.import-submit { align-self: flex-start; background: #22a35c; color: #fff; border-radius: 7px; padding: 8px 18px; font: 600 13px 'Inter', sans-serif; display: inline-block; width: fit-content; }

.install-code { background: #0f1115; color: #d7d9de; font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; border-radius: 8px; padding: 14px 16px; line-height: 1.6; overflow: hidden; }

.live-tags { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.live-tag { background: #fff; border: 1px solid #e7e9ec; border-radius: 14px; padding: 5px 12px; font: 500 11.5px 'Inter', sans-serif; color: #565d66; }
.live-map { flex: 1; min-height: 110px; border-radius: 10px; background-color: #eef0f6; background-image: url('assets/onboarding/install-complete.png'); background-position: center; background-size: cover; margin-bottom: 10px; }
.live-caption { font: 400 13px 'Inter', sans-serif; color: #565d66; }

.flow-labels { display: flex; justify-content: space-between; margin-top: 18px; font: 500 13px 'Inter', sans-serif; }
.flow-label { cursor: pointer; color: #565d66; }
.flow-label.active { color: #0f1115; font-weight: 700; }
.flow-progress { height: 4px; background: #e7e9ec; border-radius: 4px; margin-top: 10px; display: flex; gap: 4px; }
.flow-progress-track { flex: 1; height: 100%; background: #e7e9ec; border-radius: 4px; overflow: hidden; }
.flow-fill { height: 100%; width: 0%; background: linear-gradient(90deg,#4f46e5,#a5b0ff); border-radius: 4px; transition: width 1.8s linear; }

/* Features */
.features-section { padding: 96px 56px; text-align: center; background-color: #f5f6f7; background-image: radial-gradient(#d7dae0 1.5px, transparent 1.5px); background-size: 22px 22px; }
.section-title { font: 800 clamp(28px,3.6vw,40px)/1.2 'Inter', sans-serif; letter-spacing: -0.02em; color: #0f1115; max-width: 680px; margin: 0 auto 16px; }
.section-subtitle { font: 400 17px/1.6 'Inter', sans-serif; color: #565d66; max-width: 600px; margin: 0 auto 56px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 20px; text-align: left; max-width: 1160px; margin: 0 auto; }
.feature-card { background: #fff; border: 1px solid #e7e9ec; border-radius: 14px; padding: 26px; display: flex; gap: 16px; align-items: flex-start; transition: box-shadow 0.2s ease, transform 0.2s ease; }
.feature-card:hover { box-shadow: 0 22px 44px -14px rgba(15,17,21,0.32); transform: translateY(-6px); }
.feature-icon { flex: 0 0 auto; width: 52px; height: 52px; object-fit: contain; }
.feature-title { font: 700 16.5px 'Inter', sans-serif; color: #0f1115; margin-bottom: 6px; }
.feature-desc { font: 400 14.5px/1.55 'Inter', sans-serif; color: #565d66; }

/* Platforms */
.platforms-section { padding: 88px 56px; background: #2b2f36; }
.platforms-inner { max-width: 1160px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 56px; }
.platforms-copy { flex: 1 1 320px; min-width: 0; }
.platforms-eyebrow { font: 700 12.5px 'Inter', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; color: #a5b0ff; margin-bottom: 16px; }
.platforms-title { font: 800 clamp(28px,3.4vw,38px)/1.2 'Inter', sans-serif; letter-spacing: -0.02em; color: #fff; margin: 0 0 20px; }
.platforms-desc { font: 400 16px/1.7 'Inter', sans-serif; color: #9aa1a9; max-width: 420px; margin: 0; }
.platform-grid { flex: 1 1 640px; min-width: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; align-content: start; }
.platform-tile { background: #383d45; border: 1px solid #454b54; border-radius: 12px; aspect-ratio: 2.4/1; padding: 6px 8px; display: flex; align-items: center; justify-content: center; transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background 0.2s ease; }
.platform-tile:hover { box-shadow: 0 18px 36px -12px rgba(0,0,0,0.5); transform: translateY(-6px); border-color: rgba(255,255,255,0.35); }
.platform-logo { max-width: 85%; max-height: 60%; width: auto; object-fit: contain; }

@media (max-width: 640px) {
  .platform-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 420px) {
  .platform-grid { grid-template-columns: 1fr !important; }
}

/* Customers */
.customers-section { padding: 88px 56px; text-align: center; background: radial-gradient(120% 140% at 50% 0%, #eef1ff 0%, #ffffff 55%); }
.customer-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 24px; max-width: 1160px; margin: 0 auto; }
.customer-card { border: 1px solid #e7e9ec; border-radius: 18px; padding: 0 0 16px; display: flex; flex-direction: column; align-items: center; gap: 12px; background: #fff; box-shadow: 0 10px 28px -14px rgba(15,17,21,0.18); overflow: hidden; transition: box-shadow 0.2s ease, transform 0.2s ease; }
.customer-card:hover { box-shadow: 0 26px 48px -16px rgba(79,70,229,0.28); transform: translateY(-6px); border-color: #a5b0ff; }
.customer-logo-link { width: 100%; aspect-ratio: 4/3; background: #fafafa; border-bottom: 1px solid #e7e9ec; display: flex; align-items: center; justify-content: center; padding: 16px 8px; }
.customer-logo { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.customer-sector { font: 700 13px 'Inter', sans-serif; letter-spacing: 0.05em; text-transform: uppercase; color: #4f46e5; padding: 0 20px; }

/* Reviews */
.reviews-section { padding: 96px 56px; background: #eef1ff; text-align: center; overflow: hidden; }
.reviews-eyebrow { font: 600 13px 'Inter', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; color: #4f46e5; margin-bottom: 16px; }
.reviews-title { font: 800 clamp(28px,3.4vw,38px)/1.2 'Inter', sans-serif; letter-spacing: -0.02em; color: #0f1115; margin: 0 0 56px; }
.reviews-carousel { position: relative; max-width: 760px; margin: 0 auto; min-height: 220px; }
.review-slide { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; transform: translateX(40px); transition: opacity 0.6s ease, transform 0.6s ease; pointer-events: none; }
.review-slide.active { position: relative; opacity: 1; transform: translateX(0); pointer-events: auto; }
.review-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 20px; }
.review-star { color: #facc15; font-size: 20px; }
.review-quote { font: 600 25px/1.55 'Inter', sans-serif; color: #0f1115; margin: 0 0 24px; }
.review-author { font: 600 15px 'Inter', sans-serif; color: #4f46e5; }
.review-dots { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.review-dot { width: 8px; height: 8px; border-radius: 4px; background: #c7cbe6; cursor: pointer; transition: all 0.3s ease; }
.review-dot.active { width: 24px; background: #4f46e5; }

/* Final CTA */
.final-cta-section { padding: 56px 56px 88px; }
.final-cta-card { max-width: 1160px; margin: 0 auto; border-radius: 24px; padding: 64px 48px; text-align: center; position: relative; overflow: hidden; background: linear-gradient(120deg, #3730a3, #4f46e5 65%, #a5b0ff 130%); }
.final-cta-title { font: 800 clamp(26px,3.6vw,34px)/1.25 'Inter', sans-serif; letter-spacing: -0.01em; color: #fff; margin: 0 0 14px; }
.final-cta-desc { font: 400 16.5px 'Inter', sans-serif; color: rgba(255,255,255,0.9); margin: 0 0 28px; }
.final-cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* Footer */
.site-footer { padding: 64px 56px 32px; background: #0f1115; }
.footer-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 0.8fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-name { font: 800 15px 'Inter', sans-serif; color: #fff; }
.footer-desc { font: 400 14.5px/1.6 'Inter', sans-serif; color: #9aa1a9; max-width: 280px; margin: 0 0 16px; }
.footer-contact { font: 400 14px/1.9 'Inter', sans-serif; color: #e7e9ec; }
.footer-contact a { color: #e7e9ec; }
.footer-contact .label { color: #9aa1a9; }
.footer-col-title { font: 700 13px 'Inter', sans-serif; letter-spacing: 0.06em; text-transform: uppercase; color: #9aa1a9; margin-bottom: 16px; }
.footer-link-row { margin-bottom: 10px; }
.footer-link { font: 400 14px 'Inter', sans-serif; color: #e7e9ec; }
.review-badges { display: flex; flex-direction: column; gap: 10px; }
.review-badge { border-radius: 8px; padding: 12px 16px; display: flex; align-items: center; }
.review-badge.capterra { background: #fff; border: 1px solid #2b2f36; }
.review-badge.reviewsio { background: #1a1d23; border: 1px solid #2b2f36; }
.review-badge img { object-fit: contain; display: block; width: auto; }
.review-badge.capterra img { height: 28px; max-width: 150px; }
.review-badge.reviewsio img { height: 22px; max-width: 150px; filter: invert(1) brightness(1.6); }
.footer-bottom { max-width: 1160px; margin: 40px auto 0; padding-top: 20px; border-top: 1px solid #23262b; font: 400 13px 'Inter', sans-serif; color: #565d66; text-align: center; }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr !important; }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }


/* Sign-in outline button */
.btn-outline { background: transparent; color: #0f1115; border: 1.5px solid #9aa1a9; padding: 8.5px 18px; font-size: 13.5px; }
.btn-outline:hover { background: #0f1115; border-color: #0f1115; color: #fff !important; }

/* Page header (sub-pages) */
.page-header { padding: 56px 56px 40px; text-align: center; }
.page-eyebrow { font: 700 12.5px 'Inter', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; color: #4338ca; margin-bottom: 14px; }
.page-title { font: 800 36px/1.15 'Inter', sans-serif; letter-spacing: -0.02em; color: #0f1115; max-width: 820px; margin: 0 auto; }
.page-title-sm { font: 800 clamp(30px,4.2vw,44px)/1.15 'Inter', sans-serif; letter-spacing: -0.02em; color: #0f1115; max-width: 820px; margin: 0 auto 12px; }
.page-subtitle { font: 400 17px/1.6 'Inter', sans-serif; color: #565d66; max-width: 600px; margin: 18px auto 0; }
.section-title-sm { font: 800 clamp(24px,3vw,30px)/1.2 'Inter', sans-serif; letter-spacing: -0.01em; color: #0f1115; text-align: center; margin: 0 0 36px; }

/* Highlights (Features page) */
.highlights-section { padding: 20px 56px 80px; max-width: 1160px; margin: 0 auto; display: flex; flex-direction: column; gap: 88px; }
.highlight-row { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; }
.highlight-row.reverse { flex-direction: row-reverse; }
.highlight-copy { flex: 1 1 420px; min-width: 0; }
.highlight-copy h2 { font: 800 clamp(22px,2.6vw,28px)/1.3 'Inter', sans-serif; letter-spacing: -0.01em; color: #0f1115; margin: 0 0 14px; }
.highlight-copy p { font: 400 16px/1.65 'Inter', sans-serif; color: #565d66; margin: 0; }
.highlight-media { flex: 1 1 420px; min-width: 0; aspect-ratio: 16/10; background: #fafafa; border: 1px solid #e7e9ec; border-radius: 16px; overflow: hidden; padding: 16px; box-sizing: border-box; }
.highlight-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

/* Full feature list (Features page) */
.full-features-section { padding: 80px 56px 96px; }
.section-heading { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-heading h2 { font: 800 clamp(26px,3.2vw,34px)/1.2 'Inter', sans-serif; letter-spacing: -0.01em; color: #0f1115; margin: 0 0 12px; }
.section-heading p { font: 400 16.5px/1.6 'Inter', sans-serif; color: #565d66; margin: 0; }
.features-grid .feature-card { display: flex; gap: 14px; align-items: flex-start; padding: 22px; }
.feature-icon-tile { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; background: #eef1ff; display: flex; align-items: center; justify-content: center; }
.feature-icon-tile i { color: #4f46e5; font-size: 16px; }

/* Pricing */
.billing-toggle { display: inline-flex; gap: 4px; background: #f0f1f3; border-radius: 999px; padding: 4px; margin-top: 28px; }
.toggle-option { padding: 9px 20px; border-radius: 999px; font: 600 13.5px 'Inter', sans-serif; cursor: pointer; color: #565d66; }
.toggle-option.active { background: #0f1115; color: #fff; }
.plans-section { padding: 32px 56px 88px; max-width: 1160px; margin: 0 auto; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 20px; }
.price-card { background: #fff; border: 1px solid #e7e9ec; border-radius: 18px; padding: 28px; box-sizing: border-box; transition: box-shadow 0.2s ease, transform 0.2s ease; position: relative; }
.price-card:hover { box-shadow: 0 22px 44px -14px rgba(15,17,21,0.28); transform: translateY(-6px); }
.price-card.popular { border: 2px solid #4f46e5; box-shadow: 0 20px 44px -18px rgba(79,70,229,0.35); }
.popular-badge { display: inline-block; font: 700 11.5px 'Inter', sans-serif; letter-spacing: 0.05em; text-transform: uppercase; color: #4338ca; background: #eef1ff; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.plan-name { font: 700 17px 'Inter', sans-serif; color: #0f1115; margin-bottom: 8px; }
.plan-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px; }
.plan-price { font: 800 38px 'Inter', sans-serif; color: #0f1115; letter-spacing: -0.02em; }
.plan-period { font: 400 14px 'Inter', sans-serif; color: #9aa1a9; }
.btn-block-plain { display: block; text-align: center; font: 600 14.5px 'Inter', sans-serif; padding: 11px 20px; border-radius: 0.5rem; margin-bottom: 22px; }
.plan-features { display: flex; flex-direction: column; gap: 10px; }
.plan-feature { display: flex; align-items: center; gap: 6px; font: 400 13.5px/1.4 'Inter', sans-serif; color: #23262b; }
.plan-feature.off { color: #b8bcc4; }
.feat-icon { flex: 0 0 auto; }
.tt-icon { flex: 0 0 auto; width: 15px; height: 15px; border-radius: 50%; border: 1.5px solid #9aa1a9; color: #9aa1a9; font: 600 10px/13px 'Inter', sans-serif; text-align: center; cursor: help; }
.free-charity-section { padding: 20px 56px 88px; max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: 24px; }
.info-card { background: #fff; border: 1px solid #e7e9ec; border-radius: 16px; padding: 32px; }
.info-card h3 { font: 800 20px 'Inter', sans-serif; color: #0f1115; margin: 0 0 10px; }
.info-card p { font: 400 15px/1.6 'Inter', sans-serif; color: #565d66; margin: 0; }
.faq-section { padding: 64px 56px 96px; background: #f5f6f7; }
.faq-inner { max-width: 1000px; margin: 0 auto; }
.faq-columns { columns: 2; column-gap: 48px; }
.faq-item { break-inside: avoid; margin-bottom: 28px; }
.faq-q { font: 600 20px 'Inter', sans-serif; color: #0f1115; margin-bottom: 8px; }
.faq-a { font: 400 19px/1.6 'Inter', sans-serif; color: #565d66; margin: 0; }
@media (max-width: 700px) { .faq-columns { columns: 1; } }

/* Demo page */
.demo-section { padding: 20px 56px 96px; max-width: 1280px; margin: 0 auto; }
.demo-layout { display: flex; gap: 32px; align-items: flex-start; }
.demo-sidebar { flex: 0 0 auto; width: 220px; max-width: 220px; display: flex; flex-direction: column; gap: 26px; }
.demo-group-title { font: 700 12px 'Inter', sans-serif; letter-spacing: 0.07em; text-transform: uppercase; color: #9aa1a9; margin-bottom: 10px; }
.demo-group-items { display: flex; flex-direction: column; gap: 2px; }
.demo-item { padding: 8px 10px; border-radius: 8px; font: 500 13.5px 'Inter', sans-serif; cursor: pointer; color: #565d66; }
.demo-item.active { background: #eef1ff; color: #4338ca; font-weight: 600; }
.demo-main { flex: 1 1 auto; min-width: 0; }
.demo-desc { font: 400 15px/1.6 'Inter', sans-serif; color: #565d66; margin-bottom: 16px; }
.demo-widget-card { background: #fff; border: 1px solid #e7e9ec; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 56px -24px rgba(15,17,21,0.18); }
.demo-widget-chrome { background: #f5f6f7; padding: 12px 16px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid #e7e9ec; }
.demo-widget-body { min-height: 520px; background: #f5f6f7; }
@media (max-width: 900px) {
  .demo-layout { flex-direction: column; }
  .demo-sidebar { max-width: none; width: 100%; flex-direction: row; flex-wrap: wrap; }
}


/* Article pages (blog post / support article) */
.article-hero { background: linear-gradient(135deg,#eef1ff 0%,#f7f8fd 55%,#ffffff 100%); padding: 32px 40px 40px; text-align: center; border-bottom: 1px solid #e7e9ec; }
.article-hero .article-eyebrow { font: 700 15px 'Inter', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; color: #4f46e5; margin-bottom: 14px; }
.article-hero h1 { color: #0f1115; font: 800 clamp(24px,3vw,32px)/1.3 'Inter', sans-serif; letter-spacing: -0.02em; max-width: 820px; margin: 0 auto; }
.article-hero-sm { padding: 32px 40px 40px; }
.article-byline { max-width: 760px; margin: 40px auto 0; padding: 0 24px; font: 500 15px 'Inter', sans-serif; color: #565d66; }
.article-breadcrumb { background: #f5f6f7; padding: 14px 40px; font: 500 15px 'Inter', sans-serif; color: #565d66; border-bottom: 1px solid #e7e9ec; text-align: center; }
.article-breadcrumb a { color: #4f46e5; }
.article-body { max-width: 760px; margin: 0 auto; padding: 0px 24px 80px; }
.article-body p { font: 400 17px/1.6 'Inter', sans-serif; color: #23262b; margin: 0 0 20px; }
.article-body h2 { font: 700 28px/1.3 'Inter', sans-serif; color: #0f1115; letter-spacing: -0.02em; margin: 48px 0 16px; }
.article-body h3 { font: 700 19px 'Inter', sans-serif; color: #0f1115; margin: 40px 0 12px; }
.article-body ol, .article-body ul { margin: 0 0 20px; padding-left: 22px; }
.article-body li { font: 400 17px/1.7 'Inter', sans-serif; color: #23262b; }
.article-body strong { color: #0f1115; font-weight: 600; }
.article-body .callout { color: #3730a3; font-weight: 600; }
.legal-meta { max-width: 760px; margin: 0 auto; padding: 0 24px; font: 500 15px 'Inter', sans-serif; color: #565d66; }
.legal-toc { max-width: 760px; margin: 32px auto 0; padding: 20px 24px; background: #f5f6f7; border-radius: 14px; }
.legal-toc-title { font: 700 13px 'Inter', sans-serif; letter-spacing: 0.06em; text-transform: uppercase; color: #9aa1a9; margin-bottom: 12px; }
.legal-toc ol { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-toc li { font: 500 15px 'Inter', sans-serif; }
.legal-toc a { color: #4f46e5; text-decoration: none; }
.legal-toc a:hover { color: #4338ca; }
.img-placeholder { width: 100%; aspect-ratio: 16/9; border-radius: 14px; box-shadow: 0 8px 24px rgba(15,17,21,0.08); margin: 32px 0; display: flex; align-items: center; justify-content: center; font: 600 15px 'Inter', sans-serif; }
.img-placeholder.tint-coral { background: #ffe4e0; color: #9aa1a9; }
.img-placeholder.tint-accent { background: #eef1ff; color: #4f46e5; }
.error-box { width: 100%; border-radius: 14px; background: #f5f6f7; box-shadow: 0 8px 24px rgba(15,17,21,0.08); margin: 32px 0; padding: 56px 24px; text-align: center; }
.error-icon { width: 44px; height: 44px; border-radius: 999px; background: #9aa1a9; color: #fff; display: flex; align-items: center; justify-content: center; font: 700 20px 'Inter', sans-serif; margin: 0 auto 16px; }
.error-title { font: 700 20px 'Inter', sans-serif; color: #23262b; }
.error-subtitle { font: 400 15px 'Inter', sans-serif; color: #565d66; margin-top: 6px; }
.mockup { width: 100%; border-radius: 14px; background: #fff; border: 1px solid #e7e9ec; box-shadow: 0 8px 24px rgba(15,17,21,0.08); margin: 20px 0 24px; padding: 24px; }
.mockup-title { font: 700 16px 'Inter', sans-serif; color: #0f1115; margin-bottom: 12px; }
.mockup-row { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px solid #e7e9ec; font: 400 15px 'Inter', sans-serif; color: #23262b; }
.mockup-row span:last-child { color: #565d66; }
.page-header-sm { padding: 32px 56px 40px; }
.page-eyebrow-sm { font-size: 15px; }
.page-title-sm { font-size: clamp(24px,3vw,32px); line-height: 1.3; }
.page-subtitle-sm { margin-top: 14px; }
.footer-logo-icon { width: 22px; height: 22px; }
.flow-step-title-tight { margin-bottom: 10px; }
.back-link { display: inline-block; font: 600 15px 'Inter', sans-serif; color: #fff; background: #4f46e5; text-decoration: none; padding: 12px 24px; border-radius: 999px; transition: background 0.15s ease; }
.back-link:hover { background: #4338ca; color: #fff; }

/* Platform pages (Elementor / Squarespace / Wordpress) */
.platform-compat-section { padding: 20px 56px 72px; max-width: 1160px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 48px; }
.platform-compat-media { flex: 1 1 320px; min-width: 0; aspect-ratio: 16/10; background: #fff; border: 1px solid #e7e9ec; border-radius: 16px; display: flex; align-items: center; justify-content: center; padding: 40px; box-sizing: border-box; }
.platform-compat-media img { max-width: 70%; max-height: 70%; object-fit: contain; }
.install-methods-section { padding: 48px 56px 80px; background: #fff; }
.install-cards-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; }
.install-card { background: #fafafa; border: 1px solid #e7e9ec; border-radius: 16px; padding: 28px; transition: box-shadow 0.2s ease, transform 0.2s ease; }
.install-card:hover { box-shadow: 0 22px 44px -14px rgba(15,17,21,0.32); transform: translateY(-4px); }
.install-icon-tile { width: 44px; height: 44px; border-radius: 12px; background: #eef1ff; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.install-icon-tile i { color: #4f46e5; font-size: 18px; }
.install-card-title { font: 700 17px 'Inter', sans-serif; color: #0f1115; margin-bottom: 8px; }
.install-card-desc { font: 400 14.5px/1.6 'Inter', sans-serif; color: #565d66; margin: 0; }
.platform-features-section { padding: 80px 56px 96px; }
.platform-feature-icon { flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%; background: #eef0f2; display: flex; align-items: center; justify-content: center; }
.platform-feature-icon img { width: 34px; height: 34px; object-fit: contain; }

/* FAQ page */
.faq-page-section { padding: 20px 56px 96px; max-width: 820px; margin: 0 auto; }
.faq-category { margin-bottom: 56px; }
.faq-cat-title { font: 800 20px 'Inter', sans-serif; letter-spacing: -0.01em; color: #0f1115; margin: 0 0 24px; }
.faq-card-list { display: flex; flex-direction: column; gap: 20px; }
.faq-card { background: #fff; border: 1px solid #e7e9ec; border-radius: 14px; padding: 22px 26px; }
.faq-card .faq-q { font-size: 16px; }
.faq-card .faq-a { font-size: 14.5px; }

/* Customer Showcase page */
.customer-showcase-section { padding: 20px 56px 96px; max-width: 1160px; margin: 0 auto; }
.customer-showcase-section .customer-card { text-decoration: none; }
.customer-showcase-section .customer-name { font: 700 15px 'Inter', sans-serif; color: #0f1115; }

/* Page-specific body background tints */
body.bg-tint-mint { background: linear-gradient(180deg, #eef4f2 0%, #f4f7f6 400px, #f4f7f6 100%); }
body.bg-tint-cream { background: #fbf9f6; }
body.bg-tint-indigo { background: linear-gradient(180deg, #eef1ff 0%, #f6f7fb 400px, #f6f7fb 100%); }

/* Blog listing page */
.blog-grid { max-width: 1240px; margin: 0 auto; padding: 56px 40px 32px; display: grid; grid-template-columns: repeat(3,1fr); gap: 40px 32px; }
.blog-card { display: flex; flex-direction: column; border: 1px solid #e7e9ec; border-radius: 14px; padding: 16px; background: #fff; transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease; }
.blog-card:hover { border-color: #c7cbf7; box-shadow: 0 16px 32px -12px rgba(15,17,21,0.14); transform: translateY(-2px); }
.blog-card-img { width: 100%; aspect-ratio: 16/10; border-radius: 10px; background: #eef1ff; border: 1px solid #dcdff7; color: #4f46e5; display: flex; align-items: center; justify-content: center; font: 600 14px 'Inter', sans-serif; text-align: center; padding: 12px; box-sizing: border-box; margin-bottom: 16px; box-shadow: 0 1px 3px rgba(15,17,21,0.06); }
.blog-card-author { font: 500 14px 'Inter', sans-serif; color: #9aa1a9; margin-bottom: 8px; }
.blog-card-title { font: 700 18px/1.35 'Inter', sans-serif; color: #1e2a4a; margin: 0 0 10px; }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: #2454dd; }
.blog-card-excerpt { font: 400 14.5px/1.6 'Inter', sans-serif; color: #565d66; margin: 0 0 16px; flex: 1; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #e7e9ec; padding-top: 14px; font: 500 13.5px 'Inter', sans-serif; }
.blog-card-meta .date { color: #9aa1a9; }
.blog-card-meta a { color: #2454dd; text-decoration: none; }
.blog-card-meta a:hover { color: #1a3fb0; }
.blog-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 24px 40px 72px; flex-wrap: wrap; }
.blog-pagination a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid #e7e9ec; font: 600 14px 'Inter', sans-serif; color: #565d66; text-decoration: none; }
.blog-pagination a:hover { border-color: #2454dd; color: #2454dd; }
.blog-pagination a.active { background: #2454dd; border-color: #2454dd; color: #fff; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* Support page */
.support-hero { background: linear-gradient(160deg, #2653d6 0%, #1d3fa8 60%, #1a3690 100%); padding: 64px 40px 80px; text-align: center; }
.support-hero h1 { color: #fff; font: 800 clamp(30px,3.6vw,42px)/1.2 'Inter', sans-serif; letter-spacing: -0.02em; margin: 0 0 16px; }
.support-hero p { color: #c7d3f7; font: 400 16px/1.6 'Inter', sans-serif; max-width: 620px; margin: 0 auto; }
.support-hero p a { color: #fff; text-decoration: underline; }
.support-search-wrap { max-width: 640px; margin: 32px auto 0; }
.support-search-input { width: 100%; box-sizing: border-box; padding: 18px 22px; border-radius: 10px; border: none; font: 500 15px 'Inter', sans-serif; box-shadow: 0 16px 40px rgba(10,20,60,0.35); }
.support-search-input::placeholder { color: #9aa1a9; }
.support-categories { max-width: 1160px; margin: 0 auto; padding: 64px 56px 96px; }
.support-categories-title { text-align: center; font: 800 32px 'Inter', sans-serif; letter-spacing: -0.01em; color: #0f1115; margin: 0 0 48px; }
.support-categories-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 64px; }
.support-category { margin-bottom: 48px; }
.support-category-title { font: 700 20px 'Inter', sans-serif; color: #2454dd; margin: 0 0 16px; }
.support-category-links { display: flex; flex-direction: column; gap: 12px; }
.support-category-links a { color: #2454dd; font: 400 15.5px/1.5 'Inter', sans-serif; text-decoration: none; }
.support-category-links a:hover { text-decoration: underline; }
@media (max-width: 800px) { .support-categories-grid { grid-template-columns: 1fr; } }

/* Support article category listing page */
.support-article-list { max-width: 900px; margin: 0 auto; padding: 56px 56px 96px; display: flex; flex-direction: column; gap: 32px; }
.support-article-item-title { font: 700 22px/1.35 'Inter', sans-serif; color: #2454dd; text-decoration: none; display: inline-block; margin: 0 0 10px; }
.support-article-item-title:hover { text-decoration: underline; }
.support-article-item-desc { font: 400 16px/1.6 'Inter', sans-serif; color: #565d66; margin: 0; }

/* Segmented control (tabs / toggles) */
.segmented-control { display: inline-flex; gap: 4px; background: #f0f1f3; border-radius: 999px; padding: 4px; }
.segmented-option { padding: 11px 26px; border-radius: 999px; font: 600 14px 'Inter', sans-serif; cursor: pointer; color: #565d66; transition: background 0.15s ease, color 0.15s ease; }
.segmented-option.sm { padding: 9px 20px; font-size: 13.5px; }
.segmented-option.active { background: #0f1115; color: #fff; }

/* Map service comparison page */
.compare-section { padding: 20px 56px 96px; }
.provider-frame { border-radius: 12px; overflow: hidden; height: 560px; background: #f5f6f7; }
.provider-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Map cost calculator page */
.calc-section { padding: 20px 56px 40px; }
.calc-card { max-width: 900px; margin: 0 auto; background: #fff; border: 1px solid #e7e9ec; border-radius: 20px; padding: 36px 40px; box-shadow: 0 30px 70px -30px rgba(15,17,21,0.28); box-sizing: border-box; display: flex; flex-direction: column; gap: 28px; }
.calc-group-label { font: 700 13px 'Inter', sans-serif; letter-spacing: 0.06em; text-transform: uppercase; color: #9aa1a9; margin-bottom: 12px; }
.calc-input-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.calc-input { width: 160px; box-sizing: border-box; padding: 11px 14px; border: 1px solid #e7e9ec; border-radius: 8px; font: 600 15px 'Inter', sans-serif; color: #0f1115; }
.calc-summary { font: 500 14.5px 'Inter', sans-serif; color: #565d66; border-top: 1px solid #e7e9ec; padding-top: 20px; }
.calc-quota-note { text-align: center; font: 500 15px 'Inter', sans-serif; color: #565d66; margin: 24px 0 0; padding: 0 56px; display: none; }
.calc-results-section { padding: 20px 56px 96px; max-width: 1160px; margin: 0 auto; box-sizing: border-box; }
.calc-results-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 20px; }
.calc-result-card { background: #fff; border: 1px solid #e7e9ec; border-radius: 18px; padding: 28px; box-sizing: border-box; text-align: center; }
.calc-result-name { font: 700 12.5px 'Inter', sans-serif; letter-spacing: 0.05em; text-transform: uppercase; color: #9aa1a9; margin-bottom: 16px; }
.calc-result-cost { font: 800 34px 'Inter', sans-serif; letter-spacing: -0.02em; color: #0f1115; margin-bottom: 6px; }
.calc-result-period { font: 400 13.5px 'Inter', sans-serif; color: #565d66; margin-bottom: 16px; }
.calc-result-link { font: 600 13.5px 'Inter', sans-serif; color: #4f46e5; text-decoration: none; }
.calc-disclaimer { font: 400 13px 'Inter', sans-serif; color: #9aa1a9; text-align: center; margin-top: 20px; }

/* Alternate (navy) footer variant */
.site-footer-v2 { background: #1e1b4b; }
.site-footer-v2 .footer-link, .site-footer-v2 .footer-contact a, .site-footer-v2 .footer-brand-name { color: #e4e6f5; }
.site-footer-v2 .footer-desc, .site-footer-v2 .footer-contact .label, .site-footer-v2 .footer-col-title, .site-footer-v2 .footer-bottom { color: #9a9fc4; }
.site-footer-v2 .footer-link:hover { color: #fff; }
