/* === Tokens === */
:root {
  --color-primary: #64748B;
  --color-secondary: #94A3B8;
  --color-accent: #F97316;
  --color-neutral-dark: #334155;
  --color-neutral-light: #F8FAFC;
  --color-border: rgba(51, 65, 85, 0.12);
  --color-text: #1E293B;
  --color-muted: #64748B;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px rgba(15, 23, 42, 0.06);
  --shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 30px 60px -25px rgba(15, 23, 42, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hover-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset === */
* { 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-neutral-light);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-neutral-dark); text-decoration: none; }
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 0.6em; font-weight: 700; }
p { margin: 0 0 1em; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding-inline: 1.25rem; }
.narrow { max-width: 760px; margin-inline: auto; }
.eyebrow { font-family: var(--font-heading); font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--color-accent); margin: 0 0 .8rem; }

/* === Header / nav === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 250, 252, 0.7);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background .2s var(--hover-ease), box-shadow .2s var(--hover-ease), border-color .2s var(--hover-ease);
}
.site-header.scrolled { background: rgba(248, 250, 252, 0.92); box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07); border-bottom-color: var(--color-border); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .75rem 1.25rem; max-width: 1180px; margin: 0 auto; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; transition: transform .25s var(--hover-ease), opacity .25s; }
.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); }
.primary-nav { display: none; gap: 1.75rem; align-items: center; }
.primary-nav a { position: relative; font-weight: 500; font-size: .98rem; padding: .35rem 0; color: var(--color-neutral-dark); }
.primary-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--hover-ease); }
.primary-nav a:not(.nav-cta):hover::after,
.primary-nav a.is-current::after { transform: scaleX(1); }
.nav-cta { background: var(--color-neutral-dark); color: var(--color-neutral-light) !important; padding: .55rem 1rem !important; border-radius: 999px; transition: transform .2s var(--hover-ease), box-shadow .2s var(--hover-ease); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(15, 23, 42, 0.35); }
.primary-nav.is-open { display: flex; }

@media (min-width: 880px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; position: static; flex-direction: row; padding: 0; background: none; box-shadow: none; }
  .logo img { height: 96px; }
}
@media (max-width: 879.98px) {
  .primary-nav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; padding: 1rem 1.25rem 1.5rem; background: rgba(248, 250, 252, 0.98); backdrop-filter: blur(12px); border-bottom: 1px solid var(--color-border); gap: .5rem; }
  .primary-nav a { padding: .75rem .25rem; border-bottom: 1px solid var(--color-border); }
  .primary-nav .nav-cta { text-align: center; border-bottom: 0; margin-top: .5rem; }
}

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; padding: .85rem 1.4rem; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--hover-ease), box-shadow .2s var(--hover-ease), background .2s; line-height: 1; }
.btn--primary { background: linear-gradient(135deg, var(--color-neutral-dark), var(--color-primary)); color: var(--color-neutral-light); box-shadow: 0 10px 24px -10px rgba(51, 65, 85, 0.6); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(51, 65, 85, 0.7); }
.btn--accent { background: var(--color-accent); color: #fff; box-shadow: 0 10px 24px -10px rgba(249, 115, 22, 0.55); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(249, 115, 22, 0.65); }
.btn--ghost { background: transparent; color: var(--color-neutral-dark); border-color: var(--color-border); }
.btn--ghost:hover { background: rgba(51, 65, 85, 0.05); transform: translateY(-2px); }
.btn--sm { padding: .55rem .95rem; font-size: .88rem; }
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }

/* === Hero (saas-spotlight) === */
.hero { position: relative; overflow: hidden; padding: 5rem 0 3rem; }
.hero__bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(60% 60% at 20% 10%, rgba(249, 115, 22, 0.10), transparent 60%), radial-gradient(50% 50% at 90% 30%, rgba(100, 116, 139, 0.18), transparent 60%), linear-gradient(180deg, #F8FAFC 0%, #EEF2F6 100%); }
.hero__inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding-inline: 1.25rem; text-align: left; }
.hero h1 { font-size: clamp(2.25rem, 5.5vw, 4.25rem); font-weight: 800; letter-spacing: -0.025em; max-width: 22ch; }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--color-muted); max-width: 56ch; margin-bottom: 2rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 3rem; }
.hero__visual { margin-top: 2.5rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 60px -25px rgba(15, 23, 42, 0.35); position: relative; }
.hero__visual::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4); border-radius: inherit; pointer-events: none; }
.hero__visual img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.hero--inner { padding: 4rem 0 2.5rem; }
@media (min-width: 768px) {
  .hero { padding: 7rem 0 4rem; }
  .hero--inner { padding: 5rem 0 3rem; }
}

/* === Proof strip === */
.proof-strip { padding: 1.25rem 0; background: var(--color-neutral-dark); color: var(--color-neutral-light); }
.proof-strip p { margin: 0; text-align: center; font-size: .95rem; opacity: .92; }
.proof-strip strong { color: var(--color-accent); font-weight: 700; }

/* === Sections === */
.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 5.5rem 0; } }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section__head h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.section__sub { color: var(--color-muted); font-size: 1.05rem; }

.intro-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.intro-grid h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); }
.intro-grid__img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.intro-grid__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
@media (min-width: 880px) {
  .intro-grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
}

/* === Cards grid (highlights / services) === */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
.card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--hover-ease), box-shadow .25s var(--hover-ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(100,116,139,0.15)); color: var(--color-neutral-dark); margin-bottom: 1rem; }
.card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.card p { color: var(--color-muted); margin: 0; font-size: .96rem; }
.card-link { display: block; color: inherit; }

/* === Quote === */
.section--quote { padding: 3.5rem 0; }
.quote { max-width: 820px; margin: 0 auto; text-align: center; padding: 2rem 1rem; }
.quote p { font-family: var(--font-heading); font-size: clamp(1.2rem, 2.2vw, 1.6rem); line-height: 1.45; color: var(--color-neutral-dark); margin-bottom: 1.2rem; font-weight: 500; }
.quote cite { font-style: normal; font-size: .95rem; color: var(--color-muted); }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-neutral-dark), var(--color-primary)); color: var(--color-neutral-light); padding: 3.5rem 0; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(40% 60% at 80% 50%, rgba(249, 115, 22, 0.25), transparent 70%); pointer-events: none; }
.cta-band__inner { display: grid; gap: 1.5rem; align-items: center; position: relative; z-index: 1; }
.cta-band h2 { color: var(--color-neutral-light); margin-bottom: .5rem; font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.cta-band p { color: rgba(248, 250, 252, 0.85); margin: 0; }
@media (min-width: 768px) { .cta-band__inner { grid-template-columns: 1fr auto; gap: 2.5rem; } }

/* === Pricing === */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 880px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.pricing-card { position: relative; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 2.25rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .25s var(--hover-ease), box-shadow .25s var(--hover-ease); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card--featured { border: 2px solid var(--color-accent); box-shadow: var(--shadow); }
.pricing-card__badge { position: absolute; top: -.7rem; right: 1.25rem; background: var(--color-accent); color: #fff; font-family: var(--font-heading); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .35rem .75rem; border-radius: 999px; }
.pricing-card__plan { font-size: 1.1rem; font-weight: 600; color: var(--color-muted); margin-bottom: .5rem; letter-spacing: .02em; }
.pricing-card__price { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; color: var(--color-neutral-dark); margin-bottom: .75rem; }
.pricing-card__lede { color: var(--color-muted); font-size: .98rem; margin-bottom: 1.25rem; }
.pricing-card__features { list-style: none; padding: 0; margin: 0 0 2rem; flex: 1; }
.pricing-card__features li { display: flex; gap: .65rem; align-items: flex-start; padding: .5rem 0; border-top: 1px solid var(--color-border); font-size: .95rem; color: var(--color-neutral-dark); }
.pricing-card__features li:first-child { border-top: 0; }
.pricing-card__features li span { color: var(--color-accent); font-weight: 700; flex-shrink: 0; }
.pricing-card__cta { align-self: stretch; }

/* === FAQ === */
.faq { display: flex; flex-direction: column; gap: .75rem; }
.faq details { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; transition: box-shadow .2s var(--hover-ease); }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; line-height: 1; color: var(--color-accent); transition: transform .25s var(--hover-ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: .9rem 0 0; color: var(--color-muted); }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }
.hours { width: 100%; border-collapse: collapse; margin-top: 1rem; font-size: .95rem; }
.hours caption { text-align: left; font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); padding-bottom: .5rem; }
.hours th, .hours td { text-align: left; padding: .55rem .25rem; border-bottom: 1px solid var(--color-border); }
.hours th { font-weight: 500; color: var(--color-muted); }
.contact-form { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.contact-form h2 { font-size: 1.4rem; margin-bottom: 1.25rem; }
.contact-form label { display: block; font-family: var(--font-heading); font-weight: 500; font-size: .9rem; margin: .9rem 0 .4rem; color: var(--color-neutral-dark); }
.contact-form input, .contact-form textarea { width: 100%; font-family: var(--font-body); font-size: 1rem; padding: .75rem .9rem; 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: 0; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(249,115,22,0.15); }
.contact-form button { margin-top: 1.5rem; width: 100%; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(248, 250, 252, 0.85); padding: 3.5rem 0 1.5rem; margin-top: 2rem; }
.site-footer h3 { color: var(--color-neutral-light); font-size: 1rem; margin-bottom: 1rem; }
.site-footer a { color: rgba(248, 250, 252, 0.85); }
.site-footer a:hover { color: var(--color-accent); }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.25rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(248, 250, 252, 0.08); }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.footer__tagline { color: var(--color-secondary); margin-top: .75rem; max-width: 28ch; }
.footer__legal { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(248, 250, 252, 0.08); font-size: .9rem; }
.logo--footer img { height: 60px; filter: brightness(0) invert(1); opacity: .95; }
.site-footer__base { padding-top: 1.25rem; text-align: center; font-size: .85rem; color: rgba(248, 250, 252, 0.6); }

/* === 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); box-shadow: 0 20px 50px -15px rgba(15, 23, 42, 0.5); max-width: 540px; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .92rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner .btn--ghost { color: var(--color-neutral-light); border-color: rgba(248, 250, 252, 0.25); }
.cookie-banner .btn--ghost:hover { background: rgba(248, 250, 252, 0.08); }
.cookie-banner__prefs { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(248, 250, 252, 0.12); display: flex; flex-direction: column; gap: .5rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs button { margin-top: .75rem; align-self: flex-start; }

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