
:root {
  --abp-orange: #f49a00;
  --abp-orange-dark: #d88600;
  --abp-ink: #1f2630;
  --abp-muted: #667085;
  --abp-soft: #fff4df;
  --abp-soft-2: #fffaf2;
  --abp-line: #edf0f4;
  --abp-green: #12b76a;
  --abp-red: #ef4444;
  --abp-blue: #175cd3;
  --abp-shadow: 0 18px 45px rgba(28, 35, 48, 0.08);
  --abp-radius: 22px;
  --abp-wrap: 1280px;
}

.abp-audit {
  font-family: 'Maven Pro', Inter, Arial, sans-serif;
  color: var(--abp-ink);
  background: #ffffff;
  overflow: hidden;
}

.abp-audit * {
  box-sizing: border-box;
}

.abp-audit a {
  color: var(--abp-orange-dark);
  text-decoration: none;
}

.abp-audit a:hover {
  color: var(--abp-orange);
}

.abp-wrap {
  max-width: var(--abp-wrap);
  margin: 0 auto;
  padding: 0 22px;
}

.abp-section {
  padding: 74px 0;
}

.abp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--abp-orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.abp-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--abp-orange);
}

.abp-line {
  width: 76px;
  height: 5px;
  border-radius: 999px;
  background: var(--abp-orange);
  margin: 16px 0 24px;
}

.abp-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 38px;
}

.abp-head .abp-line {
  margin-left: auto;
  margin-right: auto;
}

.abp-head h2 {
  font-size: 32px;
  line-height: 1.22;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.abp-head p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--abp-muted);
  margin: 0;
}

.abp-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.abp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.abp-btn-primary {
  background: var(--abp-orange);
  color: #ffffff !important;
  box-shadow: 0 12px 26px rgba(244, 154, 0, 0.24);
}

.abp-btn-primary:hover {
  background: var(--abp-orange-dark);
  color: #ffffff !important;
}

.abp-btn-secondary {
  background: #ffffff;
  border: 1px solid #f4d39d;
  color: var(--abp-orange-dark) !important;
}

.abp-hero {
  position: relative;
  padding: 60px 0 44px;
  background:
    radial-gradient(circle at 83% 12%, #fff0d6 0, rgba(255, 240, 214, 0.55) 27%, rgba(255, 250, 242, 0) 45%),
    linear-gradient(180deg, #fffaf2 0%, #ffffff 76%);
}

.abp-hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 54px;
  align-items: center;
}

.abp-hero h1 {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}

.abp-hero-lead {
  font-size: 16px;
  line-height: 1.85;
  color: #4f5968;
  margin: 0 0 18px;
}

.abp-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
}

.abp-trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ffffff;
  border: 1px solid var(--abp-line);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(28, 35, 48, 0.045);
}

.abp-trust-strip span::before {
  content: '✓';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ecfdf3;
  color: #087443;
  font-size: 11px;
}

.abp-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.abp-quick-card {
  background: #ffffff;
  border: 1px solid var(--abp-line);
  border-radius: 16px;
  padding: 16px 15px;
  box-shadow: 0 10px 28px rgba(28, 35, 48, 0.055);
}

.abp-quick-card strong {
  display: block;
  font-size: 18px;
  color: var(--abp-orange-dark);
  margin-bottom: 4px;
}

.abp-quick-card span {
  font-size: 12px;
  color: var(--abp-muted);
  line-height: 1.45;
}

.abp-report-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.abp-report-bg-card {
  position: absolute;
  width: min(500px, 90%);
  height: 430px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--abp-line);
  box-shadow: 0 18px 45px rgba(28, 35, 48, 0.055);
}

.abp-report-bg-1 {
  transform: rotate(-7deg) translate(-18px, 18px);
  background: #fffaf2;
}

.abp-report-bg-2 {
  transform: rotate(5deg) translate(22px, 8px);
  background: #ffffff;
}

.abp-report-doc {
  position: relative;
  z-index: 3;
  width: min(520px, 100%);
  min-height: 455px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 72%, #fffaf2 100%);
  border: 1px solid var(--abp-line);
  border-radius: 30px;
  box-shadow: var(--abp-shadow);
  padding: 24px;
  overflow: hidden;
  animation: abpReportFloat 6s ease-in-out infinite;
}

.abp-report-doc::before {
  content: '';
  position: absolute;
  right: -70px;
  top: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: #fff4df;
}

.abp-report-doc::after {
  content: '';
  position: absolute;
  inset: 78px 24px auto 24px;
  height: 1px;
  background: var(--abp-line);
}

.abp-report-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.abp-report-top span {
  display: block;
  color: var(--abp-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.abp-report-top strong {
  display: block;
  font-size: 19px;
  line-height: 1.25;
}

.abp-report-top em {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #111827;
  color: #ffffff;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.abp-report-summary {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-bottom: 16px;
}

.abp-report-summary div {
  border: 1px solid #eef0f4;
  border-radius: 16px;
  padding: 13px 12px;
  background: #ffffff;
}

.abp-report-summary small {
  display: block;
  color: var(--abp-muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.abp-report-summary b {
  display: block;
  color: var(--abp-orange-dark);
  font-size: 20px;
  line-height: 1;
}

.abp-report-pages {
  position: relative;
  z-index: 2;
  min-height: 238px;
}

.abp-report-page {
  position: absolute;
  inset: 0;
  border: 1px solid var(--abp-line);
  border-radius: 22px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(28, 35, 48, 0.055);
  opacity: 0;
  transform: translateY(16px) rotate(1deg);
  animation: abpReportPage 16s infinite;
}

.abp-report-page:nth-child(2) {
  animation-delay: 4s;
}

.abp-report-page:nth-child(3) {
  animation-delay: 8s;
}

.abp-report-page:nth-child(4) {
  animation-delay: 12s;
}

.abp-report-page-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.abp-report-page-head small {
  color: var(--abp-muted);
  font-size: 11px;
  font-weight: 800;
}

.abp-report-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.abp-report-critical {
  background: #fef3f2;
  color: #b42318;
}

.abp-report-high {
  background: #fff4df;
  color: var(--abp-orange-dark);
}

.abp-report-medium {
  background: #eff8ff;
  color: #175cd3;
}

.abp-report-page h3 {
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 10px;
}

.abp-report-page p {
  margin: 0 0 14px;
  color: var(--abp-muted);
  font-size: 13px;
  line-height: 1.55;
}

.abp-report-bars {
  display: grid;
  gap: 7px;
  margin: 0 0 14px;
}

.abp-report-bars span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #fff4df;
  position: relative;
  overflow: hidden;
}

.abp-report-bars span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--abp-orange), #ffd18a);
  border-radius: 999px;
  transform-origin: left;
  animation: abpReportBar 2.6s ease-in-out infinite;
}

.abp-report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.abp-report-grid span {
  border: 1px solid #eef0f4;
  border-radius: 14px;
  padding: 10px;
  background: #fffaf2;
  color: var(--abp-muted);
  font-size: 11px;
  line-height: 1.35;
}

.abp-report-grid b {
  display: block;
  color: var(--abp-ink);
  font-size: 12px;
  margin-bottom: 3px;
}

.abp-report-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 17px;
  border: 1px solid #eef0f4;
  border-radius: 17px;
  padding: 13px 14px;
  background: #ffffff;
}

.abp-report-footer b {
  display: block;
  font-size: 13px;
  margin-bottom: 3px;
}

.abp-report-footer span {
  display: block;
  color: var(--abp-muted);
  font-size: 11px;
}

.abp-report-footer strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #087443;
  font-size: 12px;
  white-space: nowrap;
}

.abp-report-note {
  position: absolute;
  z-index: 5;
  width: 150px;
  border: 1px solid #fde5be;
  border-radius: 17px;
  background: #fff4df;
  box-shadow: 0 12px 32px rgba(28, 35, 48, 0.08);
  padding: 13px 15px;
}

.abp-report-note b {
  display: block;
  color: var(--abp-orange-dark);
  font-size: 14px;
  margin-bottom: 4px;
}

.abp-report-note span {
  display: block;
  color: var(--abp-muted);
  font-size: 11px;
  line-height: 1.45;
}

.abp-report-note-1 {
  left: 0;
  bottom: 92px;
  transform: rotate(-4deg);
  animation: abpReportNote1 6s ease-in-out infinite;
}

.abp-report-note-2 {
  right: 0;
  top: 86px;
  transform: rotate(5deg);
  animation: abpReportNote2 5.4s ease-in-out infinite;
}

.abp-report-note-3 {
  right: 46px;
  bottom: 10px;
  transform: rotate(-2deg);
  animation: abpReportNote1 7s ease-in-out infinite reverse;
}

.abp-report-stamp {
  position: absolute;
  z-index: 6;
  left: 36px;
  top: 82px;
  border: 3px solid rgba(180, 35, 24, 0.22);
  color: rgba(180, 35, 24, 0.42);
  border-radius: 12px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  transform: rotate(-12deg);
  animation: abpReportStamp 16s ease-in-out infinite;
}

.abp-alert {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  background: #111827;
  color: #ffffff;
  border-radius: 18px;
  padding: 16px 18px;
  margin-top: 24px;
}

.abp-alert i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(244, 154, 0, 0.18);
  font-style: normal;
  color: var(--abp-orange);
}

.abp-alert strong {
  display: block;
  margin-bottom: 2px;
}

.abp-alert span {
  display: block;
  color: #d0d5dd;
  font-size: 13px;
  line-height: 1.55;
}

.abp-alert a {
  color: #ffffff !important;
  background: var(--abp-orange);
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.abp-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.abp-text h2 {
  font-size: 32px;
  line-height: 1.24;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.abp-text h3 {
  font-size: 22px;
  margin: 24px 0 12px;
}

.abp-text p {
  font-size: 15px;
  line-height: 1.82;
  color: var(--abp-muted);
  margin: 0 0 18px;
}

.abp-problems {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.abp-problem {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 13px;
  align-items: start;
  background: #ffffff;
  border: 1px solid var(--abp-line);
  border-radius: 16px;
  padding: 17px;
  box-shadow: 0 8px 24px rgba(28, 35, 48, 0.05);
}

.abp-problem i {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff4df;
  color: var(--abp-orange-dark);
  font-style: normal;
  font-weight: 900;
}

.abp-problem strong {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.abp-problem span {
  font-size: 13px;
  line-height: 1.58;
  color: var(--abp-muted);
}

.abp-safety {
  background: #ffffff;
}

.abp-safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.abp-safety-card {
  background: #ffffff;
  border: 1px solid var(--abp-line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--abp-shadow);
}

.abp-safety-card i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff4df;
  color: var(--abp-orange-dark);
  font-style: normal;
  font-weight: 900;
  margin-bottom: 15px;
}

.abp-safety-card h3 {
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 10px;
}

.abp-safety-card p {
  font-size: 14px;
  line-height: 1.72;
  color: var(--abp-muted);
  margin: 0;
}

.abp-expert {
  background: linear-gradient(135deg, #fffaf2 0%, #ffffff 72%);
}

.abp-expert-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
}

.abp-cert-panel {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--abp-line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--abp-shadow);
}

.abp-cert-panel::before {
  content: '';
  position: absolute;
  right: -70px;
  top: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: #fff4df;
}

.abp-stars {
  position: relative;
  z-index: 1;
  font-size: 42px;
  line-height: 1;
  color: var(--abp-orange);
  margin-bottom: 16px;
}

.abp-cert-panel h3 {
  position: relative;
  z-index: 1;
  font-size: 25px;
  line-height: 1.25;
  margin: 0 0 12px;
}

.abp-cert-panel p {
  position: relative;
  z-index: 1;
  color: var(--abp-muted);
  line-height: 1.75;
  margin: 0 0 20px;
}

.abp-cert-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.abp-cert {
  background: #fffaf2;
  border: 1px solid #fde5be;
  border-radius: 16px;
  padding: 16px;
}

.abp-cert strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.abp-cert span {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: var(--abp-muted);
}

.abp-models {
  background: #fffaf2;
}

.abp-model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.abp-model {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--abp-line);
  border-radius: 22px;
  padding: 25px;
  box-shadow: var(--abp-shadow);
  overflow: hidden;
}

.abp-model.featured {
  border-color: #f7bd59;
  transform: translateY(-8px);
}

.abp-model.featured::before {
  content: 'Najczęściej wybierany';
  position: absolute;
  right: 18px;
  top: 18px;
  border-radius: 999px;
  background: #fff4df;
  color: var(--abp-orange-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 7px 10px;
}

.abp-model h3 {
  font-size: 21px;
  line-height: 1.25;
  margin: 0 0 8px;
  padding-right: 18px;
}

.abp-model .abp-for {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: #f2f4f7;
  color: #344054;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 14px;
}

.abp-model .abp-price {
  font-size: 29px;
  font-weight: 900;
  margin: 16px 0 4px;
}

.abp-model .abp-price small {
  font-size: 13px;
  color: var(--abp-muted);
  font-weight: 700;
}

.abp-model p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--abp-muted);
  margin: 0 0 18px;
}

.abp-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.abp-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  line-height: 1.55;
  color: #4f5968;
}

.abp-check::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ecfdf3;
  color: #087443;
  font-weight: 900;
  font-size: 12px;
}

.abp-note {
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid var(--abp-line);
  border-radius: 18px;
  padding: 20px;
  color: var(--abp-muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.abp-clarity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.abp-box {
  background: #ffffff;
  border: 1px solid var(--abp-line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(28, 35, 48, 0.055);
}

.abp-box h3 {
  font-size: 20px;
  margin: 0 0 12px;
}

.abp-box p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--abp-muted);
  margin: 0 0 14px;
}

.abp-severity {
  display: grid;
  gap: 12px;
}

.abp-sev {
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--abp-line);
  border-radius: 16px;
  padding: 16px;
  background: #ffffff;
}

.abp-sev b {
  display: inline-flex;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
}

.abp-sev:nth-child(1) b {
  background: #fef3f2;
  color: #b42318;
}

.abp-sev:nth-child(2) b {
  background: #fff4df;
  color: var(--abp-orange-dark);
}

.abp-sev:nth-child(3) b {
  background: #eff8ff;
  color: #175cd3;
}

.abp-sev:nth-child(4) b {
  background: #f2f4f7;
  color: #344054;
}

.abp-sev strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.abp-sev span {
  font-size: 13px;
  line-height: 1.58;
  color: var(--abp-muted);
}

.abp-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}

.abp-step {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--abp-line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(28, 35, 48, 0.055);
}

.abp-step::before {
  counter-increment: step;
  content: counter(step);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff4df;
  color: var(--abp-orange-dark);
  font-weight: 900;
  margin-bottom: 16px;
}

.abp-step h3 {
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 8px;
}

.abp-step p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--abp-muted);
  margin: 0;
}

.abp-care {
  background: linear-gradient(135deg, #fffaf2 0%, #ffffff 72%);
}

.abp-care-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: start;
}

.abp-panel {
  background: #ffffff;
  border: 1px solid var(--abp-line);
  border-radius: 26px;
  box-shadow: var(--abp-shadow);
  padding: 30px;
}

.abp-panel h3 {
  font-size: 22px;
  margin: 0 0 16px;
}

.abp-panel-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--abp-line);
  padding: 14px 0;
}

.abp-panel-row:last-child {
  border-bottom: 0;
}

.abp-panel-row i {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #fff4df;
  color: var(--abp-orange-dark);
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 900;
}

.abp-panel-row strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.abp-panel-row span {
  font-size: 13px;
  line-height: 1.55;
  color: var(--abp-muted);
}

.abp-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.abp-proof-card {
  background: #ffffff;
  border: 1px solid var(--abp-line);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(28, 35, 48, 0.045);
}

.abp-proof-card strong {
  display: block;
  color: var(--abp-orange-dark);
  font-size: 18px;
  margin-bottom: 4px;
}

.abp-proof-card span {
  font-size: 12px;
  color: var(--abp-muted);
}

.abp-cta {
  padding: 52px 0;
  background: #111827;
  color: #ffffff;
}

.abp-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.abp-cta h2 {
  font-size: 30px;
  line-height: 1.25;
  margin: 0 0 10px;
}

.abp-cta p {
  color: #d0d5dd;
  line-height: 1.7;
  margin: 0;
}

.abp-faq {
  background: #f8fafc;
}

.abp-faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.abp-faq details {
  background: #ffffff;
  border: 1px solid var(--abp-line);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 6px 20px rgba(28, 35, 48, 0.035);
}

.abp-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 22px;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.abp-faq summary::-webkit-details-marker {
  display: none;
}

.abp-faq summary::after {
  content: '+';
  color: var(--abp-orange);
  font-size: 20px;
  line-height: 1;
}

.abp-faq details[open] summary::after {
  content: '–';
}

.abp-faq details p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--abp-muted);
  font-size: 14px;
  line-height: 1.75;
}

.abp-contact {
  padding: 70px 0 40px;
}

.abp-contact-box {
  background: #ffffff;
  border: 1px dashed #f1c980;
  border-radius: 22px;
  padding: 34px;
  text-align: center;
  color: var(--abp-muted);
  box-shadow: 0 10px 28px rgba(28, 35, 48, 0.04);
}

@keyframes abpReportFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(0.7deg);
  }
}

@keyframes abpReportPage {
  0% {
    opacity: 0;
    transform: translateY(16px) rotate(1deg);
  }

  6% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }

  22% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }

  28% {
    opacity: 0;
    transform: translateY(-16px) rotate(-1deg);
  }

  100% {
    opacity: 0;
    transform: translateY(-16px) rotate(-1deg);
  }
}

@keyframes abpReportBar {
  0% {
    transform: scaleX(0.35);
  }

  50% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0.72);
  }
}

@keyframes abpReportNote1 {
  0%, 100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

@keyframes abpReportNote2 {
  0%, 100% {
    transform: translateY(0) rotate(5deg);
  }

  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}

@keyframes abpReportStamp {
  0%, 12% {
    opacity: 0;
    transform: scale(1.25) rotate(-12deg);
  }

  18%, 72% {
    opacity: 1;
    transform: scale(1) rotate(-12deg);
  }

  82%, 100% {
    opacity: 0;
    transform: scale(1.08) rotate(-12deg);
  }
}

@media (max-width: 1080px) {
  .abp-model-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .abp-hero-grid,
  .abp-split,
  .abp-expert-grid,
  .abp-care-grid {
    grid-template-columns: 1fr;
  }

  .abp-process,
  .abp-safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .abp-hero h1 {
    font-size: 39px;
  }

  .abp-cta-box {
    grid-template-columns: 1fr;
  }

  .abp-proof {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .abp-section {
    padding: 52px 0;
  }

  .abp-hero h1 {
    font-size: 32px;
  }

  .abp-head h2,
  .abp-text h2 {
    font-size: 26px;
  }

  .abp-quick,
  .abp-problems,
  .abp-model-grid,
  .abp-clarity,
  .abp-process,
  .abp-safety-grid,
  .abp-cert-grid,
  .abp-proof {
    grid-template-columns: 1fr;
  }

  .abp-model.featured {
    transform: none;
  }

  .abp-sev {
    grid-template-columns: 1fr;
  }

  .abp-alert {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .abp-alert i {
    margin: auto;
  }

  .abp-btns {
    justify-content: center;
  }

  .abp-hero-grid {
    text-align: center;
  }

  .abp-hero .abp-line {
    margin-left: auto;
    margin-right: auto;
  }

  .abp-report-visual {
    min-height: 570px;
  }

  .abp-report-doc {
    padding: 18px;
  }

  .abp-report-summary,
  .abp-report-grid {
    grid-template-columns: 1fr;
  }

  .abp-report-pages {
    min-height: 385px;
  }

  .abp-report-note,
  .abp-report-stamp,
  .abp-report-bg-card {
    display: none;
  }

  .abp-report-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
}




 #page .post-content, #page .grid-container {
        max-width: 100%!important;
    }
	
	#page .grid-container {
    padding-left: 0px;
     padding-right: 0px;
}

.epcl-breadcrumbs  {
    display: none;
}




@media screen and (min-width: 767px) {
.content {
    margin-top: 25px!important;
}
.abp-wrap {
    padding: 0px!important;
}
}

@media screen and (max-width: 767px) {
    #page #single .post-content {
        padding-top: 0px!important;
    }
	.content {
    margin-top: 0px!important;
}
    #single.fullcover div.left-content {
        padding-top: 0px!important;
    }
}


div.text h2 {
    padding-top: 0px!important;
    margin-bottom: 0px;
}