:root {
  --color-primary: #64748B;
  --color-secondary: #94A3B8;
  --color-accent: #F97316;
  --color-neutral-dark: #334155;
  --color-neutral-light: #F8FAFC;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --shadow-sm: 0 2px 20px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 60px -20px rgba(15, 23, 42, 0.25);
  --border: 1px solid rgba(51, 65, 85, 0.12);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--color-neutral-dark); 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-neutral-dark); text-decoration: none; }
a:hover { color: var(--color-accent); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 0.75rem; font-weight: 700; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

/* === Layout === */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 780px; }
.section { padding-block: 4rem; }
@media (min-width: 768px) { .section { padding-block: 6rem; } }
.eyebrow { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-accent); margin: 0 0 1rem; }
.lede { font-size: 1.15rem; color: var(--color-primary); max-width: 60ch; margin-inline: auto 1.5rem; }

/* === Header (glass nav) === */
.site-header { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); background: rgba(248, 250, 252, 0.72); border-bottom: 1px solid rgba(51, 65, 85, 0.06); transition: box-shadow .3s, background .3s; }
.site-header.scrolled { background: rgba(248, 250, 252, 0.92); box-shadow: var(--shadow-sm); }
.nav-inner { max-width: 1180px; margin-inline: auto; padding: 0.75rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) { .logo img { height: 96px; } }
.nav-toggle { background: none; border: 0; color: var(--color-neutral-dark); cursor: pointer; padding: 0.5rem; display: inline-flex; }
.primary-nav { display: none; gap: 1.75rem; align-items: center; }
.primary-nav a { font-family: var(--font-heading); font-weight: 500; font-size: 0.95rem; position: relative; }
.primary-nav a::after { content: ''; position: absolute; left: 0; bottom: -4px; height: 2px; width: 100%; background: var(--color-accent); 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); }
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; }
}
.primary-nav.is-open { display: flex; flex-direction: column; align-items: flex-start; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1.25rem 1.5rem; border-bottom: var(--border); }

/* === Buttons === */
.btn { display: inline-block; font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; padding: 0.85rem 1.6rem; border-radius: 999px; border: 0; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s; text-align: center; }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: var(--color-neutral-light); box-shadow: 0 8px 20px -8px rgba(51, 65, 85, 0.45); }
.btn-accent { background: var(--color-accent); color: var(--color-neutral-light); box-shadow: 0 8px 20px -8px rgba(249, 115, 22, 0.55); }
.btn-ghost { background: transparent; color: var(--color-neutral-dark); border: 1px solid rgba(51, 65, 85, 0.2); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }

/* === Hero === */
.hero { position: relative; padding: 3.5rem 1.25rem 2rem; text-align: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: -20% 0 30% 0; background: radial-gradient(ellipse at top, rgba(249, 115, 22, 0.10), transparent 60%); pointer-events: none; z-index: 0; }
.hero__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.hero h1 { max-width: 22ch; margin-inline: auto; }
.hero__sub { max-width: 52ch; margin: 1rem auto 2rem; font-size: 1.15rem; color: var(--color-primary); }
.hero__cta { margin: 0; }
.hero__media { max-width: 1100px; margin: 3rem auto 0; padding: 0 1rem; position: relative; z-index: 1; }
.hero__media img { border-radius: 20px; box-shadow: var(--shadow-lg); aspect-ratio: 16/9; object-fit: cover; }
@media (min-width: 768px) {
  .hero { padding: 5rem 1.25rem 3rem; }
  .hero__media { margin-top: 4rem; }
}

/* === Sections === */
.section-intro { text-align: center; }
.section__head { text-align: center; margin-bottom: 3rem; max-width: 720px; margin-inline: auto; }
.section__head .lede { margin-inline: auto; }

/* Split */
.container.split { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) {
  .container.split { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.split__media img { border-radius: 20px; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }

/* === Cards grid === */
.grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@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: var(--border); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(249, 115, 22, 0.12); color: var(--color-accent); margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-primary); font-size: 0.97rem; }

/* === Testimonial === */
.testimonial { margin: 0; text-align: center; padding: 2rem 1rem; }
.testimonial p { font-family: var(--font-heading); font-size: clamp(1.25rem, 2.4vw, 1.75rem); line-height: 1.4; color: var(--color-neutral-dark); font-weight: 500; margin-bottom: 1.5rem; }
.testimonial cite { font-style: normal; font-size: 0.95rem; color: var(--color-primary); }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: var(--color-neutral-light); padding: 4rem 1.25rem; text-align: center; }
.cta-band h2 { color: var(--color-neutral-light); max-width: 24ch; margin-inline: auto; }
.cta-band p { color: rgba(248, 250, 252, 0.85); max-width: 55ch; margin: 0 auto 1.75rem; }

/* === Pricing === */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 900px) { .pricing-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.pricing-card { position: relative; padding: 2.25rem; border-radius: var(--radius); border: 1px solid rgba(51, 65, 85, 0.12); background: #fff; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.pricing-card--featured { border: 2px solid var(--color-accent); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card__badge { position: absolute; top: -0.75rem; right: 1.25rem; background: var(--color-accent); color: var(--color-neutral-light); font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.35rem 0.75rem; border-radius: 999px; }
.pricing-card__plan { font-size: 1.15rem; color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.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: 1rem; }
.pricing-card__lede { color: var(--color-primary); font-size: 0.95rem; margin-bottom: 1.5rem; }
.pricing-card__features { list-style: none; padding: 0; margin: 0 0 2rem; }
.pricing-card__features li { display: flex; gap: 0.6rem; align-items: flex-start; padding: 0.5rem 0; font-size: 0.95rem; border-bottom: 1px solid rgba(51, 65, 85, 0.06); }
.pricing-card__features li span { color: var(--color-accent); font-weight: 700; flex-shrink: 0; }
.pricing-card__cta { margin-top: auto; }

/* === FAQ === */
.faq-list details { background: #fff; border: var(--border); border-radius: 12px; padding: 1.1rem 1.35rem; margin-bottom: 0.75rem; box-shadow: var(--shadow-sm); }
.faq-list summary { cursor: pointer; font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; float: right; color: var(--color-accent); font-size: 1.3rem; line-height: 1; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { margin-top: 0.75rem; color: var(--color-primary); }

/* === Contact === */
.contact-info { font-style: normal; margin-bottom: 1rem; }
.hours { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.hours th, .hours td { text-align: left; padding: 0.5rem 0; border-bottom: 1px solid rgba(51, 65, 85, 0.08); font-size: 0.95rem; }
.hours th { font-weight: 500; color: var(--color-primary); }
.contact-form { display: grid; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label { font-family: var(--font-heading); font-weight: 500; font-size: 0.9rem; }
.field input, .field textarea { font: inherit; padding: 0.75rem 0.9rem; border: 1px solid rgba(51, 65, 85, 0.18); border-radius: 10px; background: #fff; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15); }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.88rem; color: var(--color-primary); line-height: 1.5; }
.form-consent input { margin-top: 0.2rem; }
.form-consent a { color: var(--color-accent); text-decoration: underline; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(248, 250, 252, 0.85); padding: 3.5rem 1.25rem 1.5rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.25rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.3fr; } }
.site-footer h3 { color: var(--color-neutral-light); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.site-footer a { color: rgba(248, 250, 252, 0.8); }
.site-footer a:hover { color: var(--color-accent); }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { font-size: 0.95rem; }
.site-footer address { font-style: normal; margin-bottom: 0.75rem; font-size: 0.93rem; line-height: 1.7; }
.tagline { color: rgba(248, 250, 252, 0.7); font-size: 0.95rem; margin-top: 0.75rem; }
.legal-links { font-size: 0.85rem; margin-top: 1rem; }
.copyright { text-align: center; font-size: 0.85rem; color: rgba(248, 250, 252, 0.55); margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(248, 250, 252, 0.1); max-width: 1180px; margin-inline: auto; }
.site-footer .logo img { filter: brightness(0) invert(1); }

/* === 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); box-shadow: var(--shadow-lg); max-width: 640px; margin-inline: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.92rem; color: rgba(248, 250, 252, 0.9); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions .btn { font-size: 0.85rem; padding: 0.55rem 1rem; }
.cookie-banner__actions .btn-ghost { color: var(--color-neutral-light); border-color: rgba(248, 250, 252, 0.3); }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.cookie-banner__prefs label { display: flex; gap: 0.5rem; align-items: center; font-size: 0.9rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; }

/* === 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 { scroll-behavior: auto; } }
