:root {
  --color-primary: #0D9488;
  --color-secondary: #14B8A6;
  --color-accent: #F97316;
  --color-neutral-dark: #134E4A;
  --color-neutral-light: #F0FDFA;
  --color-text: #0F2A29;
  --color-muted: #4B7773;
  --color-border: rgba(19, 78, 74, 0.12);
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 20px rgba(19, 78, 74, 0.06);
  --shadow-md: 0 12px 32px -12px rgba(19, 78, 74, 0.18);
  --shadow-lg: 0 24px 60px -24px rgba(13, 148, 136, 0.35);
}

/* === 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: #ffffff; line-height: 1.6; font-size: 16px; }
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--color-neutral-dark); }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* === Typography === */
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 1rem; }
h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-neutral-dark); }
p { margin: 0 0 1rem; }
.eyebrow { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; color: var(--color-primary); font-weight: 700; margin-bottom: 1rem; }

/* === Layout === */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 780px; }
.section { padding-block: 4.5rem; }
.section-tinted { background: linear-gradient(180deg, #ffffff 0%, var(--color-neutral-light) 100%); }
.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-sub { color: var(--color-muted); font-size: 1.125rem; margin-bottom: 1.5rem; }
.section-visual { margin: 0 0 3rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.section-visual img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }

/* === 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 transparent; transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.site-header.scrolled { background: rgba(255, 255, 255, 0.88); box-shadow: 0 4px 24px -12px rgba(19, 78, 74, 0.18); border-bottom-color: var(--color-border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.75rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; }
.logo-footer img { height: 64px; }
.primary-nav { display: none; align-items: center; gap: 1.75rem; }
.primary-nav a { position: relative; font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; color: var(--color-neutral-dark); padding-block: 0.35rem; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--color-primary); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav .nav-cta { background: var(--color-primary); color: #fff; padding: 0.55rem 1.1rem; border-radius: 999px; }
.primary-nav .nav-cta::after { display: none; }
.primary-nav .nav-cta:hover { background: var(--color-neutral-dark); color: #fff; }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; transition: transform .2s var(--ease), opacity .2s var(--ease); }
.primary-nav.is-open { display: flex; flex-direction: column; align-items: stretch; gap: 0.5rem; padding: 1rem 1.25rem 1.25rem; background: #fff; position: absolute; left: 0; right: 0; top: 100%; border-top: 1px solid var(--color-border); box-shadow: var(--shadow-md); }
.primary-nav.is-open a { padding: 0.75rem 0.25rem; }

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

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

/* === Hero (saas-spotlight) === */
.hero { position: relative; overflow: hidden; padding-block: 4rem 3rem; background: linear-gradient(180deg, var(--color-neutral-light) 0%, #ffffff 100%); }
.hero-glow { position: absolute; inset: 0; z-index: 0; background: radial-gradient(60% 55% at 50% 0%, rgba(20, 184, 166, 0.18) 0%, transparent 70%), radial-gradient(30% 30% at 85% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 70%); pointer-events: none; }
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero h1 { max-width: 22ch; margin-inline: auto; }
.hero .lede { font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--color-muted); max-width: 58ch; margin: 1rem auto 2rem; }
.hero-ctas { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-visual { margin-top: 2rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #fff; }
.hero-visual img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.hero-inner-page { padding-block: 3.5rem 2rem; }
.hero-inner-page h1 { font-size: clamp(2.1rem, 4vw, 3.25rem); }

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

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

/* === Cards === */
.card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(13, 148, 136, 0.3); }
.card-link { text-decoration: none; color: inherit; }
.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: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(20, 184, 166, 0.18)); color: var(--color-primary); margin-bottom: 1rem; }
.card p { color: var(--color-muted); margin: 0; }

/* === Pricing === */
.grid-pricing { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 900px) { .grid-pricing { 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-lg); padding: 2.25rem; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.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); transform: none; }
@media (min-width: 900px) { .pricing-card--featured { transform: translateY(-8px); } }
.pricing-card__badge { position: absolute; top: -12px; right: 1.25rem; background: var(--color-accent); color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.35rem 0.75rem; border-radius: 999px; }
.pricing-card__plan { font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-primary); margin-bottom: 0.5rem; }
.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: 1rem; letter-spacing: -0.02em; }
.pricing-card__lede { color: var(--color-muted); font-size: 0.95rem; margin-bottom: 1.25rem; }
.pricing-card__features { list-style: none; padding: 0; margin: 0 0 1.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-card__features li { display: flex; gap: 0.5rem; align-items: flex-start; color: var(--color-text); font-size: 0.95rem; }
.pricing-card__features li span { color: var(--color-primary); font-weight: 700; flex-shrink: 0; }
.pricing-card__cta { margin-top: auto; }

/* === Testimonial === */
.testimonial { margin: 0; padding: 2.5rem 1rem; text-align: center; }
.testimonial p { font-family: var(--font-heading); font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.5; color: var(--color-neutral-dark); font-weight: 500; margin-bottom: 1.5rem; max-width: 60ch; margin-inline: auto; }
.testimonial cite { font-style: normal; color: var(--color-muted); font-size: 0.95rem; font-weight: 600; }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-neutral-dark) 100%); color: #fff; padding-block: 3.5rem; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(40% 60% at 90% 50%, rgba(249, 115, 22, 0.25) 0%, transparent 70%); pointer-events: none; }
.cta-inner { position: relative; display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.cta-band h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-band p { color: rgba(240, 253, 250, 0.85); margin: 0; max-width: 60ch; }
@media (min-width: 768px) { .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; } }

/* === FAQ === */
.faq { display: flex; flex-direction: column; gap: 0.75rem; }
.faq details { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1rem 1.25rem; box-shadow: var(--shadow-sm); transition: border-color .2s var(--ease); }
.faq details[open] { border-color: rgba(13, 148, 136, 0.35); }
.faq summary { font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); cursor: pointer; list-style: none; padding-right: 1.5rem; 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.25rem; color: var(--color-primary); font-weight: 700; transition: transform .2s var(--ease); }
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 0.75rem 0 0; color: var(--color-muted); }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.15fr; align-items: start; } }
.contact-details address { font-style: normal; line-height: 1.7; margin-bottom: 1.5rem; }
.hours { width: 100%; border-collapse: collapse; margin-top: 0.5rem; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.hours th, .hours td { padding: 0.7rem 1rem; text-align: left; border-bottom: 1px solid var(--color-border); font-weight: 500; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: none; }
.hours th { font-family: var(--font-heading); color: var(--color-neutral-dark); width: 45%; }
.hours td { color: var(--color-muted); }

.contact-form { background: #fff; padding: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--color-border); box-shadow: var(--shadow-md); }
.contact-form h2 { margin-bottom: 1.5rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); margin-bottom: 0.35rem; font-size: 0.9rem; }
.field input, .field textarea { width: 100%; padding: 0.75rem 0.9rem; border: 1.5px solid var(--color-border); border-radius: 10px; font: inherit; color: var(--color-text); background: #fff; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15); }
.field textarea { resize: vertical; min-height: 120px; }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; color: var(--color-muted); margin: 1rem 0 1.25rem; line-height: 1.5; }
.form-consent input { margin-top: 3px; flex-shrink: 0; accent-color: var(--color-primary); }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(240, 253, 250, 0.85); padding-block: 3.5rem 1.5rem; }
.site-footer h4 { color: #fff; margin-bottom: 1rem; }
.site-footer a { color: rgba(240, 253, 250, 0.85); }
.site-footer a:hover { color: var(--color-secondary); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.footer-tagline { color: rgba(240, 253, 250, 0.7); margin-top: 0.75rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact address { font-style: normal; line-height: 1.7; margin-bottom: 0.75rem; }
.footer-contact p { margin: 0.3rem 0; }
.footer-legal { margin-top: 1.25rem !important; font-size: 0.9rem; color: rgba(240, 253, 250, 0.6); }
.footer-bottom { border-top: 1px solid rgba(240, 253, 250, 0.12); padding-top: 1.25rem; font-size: 0.85rem; color: rgba(240, 253, 250, 0.55); text-align: center; }
.footer-bottom p { margin: 0; }

/* === 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.5rem; border-radius: var(--radius-lg); box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.45); max-width: 620px; margin-inline: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.95rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions .btn-ghost { color: var(--color-neutral-light); border-color: rgba(240, 253, 250, 0.35); }
.cookie-banner__actions .btn-ghost:hover { border-color: var(--color-secondary); color: var(--color-secondary); }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; padding-top: 1rem; border-top: 1px solid rgba(240, 253, 250, 0.15); }
.cookie-banner__prefs label { display: flex; gap: 0.5rem; align-items: center; font-size: 0.9rem; }
.cookie-banner__prefs input { accent-color: var(--color-accent); }

/* === Reveal on scroll === */
.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; } .site-header { transition: none; } }
