:root {
  --color-primary: #2563EB;
  --color-secondary: #3B82F6;
  --color-accent: #F97316;
  --color-neutral-dark: #1E40AF;
  --color-neutral-light: #EFF6FF;
  --text: #0F172A;
  --text-muted: #475569;
  --border: rgba(30, 64, 175, 0.12);
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 30px 60px -30px rgba(30, 64, 175, 0.35);
}

/* === Base === */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text); line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 .75rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { margin: 0 0 1rem; color: var(--text-muted); }
a { color: var(--color-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--color-neutral-dark); }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 760px; }
.eyebrow { font-family: var(--font-heading); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--color-primary); font-weight: 600; margin-bottom: 1rem; }

/* === Header / Nav (glass) === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background .2s, box-shadow .2s, border-color .2s;
}
.site-header.scrolled { background: rgba(255, 255, 255, 0.92); border-bottom-color: var(--border); box-shadow: 0 4px 20px -10px rgba(15,23,42,0.15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .75rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.75rem; align-items: center; }
.primary-nav a { color: var(--text); font-weight: 500; font-size: .95rem; position: relative; padding: .25rem 0; }
.primary-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--color-primary); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav a.nav-cta {
  background: var(--color-primary); color: #fff; padding: .55rem 1.1rem; border-radius: 999px;
}
.primary-nav a.nav-cta::after { display: none; }
.primary-nav a.nav-cta:hover { background: var(--color-neutral-dark); }
.nav-toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .primary-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 1rem 1.25rem 1.5rem; display: none; box-shadow: var(--shadow-md); }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: .25rem; }
  .primary-nav a { padding: .75rem 0; display: block; border-bottom: 1px solid var(--border); }
  .primary-nav a.nav-cta { text-align: center; border-bottom: 0; margin-top: .5rem; }
}

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1.5rem; border-radius: 999px; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; cursor: pointer; border: 0; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s; }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; box-shadow: 0 12px 30px -10px rgba(37, 99, 235, .5); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(37, 99, 235, .6); color: #fff; }
.btn-accent { background: var(--color-accent); color: #fff; box-shadow: 0 12px 30px -10px rgba(249, 115, 22, .55); }
.btn-accent:hover { transform: translateY(-2px); color: #fff; }
.btn-ghost { background: transparent; color: var(--color-primary); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--color-neutral-light); transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

/* === Hero (centered, SaaS spotlight) === */
.hero { position: relative; overflow: hidden; padding-block: 4rem 3rem; text-align: center; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -1; background:
  radial-gradient(ellipse 800px 500px at 50% 0%, rgba(59, 130, 246, 0.18), transparent 60%),
  radial-gradient(ellipse 600px 400px at 80% 60%, rgba(249, 115, 22, 0.10), transparent 60%),
  linear-gradient(180deg, var(--color-neutral-light), #fff 70%);
}
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.hero h1 { max-width: 22ch; margin-inline: auto; }
.hero-sub { max-width: 56ch; font-size: 1.15rem; color: var(--text-muted); margin: .5rem auto 1.75rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-bottom: 2.5rem; }
.hero-media { width: 100%; max-width: 980px; margin-inline: auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); background: #fff; }
.hero-media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

@media (min-width: 768px) {
  .hero { padding-block: 6rem 4rem; }
  .logo img { height: 96px; }
}

/* === Sections === */
.section { padding-block: 3.5rem; }
@media (min-width: 768px) { .section { padding-block: 5rem; } }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head h2 { max-width: 30ch; margin-inline: auto; }
.section-sub { max-width: 60ch; margin: .25rem auto 0; color: var(--text-muted); }
.section-intro .container.narrow { text-align: center; }
.section-intro p { font-size: 1.075rem; }

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

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  display: flex; flex-direction: column; gap: .5rem;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(37, 99, 235, .25); }
.card h3 { margin: .25rem 0 .25rem; }
.card p { margin: 0; font-size: .95rem; }
.card-link { color: inherit; text-decoration: none; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(59,130,246,.08));
  color: var(--color-primary);
}

/* === Testimonial === */
.section-testimonial { background: linear-gradient(180deg, #fff, var(--color-neutral-light)); }
.testimonial { margin: 0; text-align: center; padding: 2rem 1rem; }
.testimonial p { font-family: var(--font-heading); font-size: clamp(1.15rem, 2.2vw, 1.5rem); line-height: 1.5; color: var(--text); font-weight: 500; }
.testimonial cite { display: block; margin-top: 1.25rem; font-style: normal; color: var(--text-muted); font-size: .95rem; }

/* === CTA band === */
.cta-band {
  padding-block: 3rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0; max-width: 60ch; }
.cta-band-inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
@media (min-width: 768px) {
  .cta-band-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; }
}

/* === Split section === */
.split { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* === Contact page === */
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.3fr 1fr; gap: 3rem; } }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.field label { font-weight: 500; font-size: .9rem; color: var(--text); }
.field input, .field select, .field textarea {
  font: inherit; padding: .75rem .9rem; border: 1px solid var(--border); border-radius: 10px;
  background: #fff; color: var(--text); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}
.form-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.form-consent input { margin-top: .2rem; }
.contact-info h2 { margin-bottom: .75rem; }
.hours { width: 100%; border-collapse: collapse; margin-top: .5rem; font-size: .95rem; }
.hours th, .hours td { text-align: left; padding: .5rem .25rem; border-bottom: 1px solid var(--border); }
.hours th { font-weight: 500; color: var(--text); }
.hours td { color: var(--text-muted); text-align: right; }

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

/* === Footer === */
.site-footer { background: #0B1E44; color: #CBD5E1; padding-block: 3rem 1.5rem; margin-top: 2rem; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.3fr; } }
.footer-logo img { height: 64px; width: auto; filter: brightness(0) invert(1); }
.footer-tag { color: #94A3B8; margin-top: .5rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.site-footer a { color: #CBD5E1; }
.site-footer a:hover { color: #fff; }
.site-footer address { font-style: normal; color: #CBD5E1; line-height: 1.7; margin-bottom: 1rem; }
.footer-legal { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .875rem; }
.footer-bottom { text-align: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .875rem; color: #94A3B8; }
.footer-bottom p { color: inherit; margin: 0; }

/* === Cookie banner === */
.consent-panel {
  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; border-radius: var(--radius); box-shadow: 0 20px 60px -20px rgba(0,0,0,.5);
  max-width: 640px; margin-inline: auto;
}
.consent-panel.is-visible { display: block; }
.consent-panel p { color: inherit; margin: 0 0 .85rem; font-size: .95rem; }
.consent-panel__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.consent-panel button { font: inherit; font-weight: 600; padding: .55rem 1rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.25); background: transparent; color: var(--color-neutral-light); cursor: pointer; transition: background .2s; }
.consent-panel button:hover { background: rgba(255,255,255,.1); }
.consent-panel [data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.consent-panel [data-cookie-accept]:hover { background: #EA580C; }
.consent-panel__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.15); }
.consent-panel__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.consent-panel__prefs [data-cookie-save] { align-self: flex-start; margin-top: .5rem; background: var(--color-neutral-light); color: var(--color-neutral-dark); border-color: transparent; }

/* === Reveal (scroll 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; }
}

.reveal,[data-reveal],.fade-in,.animate-in{opacity:1!important;transform:none!important;visibility:visible!important}
