: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-help {
  font-family: 'Maven Pro', Inter, Arial, sans-serif;
  color: var(--abp-ink);
  background: #ffffff;
  overflow: hidden;
}

.abp-help * {
  box-sizing: border-box;
}

.abp-help a {
  color: var(--abp-orange-dark);
  text-decoration: none;
}

.abp-help 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: 850px;
  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-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.abp-dashboard {
  position: relative;
  z-index: 2;
  width: min(540px, 100%);
  min-height: 438px;
  background: #ffffff;
  border: 1px solid var(--abp-line);
  border-radius: 30px;
  box-shadow: var(--abp-shadow);
  padding: 24px;
  animation: abpFloat 6s ease-in-out infinite;
}

.abp-dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.abp-dots {
  display: flex;
  gap: 8px;
}

.abp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffd18a;
}

.abp-status-pill {
  background: #ecfdf3;
  color: #087443;
  border: 1px solid #abefc6;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
}

.abp-ticket-stage {
  position: relative;
  min-height: 275px;
  margin-bottom: 16px;
}

.abp-live-ticket {
  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(14px) scale(0.985);
  animation: abpTicketRotate 12s infinite;
}

.abp-live-ticket:nth-child(2) {
  animation-delay: 4s;
}

.abp-live-ticket:nth-child(3) {
  animation-delay: 8s;
}

.abp-ticket-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.abp-tag,
.abp-priority,
.abp-done {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.abp-tag {
  background: #fff4df;
  color: var(--abp-orange-dark);
}

.abp-priority {
  background: #fef3f2;
  color: #b42318;
}

.abp-priority-high {
  background: #fff7ed;
  color: #b54708;
}

.abp-done {
  background: #ecfdf3;
  color: #087443;
}

.abp-ticket-title {
  display: block;
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 13px;
}

.abp-ticket-desc {
  margin: 0 0 16px;
  color: var(--abp-muted);
  font-size: 13px;
  line-height: 1.55;
}

.abp-ticket-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.abp-ticket-meta span {
  border: 1px solid #eef0f4;
  border-radius: 15px;
  padding: 10px 11px;
  background: #fffaf2;
  font-size: 11px;
  color: var(--abp-muted);
}

.abp-ticket-meta b {
  display: block;
  color: var(--abp-text);
  font-size: 13px;
  margin-top: 3px;
}

.abp-ticket-flow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 7px;
  align-items: center;
}

.abp-ticket-flow span {
  height: 8px;
  border-radius: 999px;
  background: #ecfdf3;
  position: relative;
  overflow: hidden;
}

.abp-ticket-flow span::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 40%;
  background: rgba(8, 116, 67, 0.2);
  animation: abpProgress 2.6s ease-in-out infinite;
}

.abp-live-feed {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.abp-feed-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid #eef0f4;
  border-radius: 15px;
  padding: 10px 12px;
  background: #ffffff;
  font-size: 12px;
}

.abp-feed-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--abp-orange);
}

.abp-feed-row strong {
  font-size: 12px;
}

.abp-feed-row small {
  color: var(--abp-muted);
  font-size: 11px;
}

.abp-sidegrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.abp-mini {
  border-radius: 16px;
  background: #fffaf2;
  border: 1px solid #fde5be;
  padding: 14px;
  text-align: center;
}

.abp-mini b {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.abp-mini small {
  color: var(--abp-muted);
  font-size: 11px;
}

.abp-float {
  position: absolute;
  z-index: 4;
  background: #ffffff;
  border: 1px solid var(--abp-line);
  border-radius: 17px;
  box-shadow: 0 12px 32px rgba(28, 35, 48, 0.08);
  padding: 13px 16px;
  font-weight: 900;
  font-size: 13px;
}

.abp-f1 {
  left: -20px;
    bottom: 112px;
  animation: abpFloat2 6s ease-in-out infinite;
}

.abp-f2 {
  right: -96px;
  top: 70px;
  animation: abpFloat2 5.2s ease-in-out infinite reverse;
}

.abp-f3 {
     right: 122px;
    bottom: -32px;
  animation: abpFloat2 7s 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-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(4, 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 wybierane';
  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-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-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 abpFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes abpFloat2 {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-10px) translateX(5px);
  }
}

@keyframes abpTicketRotate {
  0%, 27% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  33%, 100% {
    opacity: 0;
    transform: translateY(-14px) scale(0.985);
  }
}

@keyframes abpProgress {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(260%);
  }
}

@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-visual {
    min-height: 520px;
  }

  .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-sidegrid,
  .abp-ticket-meta,
  .abp-proof,
  .abp-cert-grid,
  .abp-safety-grid {
    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-dashboard {
    padding: 18px;
  }

  .abp-ticket-stage {
    min-height: 390px;
  }

  .abp-feed-row {
    grid-template-columns: auto 1fr;
    text-align: left;
  }

  .abp-feed-row small {
    grid-column: 2;
  }

  .abp-float {
    display: none;
  }
}




 #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;
    }
}

.abp-head p {
    text-align: center;
}

.abp-cta-box h2 {
    color: #fff;
}


div.text h2 {
    padding-top: 0px!important;
    margin-bottom: 0px;
}









.ab-home-section {
  padding: 45px 0;
  position: relative;
}

.ab-home-wrap {
  max-width: var(--ab-wrap);
  margin: 0 auto;
  padding: 0 20px;
}

.ab-home-title {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--ab-text);
}

.ab-home-title.center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 14px;
}

.ab-home-lead {
  margin: 0;
  color: var(--ab-muted);
  font-size: 15px;
  line-height: 1.78;
}

.ab-home-lead.center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 42px;
}

.ab-home-card-grid {
  display: grid;
  gap: 18px;
}

.ab-home-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.ab-home-card {
  position: relative;
  background: #fff;
  border: 1px solid #edf0f4;
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 10px 26px rgba(28,35,48,.055);
  overflow: hidden;
  transition: .22s ease;
}

.ab-home-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ab-shadow);
}

.ab-home-card::before {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff3df;
}

.ab-home-card > * {
  position: relative;
}

.ab-home-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--ab-text);
}

.ab-home-card p {
  color: var(--ab-muted);
  font-size: 13px;
  line-height: 1.65;
  text-align: left;
  margin: 0;
}

.ab-home-card img.ab-card-img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin: 0 0 16px;
  filter: drop-shadow(0 8px 10px rgba(28,35,48,.08));
}
.ab-home-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (max-width: 980px) {
  .ab-home-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ab-home-section {
    padding: 54px 0;
  }

  .ab-home-title {
    font-size: 27px;
  }

  .ab-home-grid-4 {
    grid-template-columns: 1fr;
  }

  .ab-home-card {
    text-align: left;
  }
}