:root {
  --color-primary: #2563EB;
  --color-secondary: #3B82F6;
  --color-accent: #F97316;
  --color-neutral-dark: #1E40AF;
  --color-neutral-light: #EFF6FF;
  --color-ink: #0F172A;
  --color-muted: #475569;
  --color-border: rgba(30, 64, 175, 0.12);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 32px -12px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 30px 60px -30px rgba(15, 23, 42, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Base === */
*, *::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-ink);
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s var(--ease-hover); }
a:hover { color: var(--color-neutral-dark); }

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-ink); line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 .8rem; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: 760px; }
.eyebrow { font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; color: var(--color-primary); margin: 0 0 1rem; }

/* === Header / nav (glass) === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(239, 246, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease-hover), box-shadow .25s var(--ease-hover), border-color .25s var(--ease-hover);
}
.site-header.scrolled { background: rgba(255, 255, 255, 0.88); box-shadow: 0 6px 24px -18px rgba(15, 23, 42, 0.3); border-bottom-color: var(--color-border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .75rem 0; gap: 1rem; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) { .logo img { height: 96px; } }

.primary-nav { display: none; align-items: center; gap: 1.75rem; }
.primary-nav a { position: relative; font-weight: 500; color: var(--color-ink); font-size: .95rem; padding: .25rem 0; }
.primary-nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%; background: var(--color-primary); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease-hover); }
.primary-nav a:hover::after, .primary-nav a.is-current::after { transform: scaleX(1); }
.primary-nav .nav-cta { background: var(--color-primary); color: #fff; padding: .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; justify-content: space-between; width: 40px; height: 34px; padding: 8px 6px; background: transparent; border: 1px solid var(--color-border); border-radius: 10px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--color-ink); border-radius: 2px; transition: transform .25s var(--ease-hover), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 899px) {
  .primary-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 1rem 1.25rem 1.5rem; border-bottom: 1px solid var(--color-border); display: none; }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: .6rem 0; }
  .primary-nav .nav-cta { text-align: center; margin-top: .5rem; }
}
@media (min-width: 900px) {
  .primary-nav { display: flex; }
  .nav-toggle { display: none; }
}

/* === Buttons === */
.btn { display: inline-block; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; padding: .85rem 1.5rem; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease-hover), box-shadow .2s var(--ease-hover), background .2s var(--ease-hover), color .2s; }
.btn:focus-visible { outline: 3px solid rgba(37, 99, 235, .35); outline-offset: 2px; }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; box-shadow: 0 8px 24px -10px rgba(37, 99, 235, .55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -12px rgba(37, 99, 235, .7); color: #fff; }
.btn-ghost { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-ghost:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }
.btn-accent { background: var(--color-accent); color: #fff; box-shadow: 0 8px 24px -10px rgba(249, 115, 22, .6); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -12px rgba(249, 115, 22, .75); color: #fff; }

/* === Hero (centered) === */
.hero { position: relative; padding: 4rem 0 3rem; overflow: hidden; background: linear-gradient(180deg, var(--color-neutral-light) 0%, #ffffff 100%); }
@media (min-width: 768px) { .hero { padding: 6rem 0 4rem; } }
.hero-glow { position: absolute; inset: -20% 10% auto 10%; height: 60%; background: radial-gradient(closest-side, rgba(249,115,22,.18), transparent 70%), radial-gradient(closest-side, rgba(37,99,235,.22), transparent 70%); filter: blur(20px); z-index: 0; pointer-events: none; }
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero h1 { max-width: 22ch; margin-left: auto; margin-right: auto; }
.hero-sub { max-width: 56ch; margin: 0 auto 1.75rem; font-size: 1.125rem; color: var(--color-muted); }
.hero-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin: 0 0 2.5rem; }
.hero-figure { margin: 0 auto; max-width: 1000px; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: #fff; }
.hero-figure img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }

/* === Sections === */
.section { padding: 3.5rem 0; }
@media (min-width: 768px) { .section { padding: 5rem 0; } }
.section-tint { background: var(--color-neutral-light); }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 2.5rem; }
.section-head p { color: var(--color-muted); }
.lead-narrow { max-width: 60ch; margin: 0 auto 2rem; text-align: center; color: var(--color-muted); }
.inline-figure { margin: 0 0 2rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.inline-figure img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }

/* === Cards grid === */
.grid { display: grid; gap: 1.25rem; list-style: none; padding: 0; margin: 0; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2, .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.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-hover), box-shadow .25s var(--ease-hover); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.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(37,99,235,.14), rgba(249,115,22,.14)); color: var(--color-primary); margin-bottom: 1rem; }

/* === Services numbered list === */
.service-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.25rem; }
.service-row { display: grid; grid-template-columns: auto 1fr; gap: 1rem; 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-hover), box-shadow .25s var(--ease-hover); }
.service-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-num { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; color: var(--color-accent); min-width: 3rem; }
.service-row p { color: var(--color-muted); margin: 0; }

/* === 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; background: #fff; border: 1px solid var(--color-border); border-radius: 16px; 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: 0 16px 40px -20px rgba(249,115,22,.35); }
.pricing-card__badge { position: absolute; top: -12px; right: 20px; background: var(--color-accent); color: #fff; font-family: var(--font-heading); font-size: .75rem; font-weight: 600; padding: .3rem .75rem; border-radius: 999px; letter-spacing: .04em; }
.pricing-card__plan { font-size: 1.15rem; text-transform: uppercase; letter-spacing: .08em; color: var(--color-neutral-dark); margin-bottom: .5rem; }
.pricing-card__price { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: var(--color-ink); margin: 0 0 .75rem; line-height: 1.1; }
.pricing-card__lede { color: var(--color-muted); margin-bottom: 1.25rem; }
.pricing-card__features { list-style: none; padding: 0; margin: 0 0 1.75rem; display: flex; flex-direction: column; gap: .5rem; }
.pricing-card__features li { display: flex; gap: .5rem; align-items: flex-start; color: var(--color-ink); font-size: .95rem; }
.pricing-card__cta { margin-top: auto; text-align: center; }

/* === Testimonial === */
.testimonial { margin: 0; padding: 2rem 1rem; text-align: center; }
.testimonial p { font-family: var(--font-heading); font-weight: 500; font-size: clamp(1.15rem, 2.2vw, 1.5rem); line-height: 1.5; color: var(--color-ink); max-width: 42ch; margin: 0 auto 1rem; }
.testimonial cite { font-style: normal; font-size: .9rem; color: var(--color-muted); letter-spacing: .02em; }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; padding: 3.5rem 0; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 55ch; margin: 0 auto 1.5rem; }
.cta-inner { display: flex; flex-direction: column; align-items: center; }

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

/* === Contact tiles === */
.contact-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 720px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-tile { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; box-shadow: var(--shadow-sm); }
.contact-tile__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(37,99,235,.1); color: var(--color-primary); margin-bottom: .75rem; }
.contact-tile p { color: var(--color-muted); margin: 0; }

/* === Contact form === */
.contact-form { display: flex; flex-direction: column; gap: 1rem; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-family: var(--font-heading); font-weight: 500; font-size: .9rem; color: var(--color-ink); }
.field input, .field textarea { font: inherit; padding: .75rem .9rem; border: 1px solid var(--color-border); border-radius: 10px; background: #fff; color: var(--color-ink); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(37,99,235,.15); }
.form-consent { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; color: var(--color-muted); line-height: 1.4; }
.form-consent input { margin-top: .2rem; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: #dbeafe; padding: 3rem 0 1.25rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer .logo img { filter: brightness(0) invert(1); height: 56px; }
.site-footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 .9rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .4rem; }
.site-footer a { color: #dbeafe; }
.site-footer a:hover { color: #fff; }
.site-footer .tagline { color: #bfdbfe; font-size: .95rem; margin-top: .5rem; }
.site-footer address { font-style: normal; color: #dbeafe; margin-bottom: 1rem; line-height: 1.7; }
.legal-links { flex-direction: row !important; gap: 1rem !important; flex-wrap: wrap; font-size: .85rem; }
.copyright { text-align: center; margin: 2rem 0 0; color: #bfdbfe; font-size: .85rem; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1rem; }

/* === 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 20px 60px -20px rgba(15,23,42,.5); max-width: 720px; margin: 0 auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .9rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner button { font: inherit; font-family: var(--font-heading); font-weight: 500; padding: .5rem 1rem; border-radius: 999px; border: 1px solid rgba(239,246,255,.4); background: transparent; color: var(--color-neutral-light); cursor: pointer; font-size: .85rem; transition: background .2s, color .2s; }
.cookie-banner button:hover { background: rgba(239,246,255,.15); }
.cookie-banner [data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.cookie-banner [data-cookie-accept]:hover { background: #ea6a12; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; padding-top: 1rem; border-top: 1px solid rgba(239,246,255,.2); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs [data-cookie-save] { align-self: flex-start; margin-top: .3rem; }

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