:root {
  --navy: #2e3e56;
  --navy-deep: #182638;
  --navy-black: #101b29;
  --green: #359961;
  --green-dark: #287a4e;
  --green-soft: #d9eee2;
  --steel: #6e7e91;
  --mist: #f3f6f8;
  --white: #ffffff;
  --ink: #1d2a39;
  --muted: #647184;
  --line: #dfe6eb;
  --warning: #d9a441;
  --critical: #c9534f;
  --shadow-sm: 0 12px 30px rgba(16, 27, 41, .08);
  --shadow-lg: 0 28px 70px rgba(16, 27, 41, .2);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

::selection { background: var(--green-soft); color: var(--navy-deep); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy-deep);
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 14px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-light { background: var(--white); }
.section-dark { color: var(--white); background: var(--navy-deep); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-h);
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  background: rgba(24, 38, 56, .92);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; }
.brand-word { font-size: 1.55rem; letter-spacing: -.045em; }
.brand-word span { color: var(--green); }
.main-nav { display: flex; align-items: center; gap: 27px; font-size: .94rem; font-weight: 600; }
.main-nav > a:not(.button) { position: relative; color: rgba(255, 255, 255, .84); }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--green); transition: right .2s ease; }
.main-nav > a:not(.button):hover::after, .main-nav > a:not(.button):focus-visible::after { right: 0; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--white); transition: transform .2s ease, opacity .2s ease; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 21px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 750;
  line-height: 1.2;
  box-shadow: 0 12px 28px rgba(53, 153, 97, .24);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); background: var(--green-dark); border-color: var(--green-dark); box-shadow: 0 16px 35px rgba(53, 153, 97, .32); }
.button-sm { min-height: 42px; padding: 9px 17px; font-size: .9rem; }
.button-ghost { background: transparent; border-color: rgba(255,255,255,.42); box-shadow: none; }
.button-ghost:hover, .button-ghost:focus-visible { background: rgba(255,255,255,.08); border-color: var(--white); }
.button-secondary { background: var(--white); color: var(--navy); border-color: var(--line); box-shadow: none; }
.button-secondary:hover, .button-secondary:focus-visible { color: var(--white); }

.hero {
  position: relative;
  min-height: 820px;
  padding: 154px 0 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(53, 153, 97, .16), transparent 28%),
    linear-gradient(135deg, var(--navy-black), var(--navy) 62%, #263e4c);
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(15px); pointer-events: none; }
.hero-glow-one { width: 400px; height: 400px; right: -180px; top: 90px; background: rgba(53,153,97,.13); }
.hero-glow-two { width: 300px; height: 300px; left: -140px; bottom: 80px; background: rgba(91,137,180,.10); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 68px; }
.eyebrow { margin: 0 0 18px; color: var(--green); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(3rem, 6.7vw, 5.85rem); line-height: .99; letter-spacing: -.064em; }
.hero-lead { max-width: 680px; margin: 28px 0 0; color: rgba(255,255,255,.75); font-size: clamp(1.08rem, 1.6vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 24px; margin: 34px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.75); font-size: .92rem; }
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(53,153,97,.16); }

.hero-visual { position: relative; min-height: 480px; display: grid; place-items: center; }
.dashboard-shell { width: min(100%, 590px); padding: 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 26px; background: rgba(255,255,255,.07); box-shadow: var(--shadow-lg); transform: perspective(900px) rotateY(-4deg) rotateX(2deg); }
.dashboard-topbar { display: flex; justify-content: space-between; align-items: center; padding: 13px 15px; border-bottom: 1px solid rgba(255,255,255,.08); }
.mini-brand { font-weight: 750; }
.status-pill { padding: 5px 9px; border: 1px solid rgba(53,153,97,.4); border-radius: 999px; color: #8bd6aa; background: rgba(53,153,97,.1); font-size: .68rem; }
.dashboard-content { display: grid; grid-template-columns: 55px 1fr; }
.dashboard-sidebar { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 19px 10px; border-right: 1px solid rgba(255,255,255,.08); }
.dashboard-sidebar span { width: 22px; height: 22px; border-radius: 7px; background: rgba(255,255,255,.1); }
.dashboard-sidebar span.active { background: rgba(53,153,97,.65); }
.dashboard-main { padding: 18px; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.metric-grid article { min-height: 96px; padding: 13px; border: 1px solid rgba(255,255,255,.08); border-radius: 13px; background: rgba(11,25,38,.48); }
.metric-grid small { display: block; color: rgba(255,255,255,.55); font-size: .68rem; }
.metric-grid strong { display: block; margin-top: 4px; font-size: 1.35rem; }
.metric-grid em { display: block; margin-top: 5px; color: #78c999; font-size: .66rem; font-style: normal; }
.dashboard-panels { display: grid; grid-template-columns: 1.15fr .85fr; gap: 11px; margin-top: 11px; }
.chart-card, .alert-card { min-height: 190px; padding: 14px; border: 1px solid rgba(255,255,255,.08); border-radius: 13px; background: rgba(11,25,38,.48); }
.card-head { display: flex; justify-content: space-between; gap: 12px; color: rgba(255,255,255,.6); font-size: .65rem; }
.bar-chart { height: 125px; display: flex; align-items: end; gap: 9px; padding-top: 16px; }
.bar-chart span { flex: 1; height: var(--h); min-height: 18px; border-radius: 5px 5px 1px 1px; background: linear-gradient(180deg, #52bc7d, #287a4e); opacity: .9; }
.alert-card { display: flex; align-items: center; gap: 12px; }
.alert-icon { flex: 0 0 auto; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; color: #ffd5d3; background: rgba(201,83,79,.19); border: 1px solid rgba(201,83,79,.28); font-weight: 800; }
.alert-card small { color: rgba(255,255,255,.55); }
.alert-card strong { display: block; margin-top: 5px; }
.alert-card p { margin: 4px 0 0; color: #e3a7a4; font-size: .72rem; }
.floating-card { position: absolute; z-index: 3; min-width: 188px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(24,38,56,.88); box-shadow: var(--shadow-lg); backdrop-filter: blur(12px); }
.floating-card span { display: inline-grid; place-items: center; width: 32px; height: 32px; margin-right: 9px; border-radius: 10px; background: rgba(53,153,97,.18); color: #8bd6aa; font-size: .72rem; font-weight: 800; }
.floating-card strong { font-size: .78rem; }
.floating-one { left: -20px; bottom: 55px; }
.floating-two { right: -14px; top: 55px; }
.client-strip { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 66px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.09); }
.client-strip div { padding: 19px 24px; background: rgba(15,27,41,.55); }
.client-strip strong { display: block; color: var(--green); font-size: 1.45rem; line-height: 1.1; }
.client-strip span { color: rgba(255,255,255,.64); font-size: .8rem; }

.section-heading { max-width: 670px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2 { margin: 0; color: var(--navy-deep); font-size: clamp(2.1rem, 4vw, 3.7rem); line-height: 1.06; letter-spacing: -.048em; }
.section-dark .section-heading h2 { color: var(--white); }
.section-heading > p:not(.eyebrow) { margin: 22px 0 0; color: var(--muted); font-size: 1.06rem; }
.section-dark .section-heading > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.split-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.value-flow { display: grid; gap: 14px; }
.value-flow article { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-sm); transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.value-flow article:hover { transform: translateY(-3px); border-color: rgba(53,153,97,.5); box-shadow: var(--shadow-sm); }
.value-flow article > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--green-soft); color: var(--green-dark); font-weight: 800; }
.value-flow h3 { margin: 0; color: var(--navy); font-size: 1.12rem; }
.value-flow p { margin: 4px 0 0; color: var(--muted); }

.outcomes-section { background: var(--mist); }
.outcomes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.outcome-card { min-height: 260px; padding: 28px; border: 1px solid transparent; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .2s ease, border-color .2s ease; }
.outcome-card:hover { transform: translateY(-5px); border-color: rgba(53,153,97,.38); }
.icon-badge { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; color: var(--green-dark); background: var(--green-soft); font-size: 1.2rem; font-weight: 800; }
.outcome-card h3 { margin: 34px 0 10px; color: var(--navy); }
.outcome-card p { margin: 0; color: var(--muted); }

.modules-section { background: var(--white); }
.module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 50px; }
.module-card { position: relative; min-height: 400px; padding: 26px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.module-card::after { content: ""; position: absolute; width: 140px; height: 140px; right: -70px; bottom: -70px; border-radius: 50%; background: rgba(53,153,97,.06); transition: transform .25s ease; }
.module-card:hover { transform: translateY(-6px); border-color: rgba(53,153,97,.48); box-shadow: var(--shadow-sm); }
.module-card:hover::after { transform: scale(1.35); }
.featured-module { color: var(--white); border-color: var(--navy); background: var(--navy); }
.featured-module h3, .featured-module .module-kicker { color: var(--white); }
.featured-module p, .featured-module li { color: rgba(255,255,255,.73); }
.module-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 25px; border-radius: 15px; background: var(--green-soft); color: var(--green-dark); font-weight: 850; }
.featured-module .module-icon { color: var(--white); background: var(--green); }
.module-kicker { margin: 0 0 5px; color: var(--green-dark); font-size: .74rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.module-card h3 { margin: 0; color: var(--navy); font-size: 1.3rem; line-height: 1.2; }
.module-card > p:not(.module-kicker) { margin: 15px 0 0; color: var(--muted); }
.module-card ul { display: grid; gap: 8px; margin: 21px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: .91rem; }
.module-card li { position: relative; padding-left: 18px; }
.module-card li::before { content: ""; position: absolute; left: 0; top: .68em; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.module-title-line { display: flex; align-items: start; justify-content: space-between; gap: 10px; }
.tag { flex: 0 0 auto; padding: 4px 7px; border-radius: 999px; color: var(--green-dark); background: var(--green-soft); font-size: .63rem; font-weight: 800; text-transform: uppercase; }

.process-section { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); }
.process-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 95px; align-items: center; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 27px; color: #8bd6aa; font-weight: 750; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.process-list { display: grid; gap: 1px; margin: 0; padding: 0; list-style: none; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md); overflow: hidden; background: rgba(255,255,255,.08); }
.process-list li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 21px; background: rgba(15,27,41,.68); }
.process-list li > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; color: #8bd6aa; background: rgba(53,153,97,.14); font-weight: 800; }
.process-list strong { font-size: 1.05rem; }
.process-list p { margin: 3px 0 0; color: rgba(255,255,255,.62); }

.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.sector-card { min-height: 255px; padding: 30px; border-radius: var(--radius-md); background: linear-gradient(155deg, var(--navy), var(--navy-deep)); color: var(--white); }
.sector-card span { color: #83d0a2; font-weight: 800; }
.sector-card h3 { margin: 65px 0 8px; font-size: 1.35rem; }
.sector-card p { margin: 0; color: rgba(255,255,255,.68); }

.pricing-section { background: var(--mist); }
.billing-note { display: flex; justify-content: center; align-items: center; gap: 14px; margin: 34px auto 0; color: var(--muted); font-size: .84rem; }
.billing-note span { padding: 7px 12px; border-radius: 999px; color: var(--green-dark); background: var(--green-soft); font-weight: 800; }
.billing-note p { margin: 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 590px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 12px 35px rgba(16,27,41,.06); }
.price-card-featured { color: var(--white); border-color: var(--navy); background: var(--navy); transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.recommended { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); padding: 7px 12px; border-radius: 999px; background: var(--green); font-size: .71rem; font-weight: 800; }
.price-head > p { margin: 0; color: var(--green-dark); font-size: .75rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.price-card-featured .price-head > p { color: #8bd6aa; }
.price-head h3 { margin: 6px 0 0; color: var(--navy); font-size: 1.25rem; }
.price-card-featured .price-head h3 { color: var(--white); }
.price { min-height: 88px; margin-top: 28px; }
.price strong { display: block; color: var(--navy); font-size: 1.85rem; letter-spacing: -.04em; }
.price-card-featured .price strong { color: var(--white); }
.price span { color: var(--muted); font-size: .78rem; }
.price-card-featured .price span { color: rgba(255,255,255,.6); }
.price-card ul { display: grid; gap: 13px; margin: 26px 0 28px; padding: 23px 0 0; border-top: 1px solid var(--line); list-style: none; color: var(--muted); font-size: .9rem; }
.price-card-featured ul { border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.72); }
.price-card li { position: relative; padding-left: 22px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 850; }
.price-card .button { margin-top: auto; }
.license-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.license-details article { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.72); }
.license-details h3 { margin: 0; color: var(--navy); }
.license-details p { margin: 6px 0 0; color: var(--muted); }

.trust-section { background: var(--white); }
.trust-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.trust-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.trust-list article { min-height: 190px; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.trust-list article > span { color: var(--green); font-weight: 850; }
.trust-list h3 { margin: 36px 0 4px; color: var(--navy); }
.trust-list p { margin: 0; color: var(--muted); }

.faq-section { background: var(--mist); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
.accordion { display: grid; gap: 12px; }
.accordion-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); overflow: hidden; }
.accordion-item button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 21px 23px; border: 0; background: transparent; color: var(--navy); text-align: left; font-weight: 780; }
.accordion-item button span:last-child { color: var(--green); font-size: 1.45rem; font-weight: 400; transition: transform .2s ease; }
.accordion-item button[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.accordion-panel > p { overflow: hidden; margin: 0; padding: 0 23px; color: var(--muted); transition: padding .25s ease; }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; }
.accordion-item.is-open .accordion-panel > p { padding: 0 23px 23px; }

.contact-section { background: radial-gradient(circle at 15% 20%, rgba(53,153,97,.14), transparent 28%), linear-gradient(135deg, var(--navy-black), var(--navy)); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: start; }
.contact-copy h2 { margin: 0; font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.04; letter-spacing: -.05em; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.68); font-size: 1.05rem; }
.contact-points { display: grid; gap: 8px; margin-top: 28px; color: rgba(255,255,255,.78); }
.contact-points p { margin: 0; }
.contact-points span { color: #8bd6aa; margin-right: 8px; }
.contact-form { display: grid; gap: 16px; padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-form label { display: grid; gap: 7px; color: rgba(255,255,255,.82); font-size: .84rem; font-weight: 700; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid rgba(255,255,255,.17); border-radius: 11px; background: rgba(255,255,255,.08); color: var(--white); outline: none; padding: 13px 14px; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.contact-form select option { color: var(--ink); background: var(--white); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: #76c596; background: rgba(255,255,255,.11); box-shadow: 0 0 0 3px rgba(53,153,97,.16); }
.contact-form input:user-invalid, .contact-form textarea:user-invalid { border-color: #e09692; }
.check-label { grid-template-columns: 20px 1fr !important; align-items: start; font-weight: 500 !important; color: rgba(255,255,255,.66) !important; }
.check-label input { width: 17px; height: 17px; margin-top: 3px; padding: 0; accent-color: var(--green); }
.check-label a { color: #8bd6aa; text-decoration: underline; }
.form-status { min-height: 24px; margin: 0; color: #9edbb8; font-size: .88rem; }
.form-status.is-error { color: #efb2af; }

.site-footer { padding: 66px 0 24px; color: rgba(255,255,255,.7); background: #0d1824; }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 45px; }
.footer-brand { color: var(--white); }
.footer-grid > div:first-child > p { max-width: 330px; }
.footer-grid h2 { margin: 0 0 13px; color: var(--white); font-size: .93rem; }
.footer-grid div:not(:first-child) { display: grid; align-content: start; gap: 9px; font-size: .88rem; }
.footer-grid a:hover { color: #8bd6aa; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); font-size: .78rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .62s ease, transform .62s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.legal-page { min-height: 100vh; padding: 132px 0 80px; background: var(--mist); }
.legal-card { max-width: 850px; margin-inline: auto; padding: 44px; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.legal-card h1 { color: var(--navy); font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -.04em; }
.legal-card h2 { margin-top: 36px; color: var(--navy); }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-card .notice { padding: 16px; border-left: 4px solid var(--warning); background: #fff8e9; color: #6c5725; }

@media (max-width: 1060px) {
  .hero-grid, .split-layout, .process-grid, .trust-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 132px; }
  .hero-copy { max-width: 850px; }
  .hero-visual { width: min(100%, 720px); margin-inline: auto; }
  .module-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-grid, .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card-featured { transform: none; }
  .faq-grid .section-heading { max-width: 720px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(var(--header-h) - 2px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(24,38,56,.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav > a { padding: 12px; }
  .main-nav .button { margin-top: 8px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .client-strip { grid-template-columns: repeat(2, 1fr); }
  .license-details { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .brand-word { font-size: 1.35rem; }
  .brand img { width: 39px; height: 39px; }
  .hero { min-height: auto; padding: 116px 0 42px; }
  .hero h1 { font-size: clamp(2.65rem, 15vw, 4.2rem); }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 360px; }
  .dashboard-shell { transform: none; }
  .dashboard-content { grid-template-columns: 42px 1fr; }
  .dashboard-sidebar { padding-inline: 7px; }
  .dashboard-sidebar span { width: 18px; height: 18px; }
  .dashboard-main { padding: 10px; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric-grid article:nth-child(3) { display: none; }
  .dashboard-panels { grid-template-columns: 1fr; }
  .chart-card { min-height: 165px; }
  .alert-card { min-height: 118px; }
  .floating-card { display: none; }
  .client-strip { margin-top: 38px; }
  .client-strip div { padding: 15px; }
  .outcomes-grid, .module-grid, .sector-grid, .pricing-grid, .trust-list { grid-template-columns: 1fr; }
  .module-card { min-height: 0; }
  .billing-note { align-items: flex-start; flex-direction: column; }
  .price-card { min-height: 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .legal-card { padding: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Hostinger / SEO landing pages */
.hp-field{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.module-card h3 a{color:inherit;text-decoration:none}.module-card h3 a:hover{color:var(--green)}
.inner-hero{padding:9rem 0 5.5rem;background:linear-gradient(145deg,var(--navy-deep),var(--navy));color:#fff;position:relative;overflow:hidden}
.inner-hero:after{content:"";position:absolute;width:420px;height:420px;border-radius:50%;right:-140px;top:-170px;background:rgba(53,153,97,.17);filter:blur(4px)}
.breadcrumbs{font-size:.9rem;color:#c5d2dd;margin-bottom:1.5rem}.breadcrumbs a{color:#c5d2dd}.breadcrumbs span{padding:0 .55rem;color:#48b878}
.inner-hero-grid{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);gap:4rem;align-items:center;position:relative;z-index:1}
.inner-hero h1{max-width:850px;font-size:clamp(2.5rem,5vw,4.8rem);line-height:1.03;margin:.6rem 0 1.4rem}
.inner-hero .lead{font-size:1.22rem;line-height:1.7;color:#dce7ef;max-width:760px}
.hero-summary{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);border-radius:24px;padding:1.7rem;backdrop-filter:blur(12px)}
.hero-summary h2{font-size:1.1rem;margin:0 0 1rem;color:#fff}.hero-summary ul{list-style:none;padding:0;margin:0;display:grid;gap:.8rem}.hero-summary li{padding-left:1.6rem;position:relative;color:#e8f0f5}.hero-summary li:before{content:"✓";position:absolute;left:0;color:#48b878;font-weight:800}
.content-section{padding:5.5rem 0;background:#fff}.content-section.alt{background:var(--mist)}
.content-grid{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(280px,.7fr);gap:4.5rem;align-items:start}
.prose h2{font-size:clamp(2rem,3vw,3rem);margin:0 0 1.2rem;color:var(--navy-deep)}.prose h3{font-size:1.35rem;margin:2rem 0 .7rem;color:var(--navy)}.prose p,.prose li{font-size:1.04rem;line-height:1.8;color:#4c5d6e}.prose ul{padding-left:1.2rem}.prose strong{color:var(--navy-deep)}
.side-card{border:1px solid #dce5eb;border-radius:22px;padding:1.7rem;background:#fff;box-shadow:0 16px 50px rgba(24,38,56,.08);position:sticky;top:110px}.side-card h2{font-size:1.35rem;margin-top:0}.side-card ul{list-style:none;padding:0;display:grid;gap:.8rem}.side-card li{border-bottom:1px solid #edf2f5;padding-bottom:.8rem;color:#536475}.side-card li:last-child{border:0}.side-card a{width:100%;text-align:center;margin-top:.8rem}
.feature-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.3rem;margin-top:2.2rem}.feature-box{border:1px solid #dce5eb;border-radius:18px;padding:1.4rem;background:#fff}.feature-box h3{font-size:1.15rem;margin:0 0 .55rem}.feature-box p{margin:0;font-size:.96rem;line-height:1.65;color:#607182}
.cta-band{padding:4rem 0;background:var(--navy-deep);color:#fff}.cta-band .container{display:flex;align-items:center;justify-content:space-between;gap:2rem}.cta-band h2{margin:0 0 .6rem;font-size:clamp(1.8rem,3vw,2.8rem)}.cta-band p{margin:0;color:#cdd9e2}
.page-links{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.2rem}.page-link-card{display:block;padding:1.5rem;border:1px solid #dce5eb;border-radius:18px;background:#fff;color:inherit;text-decoration:none;transition:.2s}.page-link-card:hover{transform:translateY(-3px);box-shadow:0 16px 40px rgba(24,38,56,.09);border-color:#b7d8c5}.page-link-card small{color:var(--green-dark);font-weight:800;text-transform:uppercase;letter-spacing:.08em}.page-link-card h3{margin:.6rem 0;color:var(--navy-deep)}.page-link-card p{margin:0;color:#607182;line-height:1.6}
.price-table-wrap{overflow:auto;border:1px solid #dce5eb;border-radius:20px;background:#fff}.comparison-table{border-collapse:collapse;width:100%;min-width:760px}.comparison-table th,.comparison-table td{padding:1rem 1.1rem;border-bottom:1px solid #e5ebef;text-align:left}.comparison-table thead th{background:var(--navy);color:#fff}.comparison-table tbody th{color:var(--navy-deep)}.comparison-table td:not(:first-child),.comparison-table th:not(:first-child){text-align:center}.yes{color:var(--green-dark);font-weight:800}.soon{color:#997027;font-weight:700}
@media(max-width:900px){.inner-hero-grid,.content-grid{grid-template-columns:1fr}.inner-hero{padding-top:7.5rem}.side-card{position:static}.feature-list{grid-template-columns:1fr}.page-links{grid-template-columns:1fr 1fr}.cta-band .container{align-items:flex-start;flex-direction:column}}
@media(max-width:600px){.page-links{grid-template-columns:1fr}.content-section{padding:4rem 0}.inner-hero{padding-bottom:4rem}}
