:root {
  --color-primary: #0D9488;
  --color-secondary: #2DD4BF;
  --color-accent: #F97316;
  --color-neutral-dark: #134E4A;
  --color-neutral-light: #F0FDFA;
  --color-text: #0f2a2a;
  --color-muted: #4b6b6b;
  --color-border: rgba(19, 78, 74, 0.12);
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 20px rgba(19, 78, 74, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(19, 78, 74, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(19, 78, 74, 0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Base === */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-neutral-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 0.75rem; font-weight: 700; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s var(--ease-hover); }
a:hover { color: var(--color-neutral-dark); }
img { max-width: 100%; height: auto; display: block; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--color-neutral-dark); color: var(--color-neutral-light); padding: .75rem 1rem; z-index: 999; }
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding-inline: 1.25rem; }
.container--narrow { max-width: 780px; }

/* === Header (glass nav) === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  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 var(--color-border);
  transition: background .3s var(--ease-hover), box-shadow .3s var(--ease-hover);
}
.site-header.scrolled { background: rgba(240, 253, 250, 0.92); box-shadow: 0 6px 24px -18px rgba(19,78,74,.35); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .75rem; max-width: 1200px; margin: 0 auto; padding-inline: 1.25rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) { .logo img { height: 96px; } }
.logo--footer img { height: 56px; }
@media (min-width: 768px) { .logo--footer img { height: 72px; } }

.primary-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .25rem; }
.primary-nav a { display: block; padding: .6rem .75rem; font-weight: 500; color: var(--color-neutral-dark); position: relative; }
.primary-nav a::after { content: ''; position: absolute; left: .75rem; right: .75rem; bottom: .4rem; height: 2px; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease-hover); }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav .nav-cta { background: var(--color-primary); color: var(--color-neutral-light); border-radius: 999px; padding: .55rem 1.1rem; }
.primary-nav .nav-cta:hover { background: var(--color-neutral-dark); color: var(--color-neutral-light); }
.primary-nav .nav-cta::after { display: none; }

.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; background: none; border: 1px solid var(--color-border); border-radius: 10px; cursor: pointer; }
.nav-toggle__bar { width: 22px; height: 2px; background: var(--color-neutral-dark); }
.primary-nav { display: none; width: 100%; }
.primary-nav.is-open { display: block; padding-block: .5rem 1rem; }

@media (min-width: 960px) {
  .site-header__inner { flex-wrap: nowrap; }
  .nav-toggle { display: none; }
  .primary-nav { display: block; width: auto; }
  .primary-nav ul { flex-direction: row; align-items: center; gap: .25rem; }
}
@media (max-width: 959px) {
  .site-header__inner { flex-wrap: wrap; }
}

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1.4rem; border-radius: 999px; font-weight: 600; font-family: var(--font-body); font-size: 1rem; border: 1px solid transparent; cursor: pointer; text-decoration: none; transition: transform .2s var(--ease-hover), box-shadow .2s var(--ease-hover), background .2s; }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }
.btn--primary { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: var(--color-neutral-light); box-shadow: 0 12px 28px -14px rgba(13, 148, 136, .55); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -16px rgba(13, 148, 136, .75); color: var(--color-neutral-light); }
.btn--ghost { background: transparent; color: var(--color-neutral-dark); border-color: var(--color-border); }
.btn--ghost:hover { background: rgba(19,78,74,.05); transform: translateY(-2px); }
.btn--accent { background: var(--color-accent); color: #fff; box-shadow: 0 12px 28px -14px rgba(249,115,22,.55); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -16px rgba(249,115,22,.7); color: #fff; }
.btn--sm { padding: .55rem 1rem; font-size: .9rem; }

/* === Hero (centered / saas spotlight) === */
.hero { position: relative; overflow: hidden; padding-block: 4rem 2rem; text-align: center; background: linear-gradient(180deg, rgba(45,212,191,0.10), transparent 70%); }
.hero__glow { position: absolute; inset: -20% -10% auto -10%; height: 60%; background: radial-gradient(60% 60% at 50% 30%, rgba(45,212,191,0.35), transparent 70%); filter: blur(20px); pointer-events: none; z-index: 0; }
.hero__inner { position: relative; z-index: 1; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 600; color: var(--color-primary); margin-bottom: 1rem; }
.hero__title { max-width: 24ch; margin-inline: auto; }
.hero__sub { max-width: 52ch; margin: 1rem auto 1.75rem; font-size: 1.15rem; color: var(--color-muted); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.hero__figure { margin: 3rem auto 0; max-width: 1000px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--color-border); background: #fff; }
.hero__figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

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

/* === Sections === */
.section { padding-block: 3.5rem; }
@media (min-width: 768px) { .section { padding-block: 5rem; } }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.lede { color: var(--color-muted); font-size: 1.1rem; }

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

.card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease-hover), box-shadow .25s var(--ease-hover); display: block; color: inherit; }
.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(13,148,136,.12), rgba(45,212,191,.18)); color: var(--color-primary); margin-bottom: .75rem; }
.card h3 { margin-bottom: .5rem; }
.card p { margin: 0; color: var(--color-muted); font-size: .97rem; }
.card-link { text-decoration: none; }
.card-link:hover h3 { color: var(--color-primary); }

/* === Testimonial === */
.section--testimonial { background: linear-gradient(180deg, transparent, rgba(45,212,191,0.08)); }
.quote { margin: 0; padding: 2rem; background: #fff; border-radius: var(--radius-lg); border-left: 4px solid var(--color-accent); box-shadow: var(--shadow-sm); text-align: left; }
.quote p { font-size: 1.2rem; line-height: 1.55; color: var(--color-neutral-dark); font-family: var(--font-heading); font-weight: 500; }
.quote cite { display: block; margin-top: 1rem; font-style: normal; font-weight: 600; color: var(--color-primary); font-size: .95rem; }

/* === Stats === */
.stats { text-align: center; }
.stat { padding: 1.5rem; background: #fff; border-radius: var(--radius-md); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); transition: transform .25s var(--ease-hover); }
.stat:hover { transform: translateY(-4px); }
.stat__value { display: block; font-family: var(--font-heading); font-size: clamp(2.25rem, 5vw, 3.25rem); font-weight: 800; color: var(--color-accent); letter-spacing: -0.02em; line-height: 1; margin-bottom: .5rem; }
.stat p { margin: 0; color: var(--color-muted); }

/* === CTA band === */
.cta-band { padding: 4rem 0; background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: var(--color-neutral-light); position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 80% at 20% 20%, rgba(249,115,22,.25), transparent 70%); pointer-events: none; }
.cta-band__inner { position: relative; text-align: center; }
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(240,253,250,.85); max-width: 60ch; margin-inline: auto; margin-bottom: 1.5rem; }

/* === FAQ === */
.faq details { border: 1px solid var(--color-border); background: #fff; border-radius: var(--radius-md); padding: 1.1rem 1.25rem; margin-bottom: .75rem; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 600; font-family: var(--font-heading); color: var(--color-neutral-dark); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::after { content: '+'; font-size: 1.4rem; color: var(--color-primary); transition: transform .2s; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin: .75rem 0 0; color: var(--color-muted); }

/* === Form === */
.form { display: grid; gap: 1rem; margin-top: 1.5rem; }
.form__row { display: flex; flex-direction: column; gap: .35rem; }
.form label { font-weight: 600; font-size: .95rem; color: var(--color-neutral-dark); }
.form input, .form textarea { font: inherit; padding: .75rem .9rem; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: #fff; color: var(--color-text); transition: border-color .2s, box-shadow .2s; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(13,148,136,.15); }

/* === Contact grid & hours === */
.contact-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin-top: 2rem; }
@media (min-width: 700px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { padding: .5rem .25rem; border-bottom: 1px dashed var(--color-border); text-align: left; }
.hours th { color: var(--color-muted); font-weight: 500; }

address { font-style: normal; color: var(--color-muted); }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(240,253,250,.85); padding-block: 3rem 1.5rem; margin-top: 4rem; }
.site-footer a { color: var(--color-secondary); }
.site-footer a:hover { color: #fff; }
.site-footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.footer-heading { font-size: .9rem; text-transform: uppercase; letter-spacing: .12em; color: var(--color-neutral-light); margin-bottom: .75rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.footer-tagline { color: rgba(240,253,250,.7); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; padding: 0; }
.footer-legal li { list-style: none; }
.site-footer__copy { border-top: 1px solid rgba(240,253,250,.12); margin-top: 2rem; padding-top: 1.25rem; font-size: .85rem; color: rgba(240,253,250,.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; border-radius: var(--radius-md); box-shadow: 0 30px 60px -20px rgba(0,0,0,.4); max-width: 620px; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 .9rem; font-size: .95rem; color: rgba(240,253,250,.9); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions .btn--ghost { color: var(--color-neutral-light); border-color: rgba(240,253,250,.25); }
.cookie-banner__actions .btn--ghost:hover { background: rgba(240,253,250,.1); }
.cookie-banner__prefs { display: grid; gap: .5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(240,253,250,.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .92rem; }

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