:root {
  --color-primary: #0D9488;
  --color-secondary: #14B8A6;
  --color-accent: #F97316;
  --color-neutral-dark: #134E4A;
  --color-neutral-light: #F0FDFA;
  --color-text: #0B3B38;
  --color-muted: #5A7876;
  --color-border: rgba(19, 78, 74, 0.12);
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 20px rgba(11, 59, 56, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(11, 59, 56, 0.18);
  --shadow-lg: 0 20px 60px -20px rgba(11, 59, 56, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
  --maxw: 1180px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
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;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; }
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.15;
  margin: 0 0 0.75rem;
}
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* === Header (glass 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 var(--color-border);
  transition: background .25s var(--ease-hover), box-shadow .25s var(--ease-hover);
}
.site-header.scrolled {
  background: rgba(240, 253, 250, 0.94);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; }
.primary-nav__list {
  display: none;
  gap: 1.75rem;
  align-items: center;
}
.primary-nav__list a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.primary-nav__list a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--color-accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease-hover);
}
.primary-nav__list a:hover::after,
.primary-nav__list a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle {
  background: transparent; border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); padding: 0.5rem;
  color: var(--color-neutral-dark); cursor: pointer;
  display: inline-flex;
}
.nav-toggle:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.primary-nav.is-open .primary-nav__list {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--color-neutral-light);
  padding: 1rem 1.5rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  gap: 0.75rem; align-items: flex-start;
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600; font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s var(--ease-hover), box-shadow .2s var(--ease-hover), background .2s var(--ease-hover), color .2s var(--ease-hover);
}
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }
.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  box-shadow: 0 8px 24px -12px rgba(13, 148, 136, 0.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(13, 148, 136, 0.7); color: #fff; }
.btn--accent {
  background: var(--color-accent); color: #fff;
  box-shadow: 0 8px 24px -12px rgba(249, 115, 22, 0.55);
}
.btn--accent:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 14px 30px -12px rgba(249, 115, 22, 0.7); }
.btn--ghost {
  background: transparent; color: var(--color-neutral-dark);
  border-color: var(--color-border);
}
.btn--ghost:hover { background: rgba(19, 78, 74, 0.05); transform: translateY(-2px); }
.btn--sm { padding: 0.55rem 1rem; font-size: 0.85rem; }

/* === Hero (saas-spotlight) === */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 1rem 3rem;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(249, 115, 22, 0.10), transparent 60%),
    linear-gradient(140deg, rgba(13, 148, 136, 0.10), rgba(20, 184, 166, 0.04) 60%, transparent);
}
.hero::before {
  content: '';
  position: absolute; inset: -20% -10% auto auto;
  width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.18), transparent 60%);
  filter: blur(20px); z-index: 0; pointer-events: none;
}
.hero__inner, .hero__visual { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; }
.hero__inner { padding-block: 1rem 2rem; text-align: left; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.78rem; font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  max-width: 20ch;
  margin-bottom: 1.25rem;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--color-muted);
  max-width: 52ch;
  margin-bottom: 1.75rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__visual { margin-top: 2rem; }
.hero__visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10; object-fit: cover;
  width: 100%;
}
.hero--compact { padding-bottom: 2rem; }

/* === Section shell === */
.section { padding: 4rem 1rem; }
.section--tinted {
  background:
    radial-gradient(ellipse at 90% 0%, rgba(13, 148, 136, 0.08), transparent 60%),
    var(--color-neutral-light);
  border-block: 1px solid var(--color-border);
}
.section__inner { max-width: var(--maxw); margin: 0 auto; }
.section__inner--narrow { max-width: 780px; }
.section__head { text-align: center; margin-bottom: 2.5rem; }
.section__head h2, .section h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
}
.section h2 { margin-bottom: 1rem; }
.lede {
  font-size: 1.15rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}
.section__split { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: center; }
.section__media img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3; object-fit: cover; width: 100%;
}

/* === Grid & cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-hover), box-shadow .25s var(--ease-hover);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); margin: 0; }
.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, 0.15), rgba(20, 184, 166, 0.10));
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* === Quote === */
.quote {
  margin: 0;
  padding: 2rem 1.5rem;
  border-left: 4px solid var(--color-accent);
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.quote p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--color-neutral-dark);
  margin-bottom: 1rem;
}
.quote cite {
  font-style: normal; font-weight: 600;
  color: var(--color-muted); font-size: 0.95rem;
}

/* === CTA band === */
.cta-band {
  margin: 2rem 1rem;
  border-radius: var(--radius-xl);
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute; inset: auto -20% -50% auto;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.25), transparent 60%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative; z-index: 1;
  max-width: 780px; margin: 0 auto;
  text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.25rem); }
.cta-band p { color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; margin-bottom: 1.5rem; }

/* === Pricing === */
.pricing-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
.pricing-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease-hover), box-shadow .25s var(--ease-hover);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card--featured {
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-md);
}
.pricing-card__badge {
  position: absolute; top: -12px; right: 1.5rem;
  background: var(--color-accent); color: #fff;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 0.75rem; border-radius: 999px;
}
.pricing-card__plan { font-size: 1.35rem; margin-bottom: 0.25rem; }
.pricing-card__price {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700;
  color: var(--color-neutral-dark);
  margin-bottom: 0.75rem;
}
.pricing-card__lede { color: var(--color-muted); margin-bottom: 1.25rem; }
.pricing-card__features { margin-bottom: 1.75rem; }
.pricing-card__features li {
  display: flex; gap: 0.5rem; align-items: flex-start;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.95rem;
}
.pricing-card__features li:last-child { border-bottom: 0; }
.pricing-card__features li span { color: var(--color-primary); font-weight: 700; }
.pricing-card__cta { margin-top: auto; }

/* === FAQ === */
.faq details {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  transition: box-shadow .2s var(--ease-hover);
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; font-weight: 600;
  color: var(--color-neutral-dark);
  font-family: var(--font-heading);
  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; color: var(--color-accent);
  transition: transform .2s var(--ease-hover);
}
.faq details[open] summary::after { content: '−'; }
.faq p { margin: 0.75rem 0 0; color: var(--color-muted); }

/* === Contact form === */
.contact-form {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.35rem; }
.form-row label { font-weight: 500; color: var(--color-neutral-dark); font-size: 0.9rem; }
.form-row input,
.form-row textarea {
  font-family: var(--font-body); font-size: 1rem;
  padding: 0.7rem 0.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 var(--ease-hover), box-shadow .2s var(--ease-hover);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

/* === Hours === */
.hours-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  text-align: left; padding: 0.55rem 0;
  border-bottom: 1px dashed var(--color-border);
  font-weight: 500;
}
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.hours-table td { color: var(--color-muted); text-align: right; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(240, 253, 250, 0.85);
  padding: 3rem 1rem 1.5rem;
  margin-top: 3rem;
}
.site-footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: 2rem; grid-template-columns: 1fr;
}
.site-footer h2 {
  font-size: 1rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--color-neutral-light); margin-bottom: 1rem;
}
.site-footer a { color: var(--color-secondary); }
.site-footer a:hover { color: var(--color-neutral-light); }
.site-footer ul li { padding: 0.25rem 0; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.legal-links { margin-top: 0.75rem; font-size: 0.9rem; }
.logo--footer img { height: 60px; filter: brightness(0) invert(1); opacity: 0.9; }
.site-footer__base {
  max-width: var(--maxw); margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(240, 253, 250, 0.15);
  font-size: 0.85rem; color: rgba(240, 253, 250, 0.65);
  text-align: center;
}

/* === 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-md);
  box-shadow: var(--shadow-lg);
  max-width: 640px; margin-left: auto;
  font-size: 0.9rem;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.9rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner .btn--ghost { color: var(--color-neutral-light); border-color: rgba(240, 253, 250, 0.3); }
.cookie-banner .btn--ghost:hover { background: rgba(240, 253, 250, 0.1); }
.cookie-banner__prefs { margin-top: 0.9rem; display: flex; flex-direction: column; gap: 0.5rem; }
.cookie-banner__prefs label { display: flex; gap: 0.5rem; align-items: center; }

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

/* === Media queries === */
@media (min-width: 768px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav__list { display: flex; }
  .hero { padding: 5rem 1.5rem 4rem; }
  .hero__inner { padding-block: 2rem 3rem; }
  .section { padding: 5rem 1.5rem; }
  .cta-band { margin: 3rem 1.5rem; padding: 4rem 2rem; }
  .section__split { grid-template-columns: 1.1fr 1fr; gap: 3rem; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__inner { grid-template-columns: 1.3fr 1fr 1.2fr; gap: 3rem; }
}

@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .hero {
    padding: 6rem 2rem 5rem;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: none;
  }
  .hero__inner { padding-block: 0; margin: 0; padding-left: max(2rem, calc((100vw - var(--maxw)) / 2)); }
  .hero__visual { margin: 0; padding-right: max(2rem, calc((100vw - var(--maxw)) / 2)); }
  .hero--compact { grid-template-columns: 1fr; text-align: center; }
  .hero--compact .hero__inner { padding-left: 0; text-align: center; }
  .hero--compact .hero h1, .hero--compact .hero__sub { margin-left: auto; margin-right: auto; }
  .hero--compact .hero__ctas { justify-content: center; }
}
