:root {
  --color-primary: #18181B;
  --color-secondary: #3F3F46;
  --color-accent: #2563EB;
  --color-neutral-dark: #09090B;
  --color-neutral-light: #FAFAFA;
  --color-border: rgba(9, 9, 11, 0.10);
  --color-muted: #71717A;
  --font-heading: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-sm: 0 2px 20px rgba(9, 9, 11, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(9, 9, 11, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(9, 9, 11, 0.28);
}

/* === Reset & base === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-neutral-dark);
  background: var(--color-neutral-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-primary); line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 1rem; font-weight: 700; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 780px; }
.muted { color: var(--color-muted); }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 600; color: var(--color-accent); margin: 0 0 1rem; }

/* === Header (glass nav) === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 250, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { background: rgba(250,250,250,0.92); box-shadow: 0 4px 20px -10px rgba(9,9,11,0.15); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1.25rem; max-width: 1160px; margin-inline: auto; gap: 1rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; }
.nav-toggle { background: none; border: 1px solid var(--color-border); border-radius: 10px; padding: 0.5rem; color: var(--color-primary); cursor: pointer; display: inline-flex; }
.primary-nav { display: none; flex-direction: column; gap: 0.25rem; padding: 1rem 0; }
.primary-nav.is-open { display: flex; }
.primary-nav a { color: var(--color-primary); font-weight: 500; padding: 0.6rem 0.9rem; border-radius: 8px; position: relative; }
.primary-nav a:hover { text-decoration: none; background: rgba(37, 99, 235, 0.08); }
.primary-nav a[aria-current="page"] { color: var(--color-accent); }
.primary-nav .nav-cta { background: linear-gradient(135deg, var(--color-accent), #1e40af); color: #fff; font-weight: 600; padding: 0.65rem 1.1rem; }
.primary-nav .nav-cta:hover { background: linear-gradient(135deg, #1d4ed8, #1e40af); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; flex-direction: row; align-items: center; padding: 0; gap: 0.25rem; }
  .primary-nav a { padding: 0.5rem 0.8rem; }
  .logo img { height: 96px; }
}

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.9rem 1.5rem; border-radius: 999px; font-weight: 600; font-family: var(--font-body); font-size: 0.98rem; border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease); text-align: center; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--color-accent), #1e40af); color: #fff; box-shadow: 0 8px 24px -8px rgba(37,99,235,0.55); }
.btn-primary:hover { box-shadow: 0 14px 30px -8px rgba(37,99,235,0.65); }
.btn-ghost { background: transparent; color: var(--color-primary); border-color: var(--color-border); }
.btn-ghost:hover { border-color: var(--color-accent); color: var(--color-accent); }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; border-radius: 6px; }

/* === Hero (saas-spotlight) === */
.hero { position: relative; padding: 4rem 0 3rem; overflow: hidden; background: linear-gradient(180deg, #FAFAFA 0%, #F1F5F9 100%); }
.hero::before { content: ""; position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 900px; height: 900px; background: radial-gradient(circle, rgba(37,99,235,0.14), transparent 65%); pointer-events: none; z-index: 0; }
.hero-inner { position: relative; z-index: 1; max-width: 900px; margin-inline: auto; padding-inline: 1.25rem; text-align: center; }
.hero h1 { font-weight: 800; }
.hero-sub { font-size: 1.15rem; color: var(--color-secondary); max-width: 640px; margin: 0 auto 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 3rem; }
.hero-visual { margin: 0 auto; max-width: 960px; }
.hero-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--color-border); }
.hero-compact { padding: 3rem 0 2rem; }
.hero-compact .hero-inner { padding-bottom: 0; }

.proof-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2.5rem; padding: 2rem 1.25rem 0; color: var(--color-muted); font-size: 0.9rem; font-weight: 500; position: relative; z-index: 1; }

@media (min-width: 768px) {
  .hero { padding: 6rem 0 4rem; }
  .hero-sub { font-size: 1.3rem; }
}

/* === Section === */
.section { padding: 4rem 0; }
.section-tinted { background: #F4F4F5; border-block: 1px solid var(--color-border); }
.section-title { text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }

/* === Grids === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* === Cards === */
.card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(37,99,235,0.10); color: var(--color-accent); margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-secondary); font-size: 0.96rem; margin: 0; }

/* === Quote === */
.quote { border-left: 3px solid var(--color-accent); padding: 0.5rem 0 0.5rem 1.5rem; margin: 0; }
.quote p { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 500; line-height: 1.5; color: var(--color-primary); }
.quote cite { font-style: normal; color: var(--color-muted); font-size: 0.92rem; }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: #fff; padding: 4rem 0; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(250,250,250,0.85); margin-bottom: 1.5rem; }

/* === Pricing === */
.pricing-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.pricing-card { position: relative; background: #fff; padding: 2.25rem; border-radius: 16px; border: 1px solid var(--color-border); display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card--featured { border: 2px solid var(--color-accent); box-shadow: 0 20px 50px -20px rgba(37,99,235,0.4); }
.pricing-card__badge { position: absolute; top: -12px; right: 1.5rem; background: var(--color-accent); color: #fff; padding: 0.35rem 0.85rem; border-radius: 999px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.pricing-card__plan { font-size: 1.15rem; color: var(--color-secondary); margin-bottom: 0.5rem; }
.pricing-card__price { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: var(--color-primary); font-family: var(--font-heading); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.pricing-card__lede { color: var(--color-muted); font-size: 0.95rem; margin-bottom: 1.25rem; }
.pricing-card__features { list-style: none; padding: 0; margin: 0 0 1.75rem; flex-grow: 1; }
.pricing-card__features li { display: flex; gap: 0.6rem; padding: 0.5rem 0; border-bottom: 1px solid var(--color-border); font-size: 0.95rem; color: var(--color-secondary); }
.pricing-card__features li span { color: var(--color-accent); font-weight: 700; }
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__cta { align-self: stretch; text-align: center; }

/* === FAQ === */
.faq details { background: #fff; border: 1px solid var(--color-border); border-radius: 12px; padding: 1.1rem 1.4rem; margin-bottom: 0.85rem; transition: box-shadow .2s var(--ease); }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 600; color: var(--color-primary); font-family: var(--font-heading); font-size: 1.05rem; list-style: none; position: relative; padding-right: 2rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: -2px; font-size: 1.5rem; color: var(--color-accent); font-weight: 400; transition: transform .2s var(--ease); }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0.85rem 0 0; color: var(--color-secondary); }

/* === Contact === */
.contact-layout { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-layout { grid-template-columns: 1.2fr 1fr; } }
.contact-form { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem; }
.contact-form label { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.9rem; font-weight: 500; color: var(--color-secondary); }
.contact-form input, .contact-form textarea { font: inherit; padding: 0.7rem 0.85rem; border: 1px solid var(--color-border); border-radius: 10px; background: #FAFAFA; color: var(--color-primary); transition: border-color .2s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-accent); background: #fff; }
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-consent { flex-direction: row !important; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; color: var(--color-secondary); font-weight: 400; }
.form-consent input { margin-top: 0.2rem; flex: 0 0 auto; }
.contact-info h3 { font-size: 1rem; margin-top: 1.25rem; }
.hours table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.hours th, .hours td { padding: 0.45rem 0; border-bottom: 1px solid var(--color-border); text-align: left; }
.hours th { color: var(--color-secondary); font-weight: 500; }
.hours td { color: var(--color-primary); font-variant-numeric: tabular-nums; text-align: right; }
.contact-card { background: #fff; padding: 2rem; border-radius: var(--radius-md); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: #D4D4D8; padding: 4rem 0 2rem; margin-top: 4rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; } }
.site-footer h4 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.site-footer a { color: #D4D4D8; display: block; padding: 0.25rem 0; }
.site-footer a:hover { color: #fff; }
.site-footer .logo img { height: 64px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.site-footer address a { display: inline; padding: 0; }
.legal-nav { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.75rem; }
.legal-nav a { display: inline; padding: 0; font-size: 0.88rem; }
.copyright { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.85rem; color: #A1A1AA; text-align: center; }

/* === Cookie banner === */
.cookie-banner { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; display: none; z-index: 9999; background: var(--color-neutral-dark); color: var(--color-neutral-light); padding: 1.25rem 1.4rem; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); max-width: 560px; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.85rem; font-size: 0.92rem; color: #E4E4E7; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions button { font: inherit; padding: 0.55rem 1rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.18); background: transparent; color: #fff; cursor: pointer; font-size: 0.88rem; }
.cookie-banner__actions button[data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); font-weight: 600; }
.cookie-banner__actions button:hover { background: rgba(255,255,255,0.08); }
.cookie-banner__actions button[data-cookie-accept]:hover { background: #1d4ed8; }
.cookie-banner__prefs { margin-top: 0.9rem; display: flex; flex-direction: column; gap: 0.5rem; padding-top: 0.9rem; border-top: 1px solid rgba(255,255,255,0.1); }
.cookie-banner__prefs label { font-size: 0.88rem; display: flex; align-items: center; gap: 0.5rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; padding: 0.5rem 0.9rem; border-radius: 8px; background: var(--color-accent); color: #fff; border: none; cursor: pointer; font: inherit; font-weight: 600; }

/* === Reveal animation === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
