:root {
  --navy: #0F172A;
  --navy-2: #111E34;
  --azure: #2563EB;
  --cyan: #3B82F6;
  --emerald: #10B981;
  --amber: #F59E0B;
  --panel: #F1F5F9;
  --ink: #334155;
  --muted: #64748B;
  --line: #D8E0EA;
  --white: #FFFFFF;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

body.home { margin: 0; background: var(--navy); }
body .wp-site-blocks { padding: 0; margin: 0 !important; min-height: 0; }
body .wp-site-blocks > header,
body .wp-site-blocks > footer,
body .wp-block-post-title { display: none !important; }
body.home .wp-site-blocks > header.wp-block-template-part,
body.home .wp-site-blocks > footer.wp-block-template-part {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
body main.wp-block-group,
body .entry-content,
body .wp-block-post-content {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
body .entry-content > * { max-width: none !important; }
body .wp-site-blocks > *,
body .entry-content,
body .wp-block-post-content,
body .jml-page {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}
body .wp-site-blocks { padding-top: 0 !important; }
body.home main.wp-block-group,
body.home .wp-block-post-content,
body.home .entry-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--navy);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.jml-page a { text-decoration: none !important; }
.jml-page {
  min-height: 100vh;
  margin-top: -70px !important;
  overflow: hidden;
  background: var(--white);
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  min-height: 72px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-grid;
  gap: 0;
  line-height: 1.02;
}
.brand-main {
  color: var(--white);
  font-size: 1.42rem;
  font-weight: 850;
}
.brand-sub {
  color: rgba(203, 213, 225, 0.72);
  font-size: 0.68rem;
  font-weight: 760;
}
.nav {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  color: rgba(203, 213, 225, 0.72);
  font-size: 0.92rem;
}
.nav a:hover { color: var(--white); }
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.93rem;
}
.nav-cta {
  border: 1px solid rgba(203, 213, 225, 0.32);
  color: var(--white);
}
.nav-cta:hover { border-color: rgba(59, 130, 246, 0.8); background: rgba(37, 99, 235, 0.16); }
.button-primary {
  color: var(--white);
  background: var(--azure);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}
.button-primary:hover { background: #1D4ED8; }
.button-secondary {
  color: var(--white);
  border: 1px solid rgba(203, 213, 225, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 18%, rgba(59, 130, 246, 0.24), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(16, 185, 129, 0.12), transparent 20%),
    linear-gradient(180deg, #0A1324 0%, var(--navy) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(590px, 1.14fr);
  gap: clamp(42px, 6vw, 78px);
  align-items: center;
  padding: clamp(74px, 8vw, 104px) 0 clamp(82px, 9vw, 116px);
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(59, 130, 246, 0.5);
  border-radius: 8px;
  color: #DBEAFE;
  background: rgba(37, 99, 235, 0.16);
  font-size: 0.82rem;
  font-weight: 850;
}
.hero-pill span,
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--emerald);
}
h1,
h2,
h3,
p { overflow-wrap: anywhere; }
h1 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.25rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}
h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}
h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.25;
}
.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: #CBD5E1;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-proof {
  max-width: 620px;
  margin-top: 22px;
  padding-left: 16px;
  border-left: 3px solid var(--cyan);
  color: #CBD5E1;
  font-size: 0.94rem;
}

.product-screen {
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.36), rgba(16, 185, 129, 0.2)) top / 100% 4px no-repeat,
    #0C1528;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}
.screen-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}
.screen-top span,
.panel-head span,
.detail-grid dt {
  display: block;
  color: rgba(203, 213, 225, 0.62);
  font-size: 0.75rem;
  font-weight: 760;
}
.screen-top strong,
.panel-head strong,
.detail-grid dd {
  display: block;
  margin: 3px 0 0;
  color: var(--white);
  font-size: 0.94rem;
}
.status-pill {
  justify-self: end;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}
.status-pill.pending { color: #FFD894; background: rgba(245, 158, 11, 0.16); }
.screen-body {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) minmax(220px, 0.78fr);
  gap: 14px;
  padding: 16px;
}
.screen-nav,
.request-panel,
.evidence-panel {
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}
.screen-nav {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
  color: rgba(203, 213, 225, 0.68);
  font-size: 0.82rem;
}
.screen-nav strong {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 0.98rem;
}
.screen-nav span {
  padding: 8px 10px;
  border-radius: 8px;
}
.screen-nav .active {
  color: var(--white);
  background: rgba(37, 99, 235, 0.28);
}
.request-panel,
.evidence-panel { padding: 16px; }
.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0;
}
.detail-grid div {
  padding: 11px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.48);
}
.detail-grid dd { margin-left: 0; font-size: 0.88rem; }
.access-list {
  display: grid;
  gap: 8px;
}
.access-list p {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: var(--white);
  font-size: 0.9rem;
}
.access-list p:first-child { border-top: 0; }
.access-list em {
  color: rgba(203, 213, 225, 0.62);
  font-style: normal;
  font-size: 0.78rem;
}
.dot.blue { background: var(--azure); }
.dot.green { background: var(--emerald); }
.dot.amber { background: var(--amber); }
.approval-list {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}
.approval-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(203, 213, 225, 0.72);
  font-size: 0.86rem;
}
.approval-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.72);
}
.approval-list .done::before { background: var(--emerald); }
.approval-list .pending::before { background: var(--amber); }
.export-record {
  margin-top: 16px;
  padding: 12px;
  border: 1px solid rgba(59, 130, 246, 0.38);
  border-radius: 8px;
  color: #DBEAFE;
  background: rgba(37, 99, 235, 0.16);
  font-size: 0.84rem;
  font-weight: 850;
}
.screen-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(148, 163, 184, 0.14);
}
.screen-flow span {
  padding: 12px 10px;
  color: rgba(203, 213, 225, 0.78);
  background: #0C1528;
  font-size: 0.72rem;
  text-align: center;
}

.trust-strip {
  margin-top: -36px;
  position: relative;
  z-index: 2;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.strip-grid div {
  padding: 22px;
  border-left: 1px solid var(--line);
}
.strip-grid div:first-child { border-left: 0; }
.strip-grid strong,
.strip-grid span { display: block; }
.strip-grid strong { color: var(--navy); }
.strip-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section { padding: 92px 0; }
.section-header { max-width: 560px; }
.section-header.narrow { max-width: 760px; }
.section-header p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--azure);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.problem-section,
.workflow-section,
.maturity-section { background: var(--panel); }
.quote-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: 28px;
  margin-top: 34px;
  padding: 30px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.quote-card strong {
  color: var(--navy);
  font-size: clamp(1.5rem, 2.6vw, 2.28rem);
  line-height: 1.12;
}
.quote-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}
.three-grid,
.customer-grid,
.trust-grid,
.partner-cards {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.three-grid,
.customer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.three-grid article,
.customer-grid article,
.trust-grid article,
.partner-cards article,
.module-grid article {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  background: var(--white);
}
.three-grid p,
.customer-grid p,
.trust-grid p,
.partner-cards p,
.module-grid p {
  margin: 0;
  color: var(--muted);
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
  gap: clamp(40px, 6vw, 78px);
  align-items: start;
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.module-grid article {
  min-height: 205px;
}
.module-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  border-radius: 8px;
  color: var(--white);
  background: var(--azure);
  font-weight: 900;
}
.stack-section {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(59, 130, 246, 0.2), transparent 24%),
    var(--navy);
}
.stack-section h2,
.partner-section h2,
.final-cta h2 { color: var(--white); }
.stack-section .section-header p:not(.eyebrow),
.partner-section .section-header p:not(.eyebrow),
.final-cta p { color: #CBD5E1; }
.layer-table {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}
.table-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 16px;
  padding: 15px 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: rgba(203, 213, 225, 0.76);
  font-size: 0.92rem;
}
.table-row:first-child { border-top: 0; }
.table-row span:first-child {
  color: var(--white);
  font-weight: 850;
}
.table-head {
  background: rgba(37, 99, 235, 0.24);
}
.table-head span { color: var(--white) !important; }
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.timeline article {
  position: relative;
  min-height: 220px;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  background: var(--white);
}
.timeline article::before {
  content: "";
  position: absolute;
  top: 32px;
  left: -15px;
  width: 14px;
  height: 2px;
  background: var(--line);
}
.timeline article:first-child::before { display: none; }
.timeline span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--azure);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.timeline .highlight {
  border-color: rgba(37, 99, 235, 0.38);
  box-shadow: var(--shadow);
}
.timeline .highlight span { color: var(--emerald); }
.maturity-callout {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--azure);
  border-radius: 10px;
  color: var(--navy);
  background: var(--white);
  font-weight: 850;
}
.trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.partner-section {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.18), transparent 26%),
    linear-gradient(180deg, #0B1220, var(--navy));
}
.partner-section .button { margin-top: 24px; }
.partner-cards { margin-top: 0; }
.partner-cards article {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(148, 163, 184, 0.24);
}
.partner-cards h3 { color: var(--white); }
.partner-cards p { color: #CBD5E1; }
.faq-section {
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
}
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.faq-list article {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}
.faq-list h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}
.faq-list p {
  margin: 0;
  color: var(--muted);
}
.final-cta {
  padding: 90px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.18), rgba(16, 185, 129, 0.12)),
    #0B1220;
}
.final-cta .container { max-width: 900px; }
.final-cta p:not(.eyebrow) {
  max-width: 720px;
  font-size: 1.1rem;
}
.final-cta .button { margin-top: 24px; }
.contact-page {
  background: var(--white);
}
.contact-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(59, 130, 246, 0.24), transparent 28%),
    linear-gradient(180deg, #0A1324 0%, var(--navy) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.62fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
  padding: clamp(78px, 9vw, 120px) 0;
}
.contact-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.34), rgba(16, 185, 129, 0.18)) top / 100% 4px no-repeat,
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
}
.contact-card > span,
.contact-meta span {
  display: block;
  color: rgba(203, 213, 225, 0.64);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}
.contact-card > strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  line-height: 1.1;
}
.contact-card p {
  margin: 16px 0 0;
  color: #CBD5E1;
}
.contact-meta {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.contact-meta div {
  padding: 13px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.42);
}
.contact-meta strong {
  display: block;
  margin-top: 3px;
  color: var(--white);
  font-size: 0.94rem;
}
.contact-section {
  background: var(--white);
}
.contact-band {
  background: var(--panel);
}
.site-footer {
  padding: 42px 0 26px;
  color: rgba(203, 213, 225, 0.76);
  background: #08111F;
}
.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.7fr 1fr 1.2fr;
  gap: 32px;
}
.footer-logo {
  display: block;
  color: var(--white);
  font-size: 1.25rem;
}
.site-footer h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 0.9rem;
}
.site-footer p {
  margin: 0 0 8px;
  font-size: 0.86rem;
}
.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 7px;
  color: rgba(203, 213, 225, 0.86);
  font-size: 0.9rem;
}
.footer-small {
  margin-top: 12px !important;
  color: rgba(203, 213, 225, 0.62);
}
.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: rgba(203, 213, 225, 0.56);
  font-size: 0.84rem;
}

.cookie-notice {
  position: fixed;
  left: auto;
  right: 18px;
  bottom: 16px;
  transform: none;
  z-index: 80;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: min(560px, calc(100vw - 36px));
  padding: 11px 12px;
  border: 1px solid rgba(216, 224, 234, 0.22);
  border-radius: 8px;
  background: rgba(8, 17, 31, 0.96);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}
.cookie-notice p {
  margin: 0;
  color: rgba(241, 245, 249, 0.72);
  font-size: 0.72rem;
  line-height: 1.25;
}
.cookie-notice a { color: #BBD6FF; }
.cookie-notice button {
  min-height: 30px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--azure);
  font-weight: 850;
  cursor: pointer;
}

.legal-page { background: var(--white); }
.legal-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(62px, 8vw, 92px) clamp(22px, 5vw, 72px) 30px;
}
.legal-hero h1 { color: var(--navy); }
.legal-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
}
.legal-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 20px clamp(22px, 5vw, 72px) 90px;
}
.legal-content h2 {
  margin-top: 34px;
  font-size: 1.38rem;
}
.legal-content p { color: var(--muted); }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: auto auto; gap: 18px; }
  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 18px;
    padding-bottom: 14px;
    overflow-x: auto;
  }
  .hero-grid,
  .contact-grid,
  .split,
  .stack-split { grid-template-columns: 1fr; }
  .product-screen { max-width: 900px; }
  .strip-grid,
  .trust-grid,
  .faq-list,
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: 1fr; }
  .timeline article { min-height: 0; }
  .timeline article::before { display: none; }
  .timeline span { margin-bottom: 18px; }
}

@media (max-width: 760px) {
  .jml-page { margin-top: -37px !important; }
  .container { width: min(100% - 40px, 1180px); }
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 16px 20px;
  }
  .nav-cta { width: fit-content; }
  .nav {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    padding-bottom: 0;
    justify-content: space-between;
    font-size: 0.86rem;
  }
  .nav a:nth-child(4),
  .nav a:nth-child(5) { display: none; }
  .hero-grid { padding: 52px 0 74px; }
  .contact-grid { padding: 58px 0 68px; }
  h1 {
    max-width: 350px;
    font-size: clamp(2.35rem, 10vw, 3rem);
    line-height: 1.07;
  }
  h2 { font-size: clamp(1.9rem, 8vw, 2.45rem); }
  .hero-copy,
  .hero-proof { max-width: 350px; }
  .hero-actions .button { width: 100%; }
  .product-screen {
    margin-top: 4px;
    border-radius: 14px;
  }
  .screen-top,
  .screen-body,
  .screen-flow {
    grid-template-columns: 1fr;
  }
  .screen-nav { display: none; }
  .screen-flow span { text-align: left; }
  .trust-strip { margin-top: 0; }
  .strip-grid,
  .three-grid,
  .customer-grid,
  .module-grid,
  .trust-grid,
  .faq-list,
  .footer-grid { grid-template-columns: 1fr; }
  .strip-grid { border-radius: 0; border-left: 0; border-right: 0; }
  .strip-grid div { border-left: 0; border-top: 1px solid var(--line); }
  .strip-grid div:first-child { border-top: 0; }
  .section { padding: 66px 0; }
  .quote-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .table-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .timeline article { min-height: 0; }
  .partner-cards { margin-top: 22px; }
  .cookie-notice {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    padding: 9px 10px;
    gap: 8px;
  }
  .cookie-notice p { font-size: 0.68rem; }
  .cookie-notice button {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.75rem;
  }
}
