/* === Tokens === */
:root {
  --color-primary: #0D9488;
  --color-secondary: #14B8A6;
  --color-accent: #F97316;
  --color-neutral-dark: #134E4A;
  --color-neutral-light: #F0FDFA;
  --color-text: #0F2E2B;
  --color-muted: #4B6B67;
  --color-border: rgba(19, 78, 74, 0.12);
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 20px rgba(19, 78, 74, 0.06);
  --shadow: 0 20px 60px -20px rgba(19, 78, 74, 0.25);
  --shadow-hover: 0 30px 80px -30px rgba(19, 78, 74, 0.35);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); color: var(--color-text); background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--color-neutral-dark); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 .75rem; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1rem; }
button { font-family: inherit; }

/* === Layout === */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 760px; }
.section { padding-block: 4rem; }
.section--tint { background: linear-gradient(180deg, var(--color-neutral-light) 0%, #fff 100%); }
.section--quote { background: var(--color-neutral-light); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head p { color: var(--color-muted); font-size: 1.05rem; }
.center { text-align: center; }

/* === Header / Nav === */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(240, 253, 250, 0.72); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); border-bottom: 1px solid transparent; transition: background .3s ease, box-shadow .3s ease, border-color .3s ease; }
.site-header.scrolled { background: rgba(255, 255, 255, 0.88); box-shadow: 0 4px 30px rgba(19, 78, 74, 0.08); border-bottom-color: var(--color-border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .85rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle { background: none; border: 0; padding: .5rem; cursor: pointer; display: inline-flex; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--color-neutral-dark); display: block; border-radius: 2px; transition: transform .2s ease; }
.primary-nav { position: fixed; inset: 72px 0 auto 0; background: #fff; border-bottom: 1px solid var(--color-border); padding: 1rem 1.25rem 1.5rem; display: none; flex-direction: column; gap: .25rem; box-shadow: 0 20px 40px -20px rgba(19,78,74,.25); }
.primary-nav.is-open { display: flex; }
.primary-nav a { color: var(--color-neutral-dark); font-weight: 500; padding: .65rem .25rem; border-radius: 8px; }
.primary-nav a.is-active { color: var(--color-primary); }
.primary-nav .nav-cta { background: var(--color-neutral-dark); color: #fff; padding: .65rem 1.1rem; border-radius: 999px; text-align: center; margin-top: .5rem; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { position: static; display: flex; flex-direction: row; align-items: center; gap: 1.75rem; background: transparent; border: 0; box-shadow: none; padding: 0; }
  .primary-nav a { position: relative; padding: .35rem 0; }
  .primary-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 100%; background: var(--color-primary); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
  .primary-nav a:not(.nav-cta):hover::after, .primary-nav a.is-active::after { transform: scaleX(1); }
  .primary-nav .nav-cta { margin-top: 0; padding: .55rem 1.1rem; }
  .primary-nav .nav-cta:hover { background: var(--color-primary); color: #fff; }
  .logo img { height: 96px; }
}

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: .98rem; border: 2px solid transparent; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s ease, color .2s ease; text-decoration: none; }
.btn--primary { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; box-shadow: 0 10px 30px -10px rgba(13, 148, 136, 0.5); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(13, 148, 136, 0.6); color: #fff; }
.btn--accent { background: var(--color-accent); color: #fff; box-shadow: 0 10px 30px -10px rgba(249, 115, 22, 0.5); }
.btn--accent:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 16px 40px -12px rgba(249, 115, 22, 0.6); }
.btn--ghost { background: transparent; color: var(--color-neutral-dark); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-2px); }
.btn--link { background: transparent; color: var(--color-neutral-dark); text-decoration: underline; padding: .5rem .75rem; }
.btn--sm { padding: .55rem 1rem; font-size: .9rem; }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

/* === Hero (saas-spotlight) === */
.hero { position: relative; overflow: hidden; padding: 3rem 0 2rem; background: linear-gradient(160deg, var(--color-neutral-light) 0%, #ffffff 65%); }
.hero--inner { padding-top: 2.5rem; }
.hero__glow { position: absolute; inset: -20% -10% auto -10%; height: 620px; background: radial-gradient(45% 60% at 30% 20%, rgba(20, 184, 166, 0.22), transparent 70%), radial-gradient(35% 50% at 80% 30%, rgba(249, 115, 22, 0.16), transparent 70%); pointer-events: none; z-index: 0; }
.hero__inner { position: relative; z-index: 1; text-align: center; }
.hero__inner h1 { max-width: 20ch; margin-inline: auto; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: .78rem; font-weight: 600; color: var(--color-primary); margin: 0 0 1rem; }
.hero__sub { max-width: 56ch; margin: 0 auto 1.75rem; font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--color-muted); }
.hero__ctas { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.75rem; }
.hero__visual { max-width: 940px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.hero__visual::after { content: ""; position: absolute; inset: -1px; border-radius: var(--radius-lg); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5); pointer-events: none; }
.hero__visual img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.proof-strip { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; align-items: center; margin-top: 2rem; color: var(--color-muted); font-size: .9rem; }
.proof-strip span { line-height: 1.4; }

@media (min-width: 768px) {
  .hero { padding: 5rem 0 4rem; }
  .hero--inner { padding-top: 4rem; }
}

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

.card { display: block; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s ease; color: inherit; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(13, 148, 136, 0.35); }
.card-link { text-decoration: none; }
.card-link:hover h3 { color: var(--color-primary); }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--color-neutral-light); color: var(--color-primary); margin-bottom: 1rem; }
.card p { color: var(--color-muted); margin-bottom: 0; }

/* === Quote === */
.quote { margin: 0; padding: 2rem 1rem; text-align: center; }
.quote p { font-family: var(--font-heading); font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.4; color: var(--color-neutral-dark); font-weight: 500; margin-bottom: 1.25rem; }
.quote cite { font-style: normal; color: var(--color-muted); font-size: .95rem; }

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

/* === FAQ === */
.faq { border-top: 1px solid var(--color-border); }
.faq details { border-bottom: 1px solid var(--color-border); padding: 1.1rem 0; }
.faq summary { list-style: none; cursor: pointer; font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); font-size: 1.05rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--color-primary); font-weight: 400; transition: transform .2s ease; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: .85rem 0 0; color: var(--color-muted); }

/* === Contact === */
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; } }
.contact-info h3 { margin-top: 1.5rem; }
.hours { border-collapse: collapse; width: 100%; margin-top: .5rem; }
.hours th, .hours td { text-align: left; padding: .5rem .25rem; border-bottom: 1px solid var(--color-border); font-weight: 400; color: var(--color-muted); }
.hours th { color: var(--color-neutral-dark); font-weight: 500; }
.contact-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); max-width: 640px; }

/* === Form === */
.contact-form { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem; }
.contact-form h2 { margin-bottom: .25rem; }
.contact-form label { display: flex; flex-direction: column; gap: .35rem; font-size: .92rem; color: var(--color-neutral-dark); font-weight: 500; }
.contact-form input, .contact-form textarea { font: inherit; padding: .75rem .9rem; border: 1px solid var(--color-border); border-radius: 10px; background: #fff; color: var(--color-text); transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15); }
.form-consent { flex-direction: row !important; align-items: flex-start; gap: .6rem !important; font-size: .85rem !important; color: var(--color-muted) !important; font-weight: 400 !important; }
.form-consent input { margin-top: .2rem; }
.form-consent a { color: var(--color-primary); text-decoration: underline; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(240, 253, 250, 0.85); padding: 3.5rem 0 1.5rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: .85rem; }
.site-footer a { color: rgba(240, 253, 250, 0.85); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .4rem; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.footer__tag { color: rgba(240, 253, 250, 0.7); margin-top: .5rem; }
.footer__legal { margin-top: 1rem !important; }
.footer__copy { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2.5rem; padding-top: 1.25rem; color: rgba(240, 253, 250, 0.6); }
.logo--footer img { filter: brightness(0) invert(1); opacity: .92; height: 64px; }

/* === 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 60px rgba(0,0,0,0.35); max-width: 640px; margin-inline: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 .9rem; font-size: .92rem; line-height: 1.55; color: rgba(240, 253, 250, 0.9); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions .btn--ghost { color: var(--color-neutral-light); border-color: rgba(255,255,255,0.25); }
.cookie-banner__actions .btn--link { color: var(--color-neutral-light); }
.cookie-banner__prefs { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }

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