@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Source+Sans+3:wght@600;700;800&display=swap");

:root {
  --navy: #070e20;
  --navy-soft: #13202d;
  --green: #2dc55f;
  --green-deep: #25ac52;
  --green-soft: rgba(45, 197, 95, 0.12);
  --page: #f4f6f8;
  --page-soft: #fbfcfd;
  --white: #ffffff;
  --heading: #17232d;
  --copy: #697481;
  --line: rgba(23, 35, 45, 0.1);
  --shadow: 0 30px 70px rgba(7, 14, 32, 0.12);
  --shadow-soft: 0 18px 42px rgba(7, 14, 32, 0.08);
  --radius: 22px;
  --content: min(1320px, calc(100vw - 44px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Open Sans", sans-serif;
  background: var(--page);
  color: var(--copy);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}

input,
textarea {
  width: 100%;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.icon-lg {
  width: 28px;
  height: 28px;
}

.container {
  width: var(--content);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -48px;
  z-index: 300;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 16px;
}

.topbar {
  position: relative;
  z-index: 60;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.94);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .container {
  width: 100%;
}

.topbar-inner {
  display: grid;
  grid-template-columns: 392px minmax(0, 1fr);
  min-height: 58px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
}

.topbar-left {
  gap: 10px;
  min-height: 58px;
  padding: 0 26px;
  background: var(--green);
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 600;
  border-right: 2px solid rgba(255, 255, 255, 0.96);
}

.topbar-left span,
.topbar-right a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar-right {
  min-height: 58px;
  justify-content: flex-end;
  gap: 18px;
  padding: 0 30px;
  font-size: 0.94rem;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
}

.social-link .icon {
  width: 13px;
  height: 13px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(225, 227, 230, 0.75);
  box-shadow: 0 10px 24px rgba(7, 14, 32, 0.03);
}

.site-header .container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-left: 36px;
  padding-right: 0;
}

.header-inner {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) 272px;
  align-items: center;
  min-height: 86px;
  gap: 12px;
}

.brand-link {
  display: flex;
  align-items: center;
}

.brand-link img {
  width: 98px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.15vw, 20px);
}

.main-nav a {
  color: var(--heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green-deep);
}

.header-tools {
  align-self: stretch;
  justify-self: end;
  height: 100%;
  display: grid;
  grid-template-columns: 44px minmax(238px, 1fr);
  align-items: stretch;
  justify-content: end;
  gap: 10px;
}

.search-button {
  align-self: center;
  justify-self: end;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--heading);
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
}

.language-panel {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 100%;
  padding: 0 18px;
  color: var(--heading);
  width: 100%;
  background: linear-gradient(180deg, #f2fbf4 0%, #ebf8ee 100%);
  border-left: 1px solid rgba(45, 197, 95, 0.14);
}

.language-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--copy);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-label .icon {
  color: var(--green);
}

.language-switches {
  display: flex;
  gap: 4px;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 34px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid rgba(23, 35, 45, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--heading);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.lang-pill.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  justify-self: end;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--heading);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 760px;
  background: #000;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 14, 32, 0.34), rgba(7, 14, 32, 0.8)),
    linear-gradient(90deg, rgba(7, 14, 32, 0.75), rgba(7, 14, 32, 0.28));
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 16px 124px;
}

.hero-copy {
  max-width: 860px;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  color: var(--green);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker {
  margin-bottom: 28px;
  padding: 15px 28px;
  border-radius: 6px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 38px rgba(45, 197, 95, 0.26);
}

.hero-copy h1,
.section-heading h2,
.service-card h2,
.action-card h3,
.offer-card h3,
.stat-card h3,
.feature-card h3,
.testimonial-card strong,
.contact-brand h2,
.contact-card h2,
.site-footer h3 {
  margin: 0;
  color: var(--heading);
  font-family: "Source Sans 3", sans-serif;
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(3rem, 5.8vw, 5.2rem);
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-text {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 34px;
}

.hero-button,
.form-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 88px 0 28px;
  border-radius: 6px;
  color: var(--white);
  background: var(--green);
  border: 2px solid var(--green);
  font-weight: 800;
  overflow: hidden;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hero-button::after,
.form-button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 74px;
  height: 100%;
  background: var(--navy);
  clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%);
}

.hero-button > *,
.form-button > * {
  position: relative;
  z-index: 1;
}

.hero-button:hover,
.form-button:hover {
  transform: translateY(-2px);
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.hero-controls {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: min(1390px, calc(100vw - 56px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  pointer-events: none;
}

.hero-arrow {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--white);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 18px 38px rgba(45, 197, 95, 0.24);
  pointer-events: auto;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  pointer-events: auto;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: transparent;
}

.hero-dot.is-active {
  background: var(--green);
  border-color: var(--green);
}

.service-strip {
  position: relative;
  z-index: 3;
  margin-top: -78px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border: 1px solid rgba(23, 35, 45, 0.08);
  box-shadow: var(--shadow);
}

.service-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 168px;
  padding: 26px 24px;
  border-right: 1px solid rgba(23, 35, 45, 0.08);
}

.service-icon,
.action-icon,
.offer-icon,
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(45, 197, 95, 0.12);
  color: var(--green);
  flex: 0 0 auto;
}

.service-card h2 {
  font-size: 0.98rem;
  line-height: 1.28;
}

.service-card a,
.action-card a,
.offer-card a,
.secondary-link,
.brand-cta,
.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-deep);
  font-weight: 800;
}

.service-card a {
  margin-top: 10px;
  font-size: 0.9rem;
}

.service-card-last {
  border-right: 0;
}

.section {
  padding: 108px 0;
}

.capabilities-section {
  padding: 118px 0 104px;
  background: linear-gradient(180deg, #fff 0%, #f4f6f8 100%);
  overflow: hidden;
}

.capabilities-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.84fr) minmax(560px, 1.06fr);
  align-items: stretch;
  overflow: visible;
}

.capabilities-visual {
  min-height: 790px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)),
    url("./assets/about-team.jpg") center / cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.contact-brand h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.section-heading p:last-child,
.action-card p,
.offer-card p,
.stat-card p,
.feature-card p,
.testimonial-card p,
.contact-card p,
.contact-brand p,
.footer-brand p {
  line-height: 1.85;
}

.capabilities-panel,
.why-copy,
.contact-card,
.contact-brand,
.offer-card,
.feature-card,
.testimonial-card {
  background: #fff;
}

.capabilities-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 44px 0 44px -136px;
  padding: 58px 50px 52px;
  border: 1px solid rgba(23, 35, 45, 0.08);
  background:
    radial-gradient(circle at 50% 12%, rgba(45, 197, 95, 0.08), transparent 28%),
    #fff;
  box-shadow: 0 28px 64px rgba(7, 14, 32, 0.12);
}

.capabilities-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--green);
}

.capabilities-panel-head {
  max-width: 640px;
  margin: 0 auto 42px;
  text-align: center;
}

.capabilities-panel-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capabilities-panel-kicker::before,
.capabilities-panel-kicker::after {
  content: "";
  width: 44px;
  height: 2px;
  background: rgba(45, 197, 95, 0.72);
}

.capabilities-panel-head h2 {
  margin: 0;
  color: var(--heading);
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.capability-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px 28px;
}

.capability-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 228px;
  text-align: center;
}

.capability-service-icon {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--green);
  background: rgba(45, 197, 95, 0.1);
}

.capability-service-icon .icon {
  width: 44px;
  height: 44px;
}

.capability-service h3 {
  margin: 0;
  min-height: 56px;
  max-width: 220px;
  color: var(--heading);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.08rem;
  line-height: 1.24;
}

.service-cta-button {
  display: inline-flex;
  align-items: stretch;
  justify-content: space-between;
  width: min(192px, 100%);
  min-height: 54px;
  margin-top: auto;
  border-radius: 4px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(45, 197, 95, 0.18);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.service-cta-button:hover,
.service-cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(7, 14, 32, 0.18);
  filter: saturate(1.04);
}

.service-cta-button > span:first-child {
  display: inline-flex;
  align-items: center;
  flex: 1 1 auto;
  padding: 0 0 0 22px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-cta-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  min-height: 54px;
  background: var(--navy);
  color: var(--white);
}

.service-cta-icon .icon {
  width: 20px;
  height: 20px;
}

.why-showcase-section {
  padding: 124px 0 72px;
  background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
}

.why-showcase-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.88fr);
  gap: 52px;
  align-items: center;
}

.why-showcase-copy {
  padding-top: 0;
}

.why-showcase-copy .section-kicker,
.suite-heading .section-kicker {
  gap: 12px;
}

.why-showcase-copy .section-kicker::before,
.suite-heading .section-kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--green);
}

.why-showcase-copy h2 {
  max-width: 560px;
  margin: 0 0 22px;
  color: var(--heading);
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(2.25rem, 3.8vw, 3.6rem);
  line-height: 1.02;
}

.why-showcase-text {
  max-width: 540px;
  margin: 0 0 10px;
  color: #8a9098;
  font-size: 1.02rem;
  line-height: 1.8;
}

.why-primary-button {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  margin-top: 18px;
  padding: 0 28px;
  border-radius: 4px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(45, 197, 95, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.why-primary-button:hover,
.why-primary-button:focus-visible {
  transform: translateY(-2px);
  background: var(--green-deep);
  box-shadow: 0 20px 38px rgba(7, 14, 32, 0.14);
}

.why-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 420px;
  margin-top: 28px;
}

.why-metric {
  text-align: center;
}

.metric-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 4px solid var(--green);
  background: #fff;
  box-shadow: inset 0 0 0 8px rgba(45, 197, 95, 0.08);
}

.metric-ring strong {
  color: #111926;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.6rem;
}

.why-metric h3 {
  margin: 0;
  color: var(--heading);
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(1.2rem, 1.7vw, 1.45rem);
  line-height: 1.08;
}

.why-showcase-visual {
  position: relative;
  min-height: 0;
}

.why-portrait-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 26px;
  border: 1px solid rgba(23, 35, 45, 0.08);
  background:
    radial-gradient(circle at 50% 18%, rgba(45, 197, 95, 0.12), transparent 36%),
    linear-gradient(180deg, #fff 0%, #f7fbf9 100%);
  box-shadow: var(--shadow-soft);
}

.why-portrait-stage img {
  width: min(100%, 420px);
  height: auto;
  border-radius: 18px;
}

.slab-button,
.mini-cta-button {
  display: inline-flex;
  align-items: stretch;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(45, 197, 95, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.slab-button:hover,
.slab-button:focus-visible,
.mini-cta-button:hover,
.mini-cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(7, 14, 32, 0.16);
  filter: saturate(1.03);
}

.slab-button > span:first-child,
.mini-cta-button > span:first-child {
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  font-weight: 800;
}

.slab-button > span:first-child {
  min-height: 46px;
  font-size: 0.96rem;
}

.mini-cta-button > span:first-child {
  min-height: 46px;
  font-size: 0.95rem;
}

.slab-button .service-cta-icon {
  width: 54px;
  min-height: 46px;
}

.mini-cta-button .service-cta-icon {
  width: 46px;
  min-height: 46px;
}

.why-portrait-stage .slab-button {
  align-self: center;
}

.service-suites-section {
  padding: 42px 0 112px;
  background: #fff;
}

.service-suites-shell {
  display: grid;
  gap: 38px;
  background: transparent;
}

.suite-row {
  display: grid;
  align-items: stretch;
  grid-template-rows: 1fr;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.companies-suite {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
}

.private-suite {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
}

.suite-visual {
  min-height: 468px;
  background-size: cover;
  background-position: center;
}

.companies-visual {
  background:
    linear-gradient(180deg, rgba(7, 14, 32, 0.16), rgba(7, 14, 32, 0.08)),
    url("./assets/business-finance-clear.jpg") center / cover no-repeat;
}

.private-visual {
  background:
    linear-gradient(180deg, rgba(7, 14, 32, 0.08), rgba(7, 14, 32, 0.04)),
    url("./assets/private-family-home.jpg") center / cover no-repeat;
}

.suite-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 36px 38px;
  color: rgba(255, 255, 255, 0.86);
}

.suite-heading {
  max-width: 560px;
  margin-bottom: 24px;
}

.suite-heading h2 {
  margin: 0;
  color: var(--white);
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  line-height: 1.04;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.package-card,
.scope-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 334px;
  padding: 0 16px 18px;
  background: #fff;
  border: 1px solid rgba(23, 35, 45, 0.08);
}

.package-ribbon,
.scope-ribbon {
  align-self: flex-start;
  min-width: 76%;
  margin: 14px 0 18px -16px;
  padding: 15px 18px 15px 20px;
  border-radius: 0 999px 999px 0;
  background: var(--green);
  color: var(--white);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
}

.package-ribbon span,
.package-ribbon strong {
  display: block;
}

.package-ribbon strong {
  font-size: 1rem;
}

.package-icon {
  width: 58px;
  margin-bottom: 14px;
}

.package-price {
  margin-bottom: 14px;
  text-align: center;
}

.package-price strong {
  display: block;
  color: var(--green);
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  line-height: 0.98;
}

.package-price small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: #a8adb5;
  font-size: 0.86rem;
}

.package-price small::before {
  content: "/";
  color: #d0d4d8;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.package-card .mini-cta-button {
  margin-top: auto;
}

.scope-panel {
  padding-right: 36px;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.scope-card {
  min-height: 232px;
}

.scope-ribbon {
  margin-bottom: 16px;
}

.scope-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  color: #0d121a;
}

.scope-icon .icon {
  width: 42px;
  height: 42px;
}

.scope-card .mini-cta-button {
  margin-top: auto;
}

.reviews-contact-section {
  position: relative;
  padding: 12px 0 96px;
  background: #fff;
}

.reviews-band {
  position: relative;
  padding: 64px 0 104px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 14, 32, 0.84), rgba(7, 14, 32, 0.9)),
    url("./assets/pattern-dark.jpg") center / cover no-repeat;
}

.reviews-band::before,
.reviews-band::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: rgba(45, 197, 95, 0.55);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.reviews-band::before {
  left: 160px;
  top: 84px;
}

.reviews-band::after {
  left: 194px;
  top: 114px;
}

.reviews-band-inner {
  position: relative;
}

.reviews-heading {
  max-width: 700px;
  margin: 0 auto 24px;
  text-align: center;
}

.reviews-heading .section-kicker {
  justify-content: center;
  gap: 14px;
}

.reviews-heading .section-kicker::before,
.reviews-heading .section-kicker::after {
  content: "";
  width: 36px;
  height: 2px;
  background: rgba(45, 197, 95, 0.78);
}

.reviews-heading h2 {
  margin: 0;
  color: var(--white);
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.reviews-slider {
  position: relative;
  max-width: 860px;
  min-height: 124px;
  margin: 0 auto;
}

.review-slide {
  display: none;
  text-align: center;
}

.review-slide.is-active {
  display: block;
}

.review-quote {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
  font-style: italic;
  line-height: 1.62;
}

.review-author {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-size: 1rem;
  font-weight: 800;
}

.review-arrow {
  position: absolute;
  top: 52%;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.review-arrow:hover,
.review-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.review-arrow.prev {
  left: 0;
}

.review-arrow.next {
  right: 0;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.review-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.review-dot.is-active {
  background: var(--green);
}

.inquiry-shell {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1.16fr);
  gap: 16px;
  max-width: 1080px;
  margin: -54px auto 0;
}

.inquiry-form-card,
.inquiry-side-card {
  min-height: 420px;
}

.inquiry-form-card {
  position: relative;
  padding: 26px 28px 30px;
  background: #fff;
  border: 1px solid rgba(23, 35, 45, 0.08);
  box-shadow: var(--shadow);
}

.inquiry-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--green);
}

.inquiry-title {
  margin: 0 0 20px;
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(1.85rem, 2.5vw, 2.65rem);
  line-height: 1;
}

.inquiry-title span,
.inquiry-title strong {
  display: block;
}

.inquiry-title span {
  color: var(--heading);
}

.inquiry-title strong {
  color: var(--green);
}

.inquiry-form {
  gap: 0;
}

.inquiry-form label {
  display: block;
  margin-bottom: 12px;
  color: #767e89;
  font-size: 0.9rem;
  font-weight: 600;
}

.inquiry-form input,
.inquiry-form textarea {
  padding: 12px 16px;
  border: 1px solid rgba(23, 35, 45, 0.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.inquiry-form textarea {
  min-height: 96px;
}

.submit-button {
  align-self: flex-start;
  margin-top: 10px;
}

.inquiry-side-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 30px;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(180deg, rgba(7, 14, 32, 0.72), rgba(7, 14, 32, 0.84)),
    url("./assets/page-title.jpg") center / cover no-repeat;
}

.inquiry-side-card h3 {
  max-width: 420px;
  margin: 0 0 10px;
  color: var(--white);
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(1.45rem, 1.9vw, 1.95rem);
  line-height: 1.06;
}

.inquiry-side-card p:not(.section-kicker) {
  max-width: 360px;
  margin: 0 0 12px;
  font-size: 0.94rem;
  line-height: 1.68;
}

.inquiry-side-card .contact-list {
  gap: 10px;
  margin-top: 10px;
}

.inquiry-side-card .contact-list a,
.inquiry-side-card .contact-list li {
  color: rgba(255, 255, 255, 0.9);
}

.inquiry-side-cta {
  align-self: flex-start;
  margin-top: 16px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading.compact {
  max-width: none;
  margin-bottom: 28px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.light h2,
.section-heading.light .section-kicker {
  color: var(--white);
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.action-card,
.offer-card,
.feature-card,
.testimonial-card,
.contact-card,
.contact-brand {
  border: 1px solid rgba(23, 35, 45, 0.08);
  box-shadow: var(--shadow-soft);
}

.action-card,
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 188px;
  padding: 26px 22px;
  background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.action-card:hover,
.offer-card:hover,
.feature-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.contact-brand:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(7, 14, 32, 0.1);
  border-color: rgba(45, 197, 95, 0.18);
}

.action-card h3,
.feature-card h3,
.offer-card h3 {
  margin: 18px 0 12px;
  font-size: 1.18rem;
  line-height: 1.26;
}

.action-card a {
  margin-top: auto;
}

.offer-section {
  padding-top: 0;
}

.offer-grid,
.why-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.offer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 34px;
}

.why-section {
  background: #fff;
}

.why-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  align-items: stretch;
}

.why-copy,
.why-visual {
  border: 1px solid rgba(23, 35, 45, 0.08);
  box-shadow: var(--shadow-soft);
}

.why-copy {
  padding: 42px 40px;
}

.why-visual {
  display: grid;
  place-items: end center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(45, 197, 95, 0.2), transparent 28%),
    linear-gradient(180deg, #eef4ef 0%, #f7fbf9 100%);
  padding-top: 40px;
}

.why-visual img {
  width: min(88%, 540px);
  height: auto;
  object-fit: contain;
}

.stats-grid,
.features-grid,
.testimonials-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 30px 0 28px;
}

.stat-card {
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(23, 35, 45, 0.08);
  background: var(--page-soft);
}

.stat-circle {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 6px solid rgba(45, 197, 95, 0.2);
}

.stat-circle::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(45, 197, 95, 0.18);
}

.stat-circle strong {
  position: relative;
  z-index: 1;
  color: var(--green-deep);
  font-family: "Source Sans 3", sans-serif;
  font-size: 2rem;
}

.stats-grid h3 {
  margin-bottom: 8px;
  font-size: 1.14rem;
}

.features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.secondary-link {
  margin-top: 28px;
}

.testimonials-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(7, 14, 32, 0.92), rgba(7, 14, 32, 0.96)),
    url("./assets/pattern-dark.jpg") center / cover no-repeat;
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  padding: 30px 28px;
  background: rgba(255, 255, 255, 0.98);
}

.stars {
  display: flex;
  gap: 6px;
  color: var(--green);
}

.stars .icon {
  width: 16px;
  height: 16px;
}

.testimonial-card p {
  margin: 18px 0 20px;
  color: var(--copy);
}

.testimonial-card strong {
  font-size: 1.05rem;
}

.contact-section {
  padding-bottom: 0;
}

.contact-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
}

.contact-card,
.contact-brand {
  padding: 38px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  padding: 15px 16px;
  border: 1px solid rgba(23, 35, 45, 0.14);
  background: #fff;
  color: var(--heading);
  border-radius: 14px;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  margin: 4px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--heading);
  font-weight: 600;
}

.legal-prose {
  max-width: 800px;
  margin: 0 auto;
}
.legal-prose h3 {
  margin: 30px 0 15px;
  color: var(--green-deep);
  font-size: 20px;
}
.legal-prose p {
  margin-bottom: 12px;
  text-align: justify;
}
.legal-prose ul {
  padding-left: 20px;
  margin-bottom: 15px;
}
.legal-prose ul li {
  list-style: disc;
  padding: 4px 0;
}
.legal-prose a {
  color: var(--green);
}

.services-price-list {
  display: grid;
  gap: 0;
}
.services-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.services-price-item span {
  line-height: 1.5;
}
.services-price-item strong {
  flex-shrink: 0;
  color: var(--green);
  font-size: 1.1rem;
  white-space: nowrap;
}

.contact-brand {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(180deg, rgba(7, 14, 32, 0.9), rgba(7, 14, 32, 0.96)),
    url("./assets/footer-shapes.png") right bottom / 360px no-repeat,
    var(--navy);
}

.contact-logo {
  width: 92px;
  margin-bottom: 22px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-cta {
  margin-top: 28px;
  color: var(--white);
}

.site-footer {
  position: relative;
  margin-top: 108px;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(180deg, rgba(7, 14, 32, 0.98), rgba(7, 14, 32, 1)),
    url("./assets/footer-shapes.png") right bottom / 420px no-repeat;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.7fr 0.6fr 0.55fr 0.8fr;
  padding: 62px 0 44px;
}

.footer-brand img {
  width: 130px;
  margin-bottom: 18px;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1.18rem;
}

.site-footer ul {
  display: grid;
  gap: 12px;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-contact {
  color: rgba(255, 255, 255, 0.86);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 1260px) {
  .site-header .container {
    padding-left: 24px;
  }

  .header-inner {
    grid-template-columns: 108px minmax(0, 1fr) 286px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.8rem;
  }

  .why-showcase-shell {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    gap: 28px;
  }

  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-card:last-child {
    grid-column: 1 / -1;
    max-width: 360px;
    justify-self: center;
  }

  .review-arrow.prev {
    left: 10px;
  }

  .review-arrow.next {
    right: 10px;
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .topbar-inner {
    grid-template-columns: 1fr;
  }

  .topbar-left::after {
    display: none;
  }

  .topbar-right {
    justify-content: flex-start;
    padding: 10px 18px 14px;
    background: var(--navy);
  }

  .site-header .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(23, 35, 45, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .main-nav a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(45, 197, 95, 0.08);
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    min-height: 720px;
  }

  .why-showcase-shell,
  .capabilities-shell,
  .footer-grid,
  .why-grid,
  .contact-grid,
  .offer-grid,
  .inquiry-shell {
    grid-template-columns: 1fr;
  }

  .why-showcase-section {
    padding: 104px 0 46px;
  }

  .why-portrait-stage {
    max-width: 460px;
    margin: 0 auto;
    padding: 24px;
  }

  .why-portrait-stage .slab-button {
    margin-top: 0;
  }

  .service-suites-section {
    padding: 28px 0 84px;
  }

  .suite-row {
    grid-template-columns: 1fr;
  }

  .suite-visual {
    min-height: 320px;
  }

  .suite-panel,
  .scope-panel {
    padding: 36px 28px;
  }

  .package-grid,
  .scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-card:last-child {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }

  .reviews-band {
    padding: 78px 0 138px;
  }

  .review-arrow {
    width: 44px;
    height: 44px;
  }

  .inquiry-shell {
    margin-top: -72px;
  }

  .inquiry-form-card,
  .inquiry-side-card {
    min-height: 0;
  }

  .inquiry-side-card {
    min-height: 360px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card,
  .service-card-last {
    min-height: 176px;
  }

  .service-card:nth-child(2) {
    border-right: 0;
  }

  .service-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(23, 35, 45, 0.08);
  }

  .capabilities-panel {
    margin: -58px 24px 0;
    padding: 44px 28px 38px;
  }

  .capability-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 22px;
  }

  .capabilities-visual {
    min-height: 520px;
    background-position: center;
  }
}

@media (max-width: 760px) {
  :root {
    --content: min(1280px, calc(100vw - 28px));
  }

  .topbar-left,
  .topbar-right {
    padding-inline: 16px;
  }

  .topbar-right {
    gap: 14px;
    flex-wrap: wrap;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 78px;
    gap: 12px;
  }

  .header-tools {
    display: none;
  }

  .brand-link img {
    width: 82px;
  }

  .hero,
  .hero-content {
    min-height: 680px;
  }

  .hero-content {
    padding-top: 150px;
  }

  .hero-kicker {
    padding: 14px 26px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 13vw, 3.6rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-arrow {
    width: 54px;
    height: 54px;
  }

  .hero-controls {
    width: calc(100vw - 24px);
  }

  .why-showcase-section {
    padding: 88px 0 30px;
  }

  .why-showcase-copy h2,
  .suite-heading h2,
  .reviews-heading h2,
  .inquiry-title {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .why-metrics,
  .package-grid,
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .why-primary-button,
  .slab-button,
  .mini-cta-button {
    max-width: 100%;
  }

  .why-portrait-stage {
    min-height: 0;
    padding: 18px;
  }

  .why-portrait-stage img {
    width: min(100%, 320px);
  }

  .service-suites-section {
    padding: 24px 0 68px;
  }

  .suite-panel,
  .scope-panel {
    padding: 34px 18px;
  }

  .suite-visual {
    min-height: 240px;
  }

  .package-card,
  .scope-card {
    min-height: 0;
    padding: 0 20px 24px;
  }

  .package-ribbon,
  .scope-ribbon {
    min-width: 82%;
    margin-left: -20px;
    margin-bottom: 26px;
    padding: 18px 18px 18px 20px;
  }

  .reviews-band {
    padding: 72px 0 124px;
  }

  .reviews-band::before,
  .reviews-band::after {
    display: none;
  }

  .reviews-slider {
    min-height: 170px;
    padding-inline: 18px;
  }

  .review-arrow {
    top: auto;
    bottom: 50px;
    transform: none;
  }

  .review-arrow.prev {
    left: 18px;
  }

  .review-arrow.next {
    right: 18px;
  }

  .inquiry-shell {
    margin-top: -56px;
  }

  .inquiry-form-card,
  .inquiry-side-card {
    padding: 28px 20px 30px;
  }

  .inquiry-form-card::before {
    height: 6px;
  }

  .service-strip {
    margin-top: -52px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .capabilities-panel,
  .why-copy,
  .offer-card,
  .contact-card,
  .contact-brand {
    padding: 24px 20px;
  }

  .capabilities-panel {
    margin: -36px 0 0;
    padding: 36px 20px 28px;
  }

  .capabilities-panel::before {
    height: 6px;
  }

  .capabilities-panel-kicker {
    gap: 12px;
    font-size: 0.82rem;
  }

  .capabilities-panel-kicker::before,
  .capabilities-panel-kicker::after {
    width: 28px;
  }

  .service-card,
  .service-card-last {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 35, 45, 0.08);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .capability-services-grid,
  .features-grid,
  .testimonials-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .capability-service {
    min-height: 0;
    gap: 0;
  }

  .capability-service h3 {
    min-height: 0;
    margin-bottom: 18px;
    font-size: 1.16rem;
  }

  .service-cta-button {
    width: min(214px, 100%);
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

  .why-visual {
    padding-top: 24px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 16px 0;
  }
}

.main-nav a[aria-current="page"] {
  color: var(--green-deep);
}

.subpage-view {
  background: linear-gradient(180deg, #f3f5f7 0%, #ffffff 280px, #f4f6f8 100%);
}

.subpage-main {
  display: block;
}

.subpage-hero {
  position: relative;
  min-height: 428px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 14, 32, 0.26), rgba(7, 14, 32, 0.86)),
    linear-gradient(90deg, rgba(7, 14, 32, 0.8), rgba(7, 14, 32, 0.24));
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 132px;
  background: linear-gradient(180deg, rgba(7, 14, 32, 0), rgba(7, 14, 32, 0.42));
}

.subpage-hero--companies {
  background-image: url("./assets/hero-business.jpg");
}

.subpage-hero--private {
  background-image: url("./assets/hero-admin.jpg");
}

.subpage-hero--about {
  background-image: url("./assets/about-team.jpg");
}

.subpage-hero--contact {
  background-image: url("./assets/office-photo.jpg");
}

.subpage-hero--downloads {
  background-image: url("./assets/page-title.jpg");
}

.subpage-hero--knowledge {
  background-image: url("./assets/page-title.jpg");
}

.subpage-hero--blog {
  background-image: url("./assets/blog-auto.jpg");
}

.subpage-hero--legal {
  background-image: url("./assets/page-title.jpg");
}

.subpage-hero--services {
  background-image: url("./assets/hero-business.jpg");
}

.subpage-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin-inline: auto;
  padding: 108px 0 98px;
  text-align: center;
}

.subpage-breadcrumbs {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  text-align: center;
}

.subpage-breadcrumbs a:hover {
  color: var(--white);
}

.subpage-hero .section-kicker {
  justify-content: center;
  margin-bottom: 14px;
}

.subpage-hero h1 {
  margin: 0;
  max-width: 18ch;
  margin-inline: auto;
  color: var(--white);
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.35rem);
  line-height: 0.96;
  text-wrap: balance;
}

.subpage-hero-lead {
  max-width: 820px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
  line-height: 1.8;
  text-align: center;
}

.subpage-quick-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: -56px;
}

.quick-card,
.feature-image-card,
.feature-copy-card,
.feature-stat-card,
.pricing-tile,
.info-card,
.faq-topic,
.resource-card,
.contact-direct-card,
.contact-form-card,
.contact-info-card,
.map-link-card,
.article-featured,
.blog-list-card,
.mini-banner {
  border: 1px solid rgba(23, 35, 45, 0.08);
  box-shadow: var(--shadow-soft);
}

.quick-card {
  padding: 22px 22px 20px;
  background: var(--white);
}

.quick-card .support-icon {
  margin-bottom: 16px;
}

.quick-card h2 {
  margin: 0 0 8px;
  color: var(--heading);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.18rem;
  line-height: 1.15;
}

.quick-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.72;
}

.subpage-section {
  padding: 88px 0;
}

.subpage-section--overlap {
  padding-top: 0;
}

.subpage-section--tight {
  padding-top: 72px;
  padding-bottom: 72px;
}

.subpage-section--white {
  background: var(--white);
}

.subpage-section--band {
  background: linear-gradient(180deg, #ffffff 0%, #f3f5f7 100%);
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.feature-image-card {
  overflow: hidden;
  min-height: 100%;
  background: #ebeff2;
}

.feature-image-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.feature-copy-card {
  padding: 36px 34px;
  background: var(--white);
}

.feature-copy-card h2 {
  margin: 0 0 14px;
  max-width: 12ch;
  color: var(--heading);
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 1.02;
}

.feature-copy-card p {
  margin: 0 0 14px;
  line-height: 1.84;
}

.subpage-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.subpage-pill-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(45, 197, 95, 0.12);
  color: var(--heading);
  font-size: 0.88rem;
  font-weight: 700;
}

.subpage-inline-cta {
  margin-top: 24px;
}

.section-head {
  max-width: 760px;
  margin: 0 0 28px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  color: var(--heading);
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(2.05rem, 4vw, 3.15rem);
  line-height: 1.02;
}

.section-head p:not(.section-kicker) {
  margin: 14px 0 0;
  line-height: 1.82;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-stat-card {
  padding: 24px 22px;
  background: var(--white);
  text-align: center;
}

.feature-stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-family: "Source Sans 3", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.feature-stat-card span {
  display: block;
  color: var(--heading);
  font-weight: 800;
}

.feature-stat-card p {
  margin: 8px 0 0;
  font-size: 0.92rem;
  line-height: 1.72;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-tile {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: var(--white);
}

.pricing-tile__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(45, 197, 95, 0.12);
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-tile h3 {
  margin: 16px 0 8px;
  color: var(--heading);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.5rem;
  line-height: 1.06;
}

.pricing-tile__price {
  margin: 0 0 16px;
  color: var(--green);
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(2rem, 2.6vw, 2.9rem);
  line-height: 1;
}

.pricing-tile__price small {
  display: block;
  margin-top: 6px;
  color: #a1a7af;
  font-family: "Open Sans", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
}

.pricing-tile p {
  margin: 0 0 14px;
  line-height: 1.78;
}

.pricing-tile ul,
.info-card ul,
.resource-card ul {
  display: grid;
  gap: 10px;
}

.pricing-tile ul {
  margin: 0 0 20px;
}

.pricing-tile li,
.info-card li,
.resource-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.7;
}

.pricing-tile li .icon,
.info-card li .icon,
.resource-card li .icon {
  margin-top: 4px;
  color: var(--green);
}

.pricing-tile .slab-button,
.pricing-tile .mini-cta-button {
  align-self: flex-start;
  margin-top: auto;
}

.pricing-tile--featured {
  border: 2px solid var(--green);
  position: relative;
}

.pricing-grid--small {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.pricing-tile--compact {
  padding: 22px 24px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.pricing-tile--compact p {
  margin: 0 0 14px;
  line-height: 1.78;
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  padding: 26px 24px;
  background: var(--white);
}

.info-card .support-icon,
.resource-card .support-icon,
.contact-direct-card .support-icon {
  margin-bottom: 16px;
}

.info-card h3,
.resource-card h3,
.contact-direct-card h3 {
  margin: 0 0 10px;
  color: var(--heading);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.22rem;
  line-height: 1.2;
}

.info-card p,
.resource-card p,
.contact-direct-card p,
.blog-list-card p,
.article-featured-copy p,
.map-link-card p {
  margin: 0 0 14px;
  line-height: 1.78;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-card {
  padding: 26px 24px;
  background: var(--white);
}

.downloads-page-shell {
  padding-bottom: 80px;
}

.downloads-stack {
  max-width: 940px;
  margin-inline: auto;
  display: grid;
  gap: 22px;
}

.downloads-card,
.downloads-note-card {
  border: 1px solid rgba(23, 35, 45, 0.08);
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.downloads-card {
  position: relative;
  padding: 38px 40px 40px;
}

.downloads-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--green);
}

.downloads-card .section-kicker {
  justify-content: center;
  margin-bottom: 12px;
}

.downloads-card h2,
.downloads-note-card h3 {
  margin: 0;
  color: var(--heading);
  font-family: "Source Sans 3", sans-serif;
}

.downloads-card h2 {
  max-width: 16ch;
  margin-inline: auto;
  font-size: clamp(2rem, 3vw, 2.95rem);
  line-height: 1.02;
  text-align: center;
}

.downloads-intro {
  max-width: 60ch;
  margin: 14px auto 0;
  line-height: 1.82;
  text-align: center;
}

.downloads-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.downloads-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(23, 35, 45, 0.08);
  background: linear-gradient(180deg, #fbfcfd 0%, #ffffff 100%);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.downloads-list a:hover,
.downloads-list a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(45, 197, 95, 0.28);
  box-shadow: 0 20px 34px rgba(7, 14, 32, 0.08);
}

.downloads-link-main,
.downloads-link-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.downloads-link-main {
  min-width: 0;
}

.downloads-link-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(45, 197, 95, 0.12);
  color: var(--green);
  flex: 0 0 auto;
}

.downloads-link-copy {
  min-width: 0;
}

.downloads-link-copy strong,
.downloads-link-copy small {
  display: block;
}

.downloads-link-copy strong {
  color: var(--heading);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.28;
}

.downloads-link-copy small {
  margin-top: 4px;
  color: #85909b;
  font-size: 0.9rem;
  line-height: 1.5;
}

.downloads-link-meta {
  color: var(--green-deep);
  flex: 0 0 auto;
}

.downloads-file-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(45, 197, 95, 0.12);
  color: var(--green-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.downloads-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.downloads-note-card {
  padding: 28px 28px 30px;
}

.downloads-note-card .section-kicker {
  margin-bottom: 10px;
}

.downloads-note-card h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  line-height: 1.08;
}

.downloads-note-card p {
  margin: 0;
  line-height: 1.8;
}

.downloads-note-card--cta {
  background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
}

.downloads-note-card--cta .slab-button {
  margin-top: 18px;
}

.resource-card ul {
  margin: 0 0 18px;
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-topic {
  padding: 26px 24px;
  background: var(--white);
}

.faq-topic-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.faq-topic-head h3 {
  margin: 0 0 6px;
  color: var(--heading);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.faq-topic-head p {
  margin: 0;
  line-height: 1.72;
}

.faq-entry {
  border-top: 1px solid rgba(23, 35, 45, 0.08);
}

.faq-entry:first-of-type {
  border-top: 0;
}

.faq-entry summary {
  position: relative;
  display: block;
  padding: 16px 24px 16px 0;
  color: var(--heading);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-entry summary::-webkit-details-marker {
  display: none;
}

.faq-entry summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--green);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-entry[open] summary::after {
  content: "-";
}

.faq-entry-body {
  padding: 0 0 16px;
}

.faq-entry-body p {
  margin: 0 0 10px;
  line-height: 1.76;
}

.faq-entry-body p:last-child {
  margin-bottom: 0;
}

.contact-direct-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-direct-card {
  padding: 24px 22px;
  background: var(--white);
}

.contact-page-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 18px;
}

.contact-form-card,
.contact-info-card,
.map-link-card {
  padding: 28px 28px 30px;
  background: var(--white);
}

.contact-form-card {
  position: relative;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--green);
}

.contact-form-card h2,
.contact-info-card h3,
.map-link-card h3,
.article-featured-copy h2,
.blog-list-card h3,
.mini-banner h2 {
  margin: 0;
  color: var(--heading);
  font-family: "Source Sans 3", sans-serif;
}

.contact-form-card h2 {
  margin-bottom: 20px;
  font-size: clamp(1.95rem, 2.6vw, 2.85rem);
  line-height: 1;
}

.contact-form-card h2 span,
.contact-form-card h2 strong {
  display: block;
}

.contact-form-card h2 strong {
  color: var(--green);
}

.contact-form-card .contact-form {
  gap: 12px;
}

.contact-form-card .slab-button {
  margin-top: 12px;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(180deg, rgba(7, 14, 32, 0.74), rgba(7, 14, 32, 0.9)),
    url("./assets/hero-admin.jpg") center / cover no-repeat;
}

.contact-info-card .section-kicker {
  margin-bottom: 10px;
}

.contact-info-card h3 {
  max-width: 12ch;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.08;
}

.contact-info-card p {
  max-width: 34ch;
  margin: 0 0 14px;
  line-height: 1.74;
}

.contact-info-card .contact-list {
  gap: 10px;
  margin-top: 10px;
}

.contact-info-card .contact-list li,
.contact-info-card .contact-list a {
  color: rgba(255, 255, 255, 0.92);
}

.contact-info-card .slab-button {
  align-self: flex-start;
  margin-top: 16px;
}

.map-link-card {
  background: linear-gradient(180deg, #f8fbf9, #ffffff);
}

.map-link-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 20px;
}

.map-link-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.68;
}

.map-link-card li .icon {
  margin-top: 4px;
  color: var(--green);
}

.article-featured {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  overflow: hidden;
  background: var(--white);
}

.article-featured-media {
  min-height: 100%;
  background: #e9edf0;
}

.article-featured-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.article-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 30px;
}

.article-featured-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0 0 16px;
  color: #7c8790;
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.blog-list-card {
  overflow: hidden;
  background: var(--white);
}

.blog-list-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-list-card-body {
  padding: 24px 22px 24px;
}

.blog-list-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.12;
}

.mini-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 32px;
  background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
}

.mini-banner h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  line-height: 1.02;
}

.mini-banner p {
  max-width: 52ch;
  margin: 12px 0 0;
  line-height: 1.78;
}

.feature-copy-card a,
.info-card a,
.resource-card a,
.contact-direct-card a,
.map-link-card a,
.article-featured-copy a,
.blog-list-card a,
.mini-banner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-deep);
  font-weight: 800;
}

.feature-copy-card a.slab-button,
.info-card a.slab-button,
.resource-card a.slab-button,
.contact-direct-card a.slab-button,
.map-link-card a.slab-button,
.article-featured-copy a.slab-button,
.blog-list-card a.slab-button,
.mini-banner a.slab-button,
.blog-list-card-body a.slab-button,
a.slab-button,
a.mini-cta-button {
  color: var(--white);
}

.article-highlight-grid {
  max-width: 1120px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-highlight-card,
.article-body-card,
.article-sidebar-card {
  border: 1px solid rgba(23, 35, 45, 0.08);
  box-shadow: var(--shadow-soft);
}

.article-highlight-card {
  position: relative;
  padding: 22px 22px 20px;
  background: var(--white);
}

.article-highlight-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--green);
}

.article-highlight-card span:first-child {
  display: block;
  margin-bottom: 8px;
  color: #8b95a0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-highlight-card strong {
  display: block;
  color: var(--heading);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.18rem;
  line-height: 1.15;
}

.article-layout {
  max-width: 1120px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
}

.article-body-card {
  position: relative;
  padding: 38px 38px 42px;
  background: var(--white);
}

.article-body-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--green);
}

.article-cover {
  overflow: hidden;
  margin: 0 0 28px;
  border: 1px solid rgba(23, 35, 45, 0.08);
}

.article-cover img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
}

.article-intro {
  margin: 0 0 24px;
  color: var(--heading);
  font-size: 1.08rem;
  line-height: 1.84;
}

.article-prose {
  color: var(--copy);
}

.article-prose h2,
.article-prose h3 {
  margin: 28px 0 12px;
  color: var(--heading);
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.08;
}

.article-prose h2 {
  font-size: 2rem;
}

.article-prose h3 {
  font-size: 1.5rem;
}

.article-prose p {
  margin: 0 0 16px;
  line-height: 1.88;
}

.article-prose ul,
.article-prose ol {
  margin: 0 0 18px;
  padding-left: 20px;
}

.article-prose li {
  margin-bottom: 10px;
  line-height: 1.76;
}

.article-prose a {
  color: var(--green-deep);
  font-weight: 700;
}

.article-prose strong {
  color: var(--heading);
}

.article-tail-cta {
  margin-top: 34px;
  padding: 26px 24px;
  border: 1px solid rgba(23, 35, 45, 0.08);
  background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
}

.article-tail-cta .section-kicker {
  margin-bottom: 10px;
}

.article-tail-cta h3 {
  margin: 0 0 12px;
  color: var(--heading);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.6rem;
  line-height: 1.08;
}

.article-tail-cta p {
  margin: 0;
  line-height: 1.8;
}

.article-tail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 18px;
}

.text-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-deep);
  font-weight: 800;
}

.article-note {
  margin: 24px 0;
  padding: 20px 20px 20px 22px;
  border-left: 4px solid var(--green);
  background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
}

.article-note p:last-child {
  margin-bottom: 0;
}

.article-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 108px;
}

.article-sidebar-card {
  position: relative;
  padding: 26px 22px 24px;
  background: var(--white);
}

.article-sidebar-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green) 0%, rgba(45, 197, 95, 0.24) 100%);
}

.article-sidebar-card h3 {
  margin: 0 0 10px;
  color: var(--heading);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.3rem;
  line-height: 1.12;
}

.article-sidebar-card p {
  margin: 0 0 14px;
  line-height: 1.78;
}

.article-sidebar-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
}

.article-sidebar-card li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-deep);
  font-weight: 800;
}

.article-sidebar-card .slab-button,
.article-sidebar-card .mini-cta-button {
  margin-top: 8px;
}

.support-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(45, 197, 95, 0.12);
  color: var(--green);
  flex: 0 0 auto;
}

.support-icon .icon {
  width: 26px;
  height: 26px;
}

.quick-card--link {
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.quick-card--link:hover,
.quick-card--link:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(7, 14, 32, 0.1);
  border-color: rgba(45, 197, 95, 0.24);
}

.quick-card--link h2 {
  color: var(--heading);
}

.quick-card--link:hover h2 {
  color: var(--green-deep);
}

.faq-topic {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-topic:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(7, 14, 32, 0.1);
}

.faq-entry summary {
  transition: color 0.15s ease;
}

.faq-entry summary:hover {
  color: var(--green-deep);
}

.section-head--center {
  text-align: center;
  margin-inline: auto;
}

.faq-single-topic {
  margin-bottom: 52px;
}

.faq-single-topic:last-child {
  margin-bottom: 0;
}

.faq-topic--wide {
  max-width: 100%;
}

.blog-list-card-body .slab-button {
  margin-top: 14px;
}

.blog-list-card-body .slab-button > span:first-child {
  font-size: 0.88rem;
  min-height: 40px;
  padding: 0 16px;
}

.blog-list-card-body .slab-button .service-cta-icon {
  width: 40px;
  min-height: 40px;
}

.contact-page-shell {
  gap: 24px;
}

.contact-direct-card {
  display: flex;
  flex-direction: column;
}

.contact-direct-card .slab-button {
  margin-top: auto;
}

.contact-direct-grid {
  gap: 24px;
}

body[data-subpage="kontakt"] .subpage-section {
  padding: 72px 0;
}

body[data-subpage="kontakt"] .subpage-section--overlap {
  padding-bottom: 56px;
}

.blog-list-card-body {
  display: flex;
  flex-direction: column;
}

.blog-list-card-body .slab-button {
  align-self: flex-start;
}

.subpage-view .site-footer {
  margin-top: 88px;
}

@media (max-width: 1180px) {
  .subpage-quick-grid,
  .metric-grid,
  .pricing-grid,
  .info-card-grid,
  .resource-grid,
  .contact-direct-grid,
  .downloads-note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-columns,
  .blog-list-grid {
    grid-template-columns: 1fr;
  }

  .feature-split,
  .contact-page-shell,
  .article-featured,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .feature-image-card {
    min-height: 340px;
  }

  .contact-info-card h3 {
    max-width: none;
  }

  .article-sidebar {
    position: static;
  }

  .downloads-card {
    padding: 32px 24px 24px;
  }

  .downloads-list a {
    padding: 16px;
  }
}

@media (max-width: 760px) {
  .subpage-view {
    background: var(--white);
  }

  .subpage-hero {
    min-height: 360px;
  }

  .subpage-hero-inner {
    padding: 100px 0 60px;
  }

  .subpage-hero h1 {
    max-width: 14ch;
    font-size: 2.4rem;
  }

  .subpage-hero-lead {
    font-size: 0.98rem;
  }

  .subpage-quick-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: -34px;
  }

  .subpage-section {
    padding: 72px 0;
  }

  .subpage-section--tight {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .metric-grid,
  .pricing-grid,
  .pricing-grid--small,
  .info-card-grid,
  .resource-grid,
  .faq-columns,
  .blog-list-grid,
  .contact-direct-grid,
  .article-highlight-grid,
  .downloads-note-grid,
  .services-price-list {
    grid-template-columns: 1fr;
  }

  .feature-copy-card,
  .feature-stat-card,
  .pricing-tile,
  .info-card,
  .faq-topic,
  .resource-card,
  .contact-direct-card,
  .contact-form-card,
  .contact-info-card,
  .map-link-card,
  .article-featured-copy,
  .blog-list-card-body,
  .mini-banner,
  .article-body-card,
  .article-sidebar-card,
  .downloads-note-card {
    padding: 24px 20px;
  }

  .contact-form-card::before {
    height: 6px;
  }

  .feature-image-card {
    min-height: 280px;
  }

  .article-featured-media img {
    min-height: 260px;
  }

  .article-cover {
    margin-bottom: 22px;
  }

  .mini-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .downloads-card {
    padding: 28px 20px 20px;
  }

  .downloads-card h2 {
    max-width: none;
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .article-tail-cta {
    padding: 24px 20px;
  }

  .article-tail-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .downloads-list a {
    flex-direction: column;
    align-items: flex-start;
  }

  .downloads-link-meta {
    width: 100%;
    justify-content: space-between;
  }

  .subpage-view .site-footer {
    margin-top: 72px;
  }
}

/* Entity one-liner — lead paragraph w capabilities-panel-head (homepage SEO/GEO) */
.entity-one-liner {
  max-width: 760px;
  margin: 22px auto 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--copy);
  text-align: left;
}

.entity-one-liner strong {
  color: var(--heading);
  font-weight: 700;
}

@media (max-width: 720px) {
  .entity-one-liner {
    font-size: 0.98rem;
    margin-top: 18px;
  }
}

/* Sticky language switcher on subpages */
.lang-switch-sticky {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 500;
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}

.lang-switch-sticky a {
  display: inline-block;
  min-width: 36px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  color: #2d2d2d;
  border-radius: 18px;
  transition: background 0.15s, color 0.15s;
}

.lang-switch-sticky a:hover {
  background: #f1f0ec;
}

.lang-switch-sticky a.is-active {
  background: #2d2d2d;
  color: #fff;
  pointer-events: none;
}

@media (max-width: 640px) {
  .lang-switch-sticky {
    top: 12px;
    right: 12px;
    padding: 3px;
  }
  .lang-switch-sticky a {
    min-width: 30px;
    padding: 4px 8px;
    font-size: 0.72rem;
  }
}

.main-nav .nav-item.has-submenu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.main-nav .submenu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: var(--heading);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  line-height: inherit;
  white-space: nowrap;
}

.main-nav .submenu-toggle:hover,
.main-nav .submenu-toggle:focus-visible {
  color: var(--green-deep);
}

.main-nav .submenu-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.main-nav .has-submenu.is-open .submenu-chevron {
  transform: rotate(180deg);
}

.main-nav .submenu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 300px;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(23, 35, 45, 0.08);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(23, 35, 45, 0.14);
  padding: 8px;
  z-index: 200;
}

.main-nav .has-submenu:hover .submenu,
.main-nav .has-submenu:focus-within .submenu,
.main-nav .has-submenu.is-open .submenu {
  display: flex;
}

.main-nav .submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  white-space: normal;
  color: var(--heading);
  text-decoration: none;
  line-height: 1.35;
}

.main-nav .submenu a:hover,
.main-nav .submenu a:focus-visible {
  background: rgba(45, 197, 95, 0.08);
  color: var(--green-deep);
}

@media (max-width: 1024px) {
  .main-nav .nav-item.has-submenu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .main-nav .submenu-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .main-nav .submenu-toggle:hover,
  .main-nav .submenu-toggle:focus-visible {
    background: rgba(45, 197, 95, 0.08);
  }

  .main-nav .submenu {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 4px;
    border: 0;
    border-radius: 12px;
    box-shadow: none;
    background: rgba(23, 35, 45, 0.035);
    padding: 6px;
  }

  .main-nav .has-submenu:hover .submenu,
  .main-nav .has-submenu:focus-within .submenu {
    display: none;
  }

  .main-nav .has-submenu.is-open .submenu {
    display: flex;
  }

  .main-nav .submenu a {
    padding: 10px 14px;
  }
}
