
:root {
  --green-900: #0b2f29;
  --green-700: #0f7a52;
  --green-100: #e8f6ef;
  --blue-700: #2563eb;
  --blue-100: #eaf2ff;
  --amber-500: #d79a12;
  --coral-500: #e86f4c;
  --ink: #18212f;
  --muted: #637083;
  --line: #dfe7e4;
  --paper: #ffffff;
  --wash: #f6faf8;
  --wash-blue: #f3f7fc;
  --shadow: 0 18px 45px rgba(24, 33, 47, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
p { color: var(--muted); line-height: 1.72; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(223, 231, 228, .86);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  color: var(--green-900);
  white-space: nowrap;
}
.brand img { border-radius: 8px; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.primary-nav > a,
.has-mega > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: #334155;
  font-weight: 700;
  font-size: 14px;
}
.primary-nav a:hover,
.primary-nav a.active { color: var(--green-700); }
.primary-nav > a.active::after,
.has-mega > a.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  background: var(--green-700);
}
.header-cta,
.btn,
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 850;
  border: 1px solid transparent;
}
.header-cta,
.btn.primary,
.footer-cta {
  color: white;
  background: var(--green-700);
  box-shadow: 0 12px 28px rgba(15, 122, 82, .22);
}
.btn.secondary {
  color: var(--green-900);
  background: white;
  border-color: var(--line);
}
.btn.secondary.light {
  color: white;
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
}
.has-mega { position: relative; }
.has-mega::after {
  content: "";
  position: absolute;
  top: 38px;
  left: -12px;
  right: -12px;
  height: 24px;
  display: none;
}
.has-mega:hover::after,
.has-mega:focus-within::after { display: block; }
.mega-menu {
  position: absolute;
  top: 44px;
  left: -260px;
  width: min(960px, calc(100vw - 64px));
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  z-index: 3;
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.mega-open .mega-menu { display: grid; }
.mega-menu strong,
.footer-links h3 {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--green-900);
}
.mega-menu a,
.footer-links a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}
.home-hero {
  min-height: 78vh;
  max-height: 940px;
  display: grid;
  align-items: center;
  padding: 52px 32px 42px;
  background-position: center;
  background-size: cover;
  color: white;
}
.hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 18px;
  padding: 0;
  background: transparent;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}
.home-hero .eyebrow {
  color: white;
  background: transparent;
}
.page-hero .eyebrow,
.ahead-box .eyebrow,
.playbook-lead .eyebrow,
.final-cta .eyebrow {
  color: rgba(255,255,255,.9);
}
h1, h2, h3 { color: var(--ink); line-height: 1.08; margin: 0; }
.home-hero h1 {
  max-width: 760px;
  margin: 16px 0;
  color: white;
  font-size: 52px;
}
.home-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 17px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.hero-actions.centered { justify-content: center; }
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero-metrics div {
  min-width: 150px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
}
.hero-metrics strong { display: block; font-size: 24px; color: white; }
.hero-metrics span { display: block; color: rgba(255,255,255,.78); font-size: 13px; }
section:not(.home-hero):not(.page-hero) {
  padding: 76px 32px;
}
.section-heading {
  width: min(980px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}
.section-heading.split {
  width: min(1180px, 100%);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  text-align: left;
}
.section-heading h2 {
  margin-top: 14px;
  font-size: 38px;
}
.section-heading p {
  max-width: 780px;
  margin: 16px auto 0;
  font-size: 17px;
}
.intro-band,
.seo-hub,
.module-story,
.pricing-preview,
.faq-section,
.related-section { background: var(--wash); }
.theme-regulatory { --theme: #0f7a52; --theme-dark: #0b2f29; --theme-soft: #dff5e9; --theme-contrast: #8bc9ff; }
.theme-sales { --theme: #2563eb; --theme-dark: #172554; --theme-soft: #eaf2ff; --theme-contrast: #f4b24c; }
.theme-stock { --theme: #b77912; --theme-dark: #3b2a09; --theme-soft: #fff5d8; --theme-contrast: #40b9a2; }
.theme-commerce { --theme: #cf5b3d; --theme-dark: #41170f; --theme-soft: #fff0ec; --theme-contrast: #4c7ee8; }
.theme-team { --theme: #5965c8; --theme-dark: #1f245f; --theme-soft: #eef0ff; --theme-contrast: #61c58f; }
.long-copy {
  width: min(920px, 100%);
  margin: 0 auto;
  font-size: 17px;
}
.long-copy h2 { margin-top: 30px; font-size: 30px; }
.ahead-section { background: white; }
.ahead-box {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 30px;
  padding: 36px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 18%, rgba(139, 201, 255, .24), transparent 28%),
    linear-gradient(135deg, #0b2f29 0%, #123f39 48%, #19365d 100%);
  color: white;
  box-shadow: 0 28px 72px rgba(11, 47, 41, .22);
}
.ahead-copy h2 {
  max-width: 640px;
  margin: 16px 0;
  color: white;
  font-size: 40px;
}
.ahead-copy p {
  max-width: 620px;
  color: rgba(255,255,255,.82);
}
.ahead-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}
.ahead-actions .text-link { color: white; }
.ahead-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ahead-compare article {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.ahead-compare article span {
  display: block;
  margin-bottom: 18px;
  font-weight: 900;
}
.ahead-compare ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}
.ahead-now {
  background: white !important;
  color: var(--ink);
}
.ahead-now ul { color: var(--muted); }
.feature-showcase,
.process-section,
.solution-strip,
.text-section,
.feature-copyband,
.feature-playbook,
.content-band,
.contact-layout,
.company-page { width: 100%; }
.feature-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-grid.small { grid-template-columns: repeat(3, 1fr); }
.feature-card,
.solution-grid a,
.process-grid article,
.benefit-grid article,
.pricing-card,
.article-grid article,
.contact-layout article,
.story-main,
.story-points article,
.facebook-review,
.playbook-lead,
.playbook-card,
.detail-card-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 24px rgba(24, 33, 47, .06);
}
.feature-card {
  min-height: 250px;
  padding: 24px;
  transition: transform .18s ease, border-color .18s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 122, 82, .45);
}
.feature-card small { color: var(--amber-500); font-weight: 850; }
.card-icon,
.big-icon,
.benefit-grid article > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--blue-100);
  color: var(--blue-700);
}
.card-icon svg,
.big-icon svg,
.benefit-grid article > span svg,
.mega-menu svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card strong {
  display: block;
  margin-top: 18px;
  font-size: 22px;
}
.feature-card p { margin-bottom: 0; }
.process-grid,
.solution-grid,
.category-grid,
.pricing-grid,
.benefit-grid,
.article-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.process-grid { grid-template-columns: repeat(4, 1fr); }
.process-grid article,
.benefit-grid article,
.article-grid article {
  padding: 24px;
}
.process-grid span {
  display: inline-flex;
  color: var(--coral-500);
  font-weight: 900;
  margin-bottom: 18px;
}
.process-grid h3,
.article-grid h2 { font-size: 22px; }
.category-grid { grid-template-columns: repeat(5, 1fr); }
.category-grid article {
  padding: 20px;
  border-left: 3px solid var(--green-700);
  background: white;
  border-radius: 8px;
}
.category-grid a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-weight: 650;
}
.solution-grid { grid-template-columns: repeat(4, 1fr); }
.solution-grid a { padding: 24px; }
.solution-grid strong { display: block; font-size: 22px; }
.facebook-proof {
  background:
    linear-gradient(180deg, white 0%, #f8fbfd 100%);
}
.facebook-reviews,
.facebook-profile-strip {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.facebook-reviews {
  display: grid;
  grid-template-columns: .78fr 1.2fr .78fr;
  gap: 18px;
  align-items: center;
}
.facebook-review {
  position: relative;
  padding: 26px;
  overflow: hidden;
}
.main-review {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(15, 122, 82, .34);
  background:
    radial-gradient(circle at 90% 0%, rgba(15, 122, 82, .14), transparent 34%),
    white;
  color: var(--ink);
  box-shadow: 0 24px 58px rgba(15, 122, 82, .16);
}
.main-review::before {
  content: "„";
  position: absolute;
  top: -26px;
  right: 28px;
  color: rgba(15, 122, 82, .1);
  font-size: 160px;
  line-height: 1;
  font-weight: 900;
}
.facebook-review blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
}
.main-review blockquote {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.35;
}
.facebook-review footer {
  position: relative;
  z-index: 1;
  margin-top: 22px;
}
.facebook-review strong {
  display: block;
  color: var(--green-900);
  font-size: 16px;
}
.facebook-review footer span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}
.main-review strong {
  color: var(--green-900);
  font-size: 18px;
}
.main-review footer span { color: var(--green-700); }
.side-review {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 4px solid var(--green-700);
}
.facebook-profile-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f8fa;
  color: var(--muted);
  font-weight: 750;
}
.facebook-profile-strip span:first-child {
  color: var(--ink);
}
.facebook-profile-strip a {
  margin-left: auto;
  color: var(--green-700);
}
.pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.pricing-card { position: relative; padding: 28px; }
.pricing-card.featured { border-color: var(--green-700); box-shadow: var(--shadow); }
.pricing-card h3 { font-size: 24px; }
.pricing-card > strong {
  display: block;
  margin-top: 16px;
  font-size: 36px;
  color: var(--green-700);
}
.pricing-card ul {
  display: grid;
  gap: 10px;
  min-height: 132px;
  margin: 22px 0;
  padding-left: 20px;
  color: var(--muted);
}
.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 0 4px 10px;
  border-left: 2px solid var(--amber-500);
  background: transparent;
  color: var(--amber-500);
  font-size: 12px;
  font-weight: 850;
}
.page-hero {
  min-height: 430px;
  padding: 88px 32px 72px;
  display: grid;
  align-items: center;
  color: white;
  background:
    linear-gradient(120deg, rgba(11, 47, 41, .96), rgba(15, 122, 82, .88)),
    url('/assets/paszporty24-hero.png') center/cover;
}
.page-hero > div {
  width: min(1080px, 100%);
  margin: 0 auto;
}
.page-hero h1 {
  max-width: 900px;
  margin: 18px 0;
  color: white;
  font-size: 48px;
}
.page-hero p {
  max-width: 780px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
}
.feature-detail-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}
.feature-art {
  position: relative;
  min-height: 440px;
  padding: 26px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--theme-contrast) 34%, transparent), transparent 30%),
    linear-gradient(145deg, var(--theme-dark), var(--theme));
  color: white;
  box-shadow: 0 22px 52px color-mix(in srgb, var(--theme) 24%, transparent);
}
.feature-art::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}
.art-top,
.art-hero,
.art-flow div {
  position: relative;
  z-index: 1;
}
.art-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,.8);
  font-size: 13px;
}
.art-hero {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}
.art-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 8px;
  background: rgba(255,255,255,.14);
}
.art-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.art-hero small {
  display: block;
  color: rgba(255,255,255,.72);
  font-weight: 850;
}
.art-hero h3 {
  margin-top: 6px;
  color: white;
  font-size: 30px;
}
.art-bars {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 12px;
  height: 120px;
  margin: 34px 0 26px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.09);
}
.art-bars i {
  flex: 1;
  height: var(--bar);
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, white, color-mix(in srgb, var(--theme-contrast) 66%, white));
  opacity: .92;
}
.art-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}
.art-flow div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
}
.art-flow b {
  color: var(--theme-contrast);
}
.art-flow span {
  color: rgba(255,255,255,.84);
  line-height: 1.45;
}
.story-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 18px;
  align-items: stretch;
}
.story-main,
.story-points article {
  padding: 28px;
}
.story-main h2 {
  margin: 16px 0;
  font-size: 36px;
}
.story-main p {
  max-width: 740px;
  font-size: 17px;
}
.story-points {
  display: grid;
  gap: 18px;
}
.story-points strong {
  display: block;
  color: var(--green-900);
  font-size: 18px;
}
.story-points p { margin-bottom: 0; }
.feature-playbook {
  background: white;
}
.playbook-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 18px;
}
.playbook-lead,
.playbook-card {
  padding: 26px;
}
.playbook-lead {
  background:
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--theme-contrast) 28%, transparent), transparent 34%),
    var(--theme-dark);
  color: white;
}
.playbook-lead h2 {
  margin: 16px 0;
  color: white;
  font-size: 31px;
}
.playbook-lead p { color: rgba(255,255,255,.82); }
.playbook-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--theme-soft);
  color: var(--theme);
}
.playbook-card span svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.playbook-card h3 {
  margin-top: 18px;
  font-size: 22px;
}
.feature-copyband {
  background: var(--wash-blue);
}
.detail-card-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.detail-card-grid article {
  padding: 28px;
}
.detail-card-grid article > span {
  color: var(--coral-500);
  font-weight: 900;
}
.detail-card-grid h3 {
  margin-top: 14px;
  font-size: 24px;
}
.inline-cta {
  width: min(1180px, 100%);
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.detail-main h2 { margin-top: 20px; font-size: 38px; }
.detail-main p { font-size: 17px; }
.ui-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #f9fbfd;
  box-shadow: var(--shadow);
}
.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: white;
}
.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral-500);
}
.panel-top span:nth-child(2) { background: var(--amber-500); }
.panel-top span:nth-child(3) { background: var(--green-700); }
.panel-top strong { margin-left: 8px; color: var(--muted); font-size: 13px; }
.mock-list { display: grid; gap: 12px; padding: 18px; }
.mock-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 14px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
}
.mock-list i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-style: normal;
  font-weight: 900;
}
.benefit-grid { grid-template-columns: repeat(4, 1fr); }
.benefit-grid article p { margin: 16px 0 0; font-weight: 650; color: var(--ink); }
.catalog-toolbar {
  width: min(920px, 100%);
  margin: 0 auto;
  padding-top: 42px !important;
  padding-bottom: 16px !important;
}
.catalog-toolbar label {
  display: block;
  margin-bottom: 10px;
  font-weight: 850;
}
.search-input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  font: inherit;
}
.catalog { padding-top: 24px !important; }
.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}
details p { padding: 0 20px 18px; margin: 0; }
.text-link {
  color: var(--green-700);
  font-weight: 850;
}
.final-cta {
  text-align: center;
  background: var(--green-900);
  color: white;
}
.final-cta h2 {
  width: min(860px, 100%);
  margin: 14px auto;
  color: white;
  font-size: 42px;
}
.final-cta p {
  width: min(700px, 100%);
  margin: 0 auto;
  color: rgba(255,255,255,.82);
}
.contact-layout {
  width: min(1060px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-layout article { padding: 30px; }
.contact-layout ul { color: var(--muted); line-height: 1.8; }
.office-contact {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
.office-contact p { margin: 0; }
.mail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--green-900);
  color: white;
  font-weight: 850;
  white-space: nowrap;
}
.company-page {
  width: min(960px, 100%);
  margin: 0 auto;
}
.company-page dl {
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}
.company-page dl div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
dt { font-weight: 850; color: var(--green-900); }
dd { margin: 0; color: var(--muted); }
.site-footer {
  padding: 56px 32px 24px;
  background: #f7f8fa;
  border-top: 1px solid var(--line);
}
.footer-top {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 46px;
}
.footer-brand p { font-size: 14px; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.company-strip {
  width: min(1180px, 100%);
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}
.company-strip div { display: flex; flex-wrap: wrap; gap: 10px; }
.company-strip strong { color: var(--ink); }
.company-strip a { color: var(--green-700); font-weight: 850; }

@media (max-width: 1080px) {
  .primary-nav,
  .header-cta { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-header.nav-open .primary-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: grid;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }
  .site-header.nav-open .header-cta {
    display: inline-flex;
    position: absolute;
    right: 32px;
    top: 86px;
  }
  .mega-menu { position: static; display: none !important; width: 100%; box-shadow: none; grid-template-columns: 1fr; }
  .home-hero h1 { font-size: 46px; }
  .ahead-box,
  .ahead-compare,
  .playbook-grid { grid-template-columns: 1fr; }
  .feature-grid,
  .process-grid,
  .benefit-grid,
  .pricing-grid,
  .solution-grid,
  .category-grid,
  .detail-card-grid,
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .feature-detail-layout,
  .story-grid,
  .facebook-reviews,
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .site-header { padding: 0 16px; }
  .home-hero,
  .page-hero { padding-left: 20px; padding-right: 20px; }
  .home-hero { min-height: auto; padding-top: 44px; padding-bottom: 44px; }
  .home-hero .hero-metrics { display: none; }
  .home-hero h1,
  .page-hero h1 { font-size: 34px; }
  .section-heading h2,
  .detail-main h2,
  .final-cta h2 { font-size: 30px; }
  section:not(.home-hero):not(.page-hero) { padding: 54px 20px; }
  .section-heading.split { display: block; }
  .feature-grid,
  .process-grid,
  .benefit-grid,
  .pricing-grid,
  .solution-grid,
  .category-grid,
  .article-grid,
  .contact-layout,
  .story-grid,
  .playbook-grid,
  .detail-card-grid,
  .ahead-box,
  .ahead-compare,
  .facebook-reviews,
  .footer-links { grid-template-columns: 1fr; }
  .ahead-box { padding: 24px; }
  .ahead-copy h2,
  .art-hero h3 { font-size: 28px; }
  .feature-art { min-height: auto; padding: 22px; }
  .art-bars { height: 96px; }
  .playbook-lead h2 { font-size: 27px; }
  .main-review { min-height: auto; }
  .main-review blockquote { font-size: 22px; }
  .facebook-profile-strip a { margin-left: 0; }
  .office-contact { grid-template-columns: 1fr; }
  .mail-link { width: 100%; white-space: normal; text-align: center; }
  .company-page dl div { grid-template-columns: 1fr; }
  .hero-metrics div { width: 100%; }
}
