/* === Tokens === */
:root {
  --color-primary: #4F46E5;
  --color-secondary: #6366F1;
  --color-accent: #F97316;
  --color-neutral-dark: #312E81;
  --color-neutral-light: #EEF2FF;
  --color-text: #1F1B4D;
  --color-muted: #5B5B7A;
  --color-border: rgba(49, 46, 129, 0.12);
  --color-white: #FFFFFF;
  --font-heading: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 20px rgba(49, 46, 129, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(49, 46, 129, 0.18);
  --shadow-lg: 0 30px 60px -30px rgba(49, 46, 129, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-neutral-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 700;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1rem; }

/* === Layout === */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: 780px; }
.section { padding-block: 4rem; }
.section--alt { background: var(--color-neutral-light); }
.section__head { text-align: center; margin-bottom: 2.5rem; }
.section__head .lede { max-width: 60ch; margin-inline: auto; }
.eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  margin: 0 0 0.75rem;
}
.lede { font-size: 1.15rem; color: var(--color-muted); }

@media (min-width: 768px) {
  .section { padding-block: 6rem; }
}

/* === Header (glass nav) === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(238, 242, 255, 0.75);
  -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-out), background .3s var(--ease-out);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  max-width: 1200px; margin-inline: auto;
  padding: 0.75rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.primary-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.primary-nav a {
  font-family: var(--font-heading);
  color: var(--color-neutral-dark);
  font-weight: 500;
  font-size: 0.98rem;
  position: relative;
  padding: 0.25rem 0;
}
.primary-nav a:hover { text-decoration: none; }
.primary-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--color-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease-out);
}
.primary-nav a:not(.btn):hover::after,
.primary-nav a.is-current:not(.btn)::after { transform: scaleX(1); }

.nav-toggle {
  background: transparent; border: 0; width: 44px; height: 44px;
  display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  cursor: pointer; padding: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--color-neutral-dark);
  border-radius: 2px; transition: transform .25s var(--ease-out), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 899px) {
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    flex-direction: column; align-items: stretch;
    padding: 1rem 1.25rem 1.5rem; gap: 0.5rem;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }
  .primary-nav a { padding: 0.75rem 0.5rem; border-bottom: 1px solid var(--color-border); }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav.is-open { display: flex; }
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; }
  .logo img { height: 96px; }
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600; font-size: 0.98rem;
  border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  box-shadow: 0 8px 24px -8px rgba(79, 70, 229, 0.5);
}
.btn--primary:hover { box-shadow: 0 14px 32px -8px rgba(79, 70, 229, 0.6); }
.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 8px 24px -8px rgba(249, 115, 22, 0.5);
}
.btn--accent:hover { box-shadow: 0 14px 32px -8px rgba(249, 115, 22, 0.7); }
.btn--ghost {
  background: transparent;
  color: var(--color-neutral-dark);
  border-color: var(--color-border);
}
.btn--ghost:hover { background: var(--color-neutral-light); }
.btn--sm { padding: 0.55rem 1rem; font-size: 0.88rem; }
.btn:focus-visible { outline: 3px solid rgba(79, 70, 229, 0.45); outline-offset: 3px; }

/* === Hero (saas-spotlight) === */
.hero {
  position: relative; overflow: hidden;
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, var(--color-neutral-light) 0%, #FFFFFF 100%);
}
.hero__glow {
  position: absolute; inset: -20% 20% auto 20%; height: 60%;
  background: radial-gradient(closest-side, rgba(249, 115, 22, 0.18), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: 1100px; margin-inline: auto;
  padding: 0 1.25rem;
  text-align: center;
}
.hero h1 { max-width: 22ch; margin-inline: auto; margin-bottom: 1.25rem; }
.hero__sub { max-width: 58ch; margin: 0 auto 2rem; font-size: 1.15rem; color: var(--color-muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 3rem; }
.hero__visual {
  margin: 0 auto;
  max-width: 960px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: var(--color-neutral-light);
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero--sub { padding-bottom: 2rem; }

@media (min-width: 768px) {
  .hero { padding: 6rem 0 4rem; }
  .hero h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); }
}

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

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.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: linear-gradient(135deg, rgba(79,70,229,0.12), rgba(99,102,241,0.12));
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); margin: 0; }
.card--service { padding: 2rem; }

/* === Intro === */
.section--intro .container--narrow { text-align: left; }
.section--intro .eyebrow { display: block; }

/* === Testimonial === */
.section--testimonial {
  background: linear-gradient(180deg, #FFFFFF, var(--color-neutral-light));
}
.testimonial {
  margin: 0;
  text-align: center;
  padding: 2rem 0;
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--color-neutral-dark);
  line-height: 1.5;
  max-width: 60ch;
  margin: 0 auto 1.25rem;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.95rem;
}

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: var(--color-white);
  padding: 4rem 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: auto -20% -60% -20%; height: 200%;
  background: radial-gradient(closest-side, rgba(249, 115, 22, 0.2), transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: var(--color-white); position: relative; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 55ch; margin: 0 auto 1.75rem; position: relative; }
.cta-band .btn { position: relative; }

/* === FAQ === */
.faq { display: flex; flex-direction: column; gap: 0.75rem; }
.faq details {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-neutral-dark);
  list-style: none;
  padding-right: 2rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--color-primary);
  transition: transform .25s var(--ease-out);
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0.75rem 0 0; color: var(--color-muted); }

/* === Contact === */
.contact-band { background: var(--color-neutral-light); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 3rem; } }

.contact-info h3 { margin-top: 2rem; }
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.contact-list li { display: flex; flex-direction: column; padding: 0.85rem 0; border-bottom: 1px solid var(--color-border); }
.contact-list strong { font-family: var(--font-heading); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-primary); margin-bottom: 0.2rem; }
.hours { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours th, .hours td { text-align: left; padding: 0.6rem 0; border-bottom: 1px solid var(--color-border); font-size: 0.95rem; }
.hours th { font-weight: 500; font-family: var(--font-heading); color: var(--color-neutral-dark); }
.hours td { color: var(--color-muted); }

.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form label { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-form label > span { font-family: var(--font-heading); font-size: 0.88rem; font-weight: 600; color: var(--color-neutral-dark); }
.contact-form input, .contact-form textarea {
  font: inherit; font-family: var(--font-body);
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-neutral-light);
  color: var(--color-text);
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
}
.form-consent { display: flex !important; flex-direction: row !important; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--color-muted); }
.form-consent input { width: auto; margin-top: 0.2rem; }
.form-consent a { color: var(--color-primary); }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 1.5rem;
  margin-top: 4rem;
}
.site-footer h3 { color: var(--color-white); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.02em; }
.site-footer a { color: rgba(255, 255, 255, 0.8); }
.site-footer a:hover { color: var(--color-white); }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.4fr; } }
.logo--footer img { height: 60px; width: auto; filter: brightness(0) invert(1); }
.site-footer__tag { margin-top: 0.75rem; color: rgba(255,255,255,0.7); }
.site-footer__nav { display: flex; flex-direction: column; gap: 0.6rem; }
.site-footer__nav a { padding: 0.15rem 0; }
.site-footer__contact address { font-style: normal; margin-bottom: 1.25rem; line-height: 1.7; }
.site-footer__legal { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.9rem; }
.site-footer__base {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 3rem; padding-top: 1.5rem;
  text-align: center; font-size: 0.88rem; color: rgba(255,255,255,0.65);
}










@media (min-width: 600px) {

}

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

:root { --brand-accent: hsl(203 72% 44%); --brand-ink: hsl(209 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.reveal, .fade-in, .animate-in, [data-reveal], [data-animate], .scroll-reveal { opacity: 1 !important; transform: none !important; visibility: visible !important; }
.site-legal { min-height: 100vh; display: flex; flex-direction: column; }
.legal-main { flex: 1; padding: clamp(2rem, 6vw, 5rem) 1.25rem; }
.legal-card { width: min(100%, 52rem); margin: 0 auto; }
.legal-card h1, .legal-card h2 { color: var(--brand-ink, currentColor); }
.legal-date { margin-top: 2rem; opacity: .72; }
@media (max-width: 780px) { .site-header .container { gap: .75rem; } .site-header .logo { max-width: calc(100% - 3.75rem); } [data-nav-menu].is-open, .site-nav.is-open, .primary-nav.is-open, .nav-links.is-open { display: flex !important; } }
