:root {
  --bg: #f3f7fa;
  --bg-soft: #eef4f7;
  --surface: rgba(255, 255, 255, 0.97);
  --surface-strong: #ffffff;
  --line: rgba(18, 49, 75, 0.10);
  --line-strong: rgba(18, 49, 75, 0.17);
  --text: #2a475d;
  --muted: #5d7589;
  --heading: #0e2639;
  --accent: #16808f;
  --accent-strong: #115766;
  --accent-soft: #e7f4f5;
  --accent-ink: #0c4651;
  --trust: #1f8a5b;
  --trust-soft: #e6f5ed;
  --focus: #1f9fb0;
  --shadow-soft: 0 12px 30px rgba(15, 48, 74, 0.06);
  --shadow-card: 0 22px 50px rgba(15, 48, 74, 0.09);
  --shadow-hover: 0 30px 64px rgba(13, 64, 86, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.cr-body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(47, 122, 134, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fbfd 0%, var(--bg) 100%);
  font: 16px/1.72 "Manrope", "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

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

.cr-wrap {
  width: min(calc(100% - 40px), var(--wrap));
  margin: 0 auto;
}

.cr-topbar {
  background: linear-gradient(90deg, #11354d, #1d6273);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.cr-topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.cr-topbar-tools {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.cr-language-picker {
  position: relative;
}

.cr-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.2em;
}

.cr-language-picker summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.cr-language-picker summary::-webkit-details-marker {
  display: none;
}

.cr-language-picker summary::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
}

.cr-language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  padding: 12px;
  border: 1px solid rgba(18, 49, 75, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-card);
}

.cr-language-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 12px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.cr-language-menu a:hover,
.cr-language-menu a.is-active {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.cr-topbar a {
  text-decoration: none;
  font-weight: 700;
}

.cr-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 251, 253, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18, 49, 75, 0.07);
}

.cr-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0;
}

.cr-brand img {
  width: auto;
  height: 56px;
}

.cr-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 22px;
}

.cr-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.cr-menu a:hover {
  color: var(--accent-strong);
}

.cr-menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--surface-strong);
  color: var(--heading);
  font: inherit;
  font-weight: 700;
}

.cr-hero {
  padding: 42px 0 30px;
}

.cr-hero-grid,
.cr-split,
.cr-contact-grid,
.cr-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: stretch;
}

.cr-eyebrow,
.cr-section-tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cr-hero-copy {
  align-self: center;
}

.cr-copy-block,
.cr-faq-intro {
  align-self: start;
}

.cr-faq-layout .cr-faq-intro,
.cr-contact-grid .cr-copy-block {
  align-self: center;
}

.cr-intro-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
  margin-top: 24px;
}

.cr-intro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
}

.cr-action-line {
  margin: 18px 0 0;
  text-align: center;
}

.cr-action-line .cr-btn {
  margin-top: 0;
}

.cr-prose .cr-btn-primary,
.cr-page-content .cr-btn-primary,
.cr-section-body .cr-btn-primary,
.cr-info-card .cr-btn-primary {
  margin-top: 4px;
}

.cr-product-card .cr-btn-primary {
  width: fit-content;
  margin-top: auto;
}

.cr-intro-meta {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.cr-hero h1,
.cr-section h2,
.cr-cta-band h2,
.cr-footer h3,
.cr-form-panel h3,
.cr-card h3,
.cr-product-card h3,
.cr-resource-card h3,
.cr-step-copy h3 {
  margin: 0 0 14px;
  color: var(--heading);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.cr-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.15rem, 3.3vw, 3.45rem);
}

.cr-section h2,
.cr-cta-band h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.55rem);
}

.cr-lead,
.cr-section-lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
}

.cr-hero-copy .cr-lead {
  max-width: 54ch;
}

.cr-badges,
.cr-checklist,
.cr-chip-list,
.cr-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cr-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cr-badges li,
.cr-chip-list li {
  padding: 10px 14px;
  border: 1px solid rgba(47, 122, 134, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--heading);
  font-weight: 700;
}

.cr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.cr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cr-btn:hover {
  transform: translateY(-1px);
}

.cr-btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 16px 34px rgba(31, 88, 101, 0.22);
}

.cr-btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--heading);
}

.cr-note,
.cr-price-note,
.cr-form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.cr-note {
  max-width: 60ch;
  margin-top: 16px;
}

.cr-hero-visual {
  align-self: stretch;
}

.cr-hero-stage {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 248, 0.96));
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.cr-hero-scene {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center center;
}

.cr-hero-stage-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0.14) 0%, rgba(247, 250, 252, 0.04) 42%, rgba(247, 250, 252, 0.12) 100%),
    linear-gradient(90deg, rgba(14, 40, 61, 0.03) 0%, rgba(14, 40, 61, 0) 45%);
}

.cr-hero-proof {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid rgba(18, 49, 75, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 36px rgba(15, 48, 74, 0.12);
}

.cr-hero-proof-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  opacity: 0.88;
}

.cr-hero-proof strong,
.cr-hero-proof-body {
  display: block;
}

.cr-hero-proof strong {
  color: var(--heading);
  font-size: 1rem;
  line-height: 1.42;
}

.cr-hero-proof-body {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.cr-hero-proof-body p,
.cr-lead p,
.cr-note p,
.cr-section-lead p {
  margin: 0;
}

.cr-metrics {
  padding: 0 0 18px;
}

.cr-metrics-grid,
.cr-card-grid,
.cr-product-grid,
.cr-steps-grid,
.cr-resource-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

.cr-metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cr-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.cr-steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cr-metric,
.cr-panel,
.cr-card,
.cr-product-card,
.cr-step-card,
.cr-resource-card,
.cr-form-panel,
.cr-faq-item {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.cr-metric {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 136px;
  padding: 24px;
}

.cr-metric strong {
  display: block;
  color: var(--heading);
  font-size: 2rem;
  line-height: 1;
}

.cr-metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.cr-section {
  padding: 68px 0;
}

.cr-section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(231, 239, 244, 0.5));
}

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

.cr-panel,
.cr-card,
.cr-product-card,
.cr-resource-card,
.cr-form-panel {
  display: flex;
  flex-direction: column;
}

.cr-panel {
  justify-content: center;
  padding: 30px;
}

.cr-inline-visual {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 22px;
}

.cr-checklist {
  display: grid;
  gap: 14px;
}

.cr-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cr-checklist i {
  margin-top: 4px;
  color: var(--accent);
}

.cr-card,
.cr-product-card,
.cr-resource-card {
  padding: 26px;
}

.cr-card p,
.cr-product-card p,
.cr-resource-card p {
  margin: 0;
  flex-grow: 1;
}

.cr-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0 auto 20px;
  color: var(--accent-strong);
  font-size: 2.75rem;
  line-height: 1;
}

.cr-product-card,
.cr-resource-card {
  gap: 14px;
}

.cr-product-image {
  aspect-ratio: 16 / 11;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(232, 244, 246, 0.78), rgba(236, 242, 247, 0.92));
  overflow: hidden;
}

.cr-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
}

.cr-pill,
.cr-resource-label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cr-pill {
  background: rgba(47, 122, 134, 0.1);
  color: var(--accent-strong);
}

.cr-resource-label {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.cr-price {
  color: var(--heading);
  font-size: 1.55rem;
  font-weight: 800;
}

.cr-text-link {
  margin-top: auto;
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: none;
}

.cr-step-card {
  overflow: hidden;
}

.cr-step-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.cr-step-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
}

.cr-step-copy span {
  display: inline-flex;
  width: fit-content;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cr-step-copy p {
  margin: 0;
}

.cr-faq-list {
  display: grid;
  gap: 14px;
}

.cr-faq-item {
  overflow: hidden;
}

.cr-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  color: var(--heading);
  font-weight: 800;
}

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

.cr-faq-item div {
  padding: 0 24px 22px;
  color: var(--muted);
}

.cr-cta-band {
  padding-top: 0;
}

.cr-cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(47, 122, 134, 0.14);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(232, 243, 245, 0.92));
  box-shadow: var(--shadow-card);
}

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

.cr-contact-list a,
.cr-contact-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--heading);
  font-weight: 700;
  text-decoration: none;
}

.cr-contact-list i {
  margin-top: 4px;
  color: var(--accent);
}

.cr-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cr-form-panel {
  padding: 30px;
}

.cr-form {
  display: grid;
  gap: 14px;
}

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

.cr-form input,
.cr-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  color: var(--heading);
  font: inherit;
}

.cr-form textarea {
  resize: vertical;
}

.cr-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.cr-consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.cr-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.cr-flash {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
}

.cr-flash-success {
  background: rgba(44, 122, 88, 0.1);
  color: #2c7a58;
}

.cr-flash-error {
  background: rgba(166, 60, 60, 0.1);
  color: #a63c3c;
}

.cr-footer {
  padding: 44px 0 26px;
  background: linear-gradient(180deg, #f5f9fb 0%, #e8f1f5 100%);
  color: var(--text);
  border-top: 1px solid rgba(18, 49, 75, 0.08);
}

.cr-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 24px;
}

.cr-footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
}

.cr-footer h3 {
  color: var(--heading);
  font-size: 1.08rem;
}

.cr-footer-links {
  display: grid;
  gap: 10px;
}

.cr-footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.cr-footer > .cr-wrap > .cr-footer-grid > div > p {
  color: var(--muted);
  max-width: 36ch;
}

.cr-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.cr-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 49, 75, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-strong);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.cr-footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 49, 75, 0.08);
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 1100px) {
  .cr-hero-grid,
  .cr-split,
  .cr-contact-grid,
  .cr-faq-layout,
  .cr-cta-band-inner,
  .cr-footer-grid {
    grid-template-columns: 1fr;
  }

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

  .cr-product-grid,
  .cr-resource-grid,
  .cr-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cr-hero-stage {
    min-height: 500px;
  }
}

@media (max-width: 860px) {
  .cr-topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cr-topbar-tools {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .cr-language-menu {
    right: auto;
    left: 0;
  }

  .cr-menu-toggle {
    display: inline-flex;
  }

  .cr-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-card);
  }

  .cr-menu.is-open {
    display: flex;
  }

  .cr-hero {
    padding-top: 38px;
  }

  .cr-hero-stage,
  .cr-hero-scene {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .cr-wrap {
    width: min(calc(100% - 24px), var(--wrap));
  }

  .cr-brand img {
    height: 50px;
  }

  .cr-nav {
    gap: 16px;
  }

  .cr-metrics-grid,
  .cr-card-grid,
  .cr-product-grid,
  .cr-resource-grid,
  .cr-steps-grid {
    grid-template-columns: 1fr;
  }

  .cr-hero h1 {
    max-width: none;
    font-size: 2.55rem;
  }

  .cr-section,
  .cr-cta-band {
    padding: 56px 0;
  }

  .cr-hero-stage,
  .cr-hero-scene {
    min-height: 340px;
  }

  .cr-hero-proof {
    position: static;
    margin: 18px;
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .cr-hero-proof-mark {
    width: 44px;
    height: 44px;
  }
}

/* ============================================================
   Modern enhancement layer — trustworthy pharmaceutical look
   ============================================================ */

/* Anchor offset so sticky header never hides section titles */
:where(#o-testu, #benefity, #jak-test-funguje, #produkt, #podklady, #faq, #kontakt) {
  scroll-margin-top: 120px;
}

/* Accessible focus rings */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
.cr-btn:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 60%, transparent);
  outline-offset: 2px;
  border-radius: 12px;
}

.cr-form input:focus,
.cr-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 16%, transparent);
}

/* Section heading rhythm */
.cr-section h2,
.cr-cta-band h2 {
  font-weight: 800;
}

.cr-section-lead {
  line-height: 1.7;
}

/* Section tag: add a small leading dot for a refined, clinical feel */
.cr-section-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.85;
}

/* Buttons — crisper, with motion and active feedback */
.cr-btn {
  position: relative;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.cr-btn-primary:hover {
  box-shadow: var(--shadow-hover);
}

.cr-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(31, 88, 101, 0.24);
}

.cr-btn-secondary:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  background: #fff;
  color: var(--accent-strong);
}

/* Cards — cohesive hover lift + accent edge */
.cr-card,
.cr-product-card,
.cr-resource-card,
.cr-step-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cr-card:hover,
.cr-product-card:hover,
.cr-resource-card:hover,
.cr-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: color-mix(in srgb, var(--accent) 28%, var(--line));
}

.cr-card-icon {
  background: none;
  border: none;
}

/* Metrics / trust figures */
.cr-metric {
  position: relative;
  overflow: hidden;
}

.cr-metric::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
}

.cr-metric strong {
  background: linear-gradient(120deg, var(--accent-strong), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

/* Hero — soft clinical backdrop and refined proof card */
.cr-hero {
  position: relative;
}

.cr-hero-stage {
  background:
    radial-gradient(120% 90% at 80% 0%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 60%),
    linear-gradient(180deg, #ffffff, #eef5f7);
}

.cr-hero-proof {
  border-color: color-mix(in srgb, var(--accent) 14%, transparent);
}

.cr-hero-proof strong {
  font-weight: 800;
}

/* Badges read as verified trust pills */
.cr-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-color: color-mix(in srgb, var(--accent) 22%, transparent);
  box-shadow: var(--shadow-soft);
}

.cr-badges li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.78em;
  color: var(--trust);
}

/* Checklist marks */
.cr-checklist i {
  color: var(--trust);
}

/* FAQ — smoother, clearer open state */
.cr-faq-item {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cr-faq-item[open] {
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  box-shadow: var(--shadow-card);
}

.cr-faq-item summary {
  position: relative;
  padding-right: 52px;
  transition: color 0.2s ease;
}

.cr-faq-item summary::after {
  content: "\f067";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.cr-faq-item[open] summary::after {
  content: "\f068";
}

.cr-faq-item summary:hover {
  color: var(--accent-strong);
}

/* Resource cards: arrow affordance on the text link */
.cr-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.cr-text-link::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.78em;
}

.cr-text-link:hover {
  gap: 12px;
  color: var(--accent);
}

/* CTA band — richer, more confident */
.cr-cta-band-inner {
  background: linear-gradient(135deg, #0f3048 0%, #155766 60%, #16808f 100%);
  border-color: transparent;
  color: #fff;
}

.cr-cta-band-inner h2 {
  color: #fff;
}

.cr-cta-band-inner .cr-section-tag {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.cr-cta-band-inner .cr-section-lead {
  color: rgba(255, 255, 255, 0.85);
}

.cr-cta-band-inner .cr-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.cr-cta-band-inner .cr-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.cr-cta-band-inner .cr-btn-primary {
  background: #fff;
  color: var(--accent-strong);
  box-shadow: 0 16px 34px rgba(8, 30, 44, 0.3);
}

/* Topbar / header polish */
.cr-topbar {
  background: linear-gradient(90deg, #1a4d62, #1f7282);
}

.cr-header {
  box-shadow: 0 1px 0 rgba(18, 49, 75, 0.06);
}

/* Footer links hover */
.cr-footer-links a {
  transition: color 0.18s ease, opacity 0.18s ease;
}

.cr-footer-links a:hover {
  color: var(--accent-strong);
  opacity: 1;
}

.cr-socials a:hover {
  background: #fff;
  border-color: rgba(22, 128, 143, 0.28);
  color: var(--accent-strong);
  transform: translateY(-2px);
}

.cr-section-body {
  margin-top: 14px;
  color: var(--muted);
}

.cr-section-body p {
  margin: 0 0 12px;
}

.cr-faq-intro .cr-checklist,
.cr-contact-grid .cr-checklist {
  margin-top: 22px;
}

.cr-faq-intro .cr-chip-list,
.cr-contact-grid .cr-chip-list {
  margin-top: 22px;
}

.cr-side-brand {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(47, 122, 134, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 243, 245, 0.72));
}

.cr-side-logo {
  display: block;
  width: min(190px, 72%);
  height: auto;
  margin-bottom: 10px;
}

.cr-side-manufacturer {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.cr-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.cr-trust-grid-compact {
  margin-top: 18px;
}

.cr-trust-card {
  padding: 16px 16px 14px;
  border: 1px solid rgba(47, 122, 134, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(15, 48, 74, 0.05);
}

.cr-trust-card h4 {
  margin: 10px 0 6px;
  color: var(--heading);
  font-size: 0.98rem;
  line-height: 1.25;
}

.cr-trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cr-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(47, 122, 134, 0.16), rgba(47, 122, 134, 0.06));
  color: var(--accent-strong);
  font-size: 1.05rem;
}

.cr-side-links {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.cr-side-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(47, 122, 134, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--heading);
  font-weight: 800;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cr-side-link:hover {
  border-color: rgba(47, 122, 134, 0.34);
  box-shadow: 0 10px 24px rgba(15, 48, 74, 0.08);
  transform: translateY(-1px);
}

.cr-side-link i {
  color: var(--accent);
}

.cr-side-visual {
  display: block;
  width: min(260px, 100%);
  margin-top: 22px;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}

.cr-page-hero-card {
  margin-bottom: 1.4rem;
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(47, 122, 134, 0.14);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 243, 245, 0.82));
}

.cr-page-hero-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  align-items: start;
}

.cr-page-logo {
  display: block;
  max-width: 180px;
  height: auto;
  margin-bottom: 12px;
}

.cr-info-card {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(47, 122, 134, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
}

.cr-info-card p {
  margin: 0 0 0.65rem;
}

.cr-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.cr-trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(47, 122, 134, 0.1);
  color: var(--heading);
  font-size: 0.92rem;
  font-weight: 700;
}

.cr-trust-pill i {
  color: var(--accent);
}

@media (max-width: 860px) {
  .cr-trust-grid,
  .cr-trust-strip,
  .cr-page-hero-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
