
: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-shop {
  font-family: 'Maven Pro', Inter, Arial, sans-serif;
  color: var(--abp-ink);
  background: #ffffff;
  overflow: hidden;
}

.abp-shop * {
  box-sizing: border-box;
}

.abp-shop a {
  color: var(--abp-orange-dark);
  text-decoration: none;
}

.abp-shop 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-build-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.abp-build-map {
  position: relative;
  z-index: 3;
  width: min(540px, 100%);
  min-height: 470px;
  background: #ffffff;
  border: 1px solid var(--abp-line);
  border-radius: 30px;
  box-shadow: var(--abp-shadow);
  padding: 24px;
  overflow: hidden;
  animation: abpBlueprintFloat 6s ease-in-out infinite;
}

.abp-build-map::before {
  content: '';
  position: absolute;
  right: -76px;
  top: -76px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: #fff4df;
}

.abp-build-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.abp-build-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-build-top strong {
  display: block;
  font-size: 19px;
  line-height: 1.25;
}

.abp-build-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  background: #ecfdf3;
  border: 1px solid #abefc6;
  color: #087443;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.abp-build-screen {
  position: relative;
  z-index: 2;
  border: 1px solid #eef0f4;
  border-radius: 24px;
  background:
    linear-gradient(rgba(244, 154, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 154, 0, 0.05) 1px, transparent 1px),
    #fffaf2;
  background-size: 22px 22px;
  padding: 18px;
  min-height: 310px;
  overflow: hidden;
}

.abp-store-frame {
  position: relative;
  width: 78%;
  min-height: 210px;
  margin: 10px auto 0;
  border: 1px solid #e6e9ef;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(28, 35, 48, 0.07);
  overflow: hidden;
}

.abp-store-frame::before {
  content: '';
  display: block;
  height: 38px;
  background: #111827;
}

.abp-store-nav {
  position: absolute;
  top: 13px;
  left: 16px;
  right: 16px;
  display: grid;
  grid-template-columns: 80px 1fr 52px;
  gap: 10px;
  align-items: center;
}

.abp-store-nav span {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
}

.abp-store-nav span:first-child {
  background: var(--abp-orange);
}

.abp-store-body {
  padding: 18px;
}

.abp-store-hero-line {
  width: 64%;
  height: 13px;
  border-radius: 999px;
  background: #1f2630;
  margin-bottom: 10px;
}

.abp-store-text-line {
  height: 7px;
  border-radius: 999px;
  background: #e6e9ef;
  margin-bottom: 8px;
}

.abp-store-text-line:nth-child(2) {
  width: 92%;
}

.abp-store-text-line:nth-child(3) {
  width: 74%;
}

.abp-store-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 18px;
}

.abp-store-product {
  height: 78px;
  border-radius: 14px;
  background: #fff4df;
  border: 1px solid #fde5be;
  position: relative;
  overflow: hidden;
}

.abp-store-product::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 7px;
  border-radius: 999px;
  background: #f4d39d;
}

.abp-build-stage {
  position: absolute;
  z-index: 4;
  width: 132px;
  border-radius: 16px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--abp-line);
  box-shadow: 0 12px 32px rgba(28, 35, 48, 0.08);
}

.abp-build-stage b {
  display: block;
  color: var(--abp-orange-dark);
  font-size: 13px;
  margin-bottom: 4px;
}

.abp-build-stage span {
  display: block;
  color: var(--abp-muted);
  font-size: 11px;
  line-height: 1.4;
}

.abp-stage-1 {
  top: 102px;
  left: 0;
  animation: abpBuildNode1 5.8s ease-in-out infinite;
}

.abp-stage-2 {
  top: 178px;
  right: 0;
  animation: abpBuildNode2 6.2s ease-in-out infinite;
}

.abp-stage-3 {
  bottom: 70px;
  left: 16px;
  animation: abpBuildNode1 6.8s ease-in-out infinite reverse;
}

.abp-stage-4 {
  bottom: 8px;
  right: 36px;
  animation: abpBuildNode2 7s ease-in-out infinite reverse;
}

.abp-build-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244, 154, 0, 0.65), transparent);
  transform-origin: left;
  overflow: hidden;
}

.abp-build-line::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 40%;
  background: rgba(244, 154, 0, 0.28);
  animation: abpFlow 2.8s ease-in-out infinite;
}

.abp-build-line-1 {
  width: 170px;
  left: 92px;
  top: 132px;
  transform: rotate(14deg);
}

.abp-build-line-2 {
  width: 160px;
  right: 90px;
  top: 220px;
  transform: rotate(-12deg);
}

.abp-build-line-3 {
  width: 150px;
  left: 120px;
  bottom: 112px;
  transform: rotate(-10deg);
}

.abp-build-modules {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 16px;
}

.abp-build-module {
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #eef0f4;
  padding: 11px 8px;
  text-align: center;
}

.abp-build-module b {
  display: block;
  font-size: 12px;
  color: var(--abp-orange-dark);
  margin-bottom: 3px;
}

.abp-build-module small {
  color: var(--abp-muted);
  font-size: 10px;
}

.abp-build-feed {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  display: grid;
  gap: 9px;
}

.abp-build-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-build-feed-row i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--abp-orange);
}

.abp-build-feed-row strong {
  font-size: 12px;
}

.abp-build-feed-row small {
  color: var(--abp-muted);
  font-size: 11px;
}

.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-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.abp-card {
  background: #ffffff;
  border: 1px solid var(--abp-line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--abp-shadow);
}

.abp-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-card h3 {
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 10px;
}

.abp-card p {
  font-size: 14px;
  line-height: 1.72;
  color: var(--abp-muted);
  margin: 0;
}

.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-soft {
  background: #fffaf2;
}

.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-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-pricing {
  background: #fffaf2;
}

.abp-price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.abp-price-card {
  background: #ffffff;
  border: 1px solid var(--abp-line);
  border-radius: 22px;
  padding: 25px;
  box-shadow: var(--abp-shadow);
}

.abp-price-card.featured {
  border-color: #f7bd59;
  transform: translateY(-8px);
}

.abp-price-card.featured::before {
  content: 'Najczęściej wybierany';
  display: inline-flex;
  border-radius: 999px;
  background: #fff4df;
  color: var(--abp-orange-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 7px 10px;
  margin-bottom: 12px;
}

.abp-price-card h3 {
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 8px;
}

.abp-price-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--abp-muted);
  margin: 0 0 16px;
}

.abp-price {
  font-size: 18px;
  font-weight: 900;
  margin: 14px 0 4px;
}

.abp-price small {
  font-size: 12px;
  color: var(--abp-muted);
  font-weight: 700;
}

.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-table-wrap {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid var(--abp-line);
  border-radius: 22px;
  box-shadow: var(--abp-shadow);
}

.abp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.abp-table th,
.abp-table td {
  padding: 16px;
  border-bottom: 1px solid var(--abp-line);
  text-align: left;
  font-size: 14px;
  line-height: 1.55;
}

.abp-table th {
  background: #fffaf2;
  color: var(--abp-ink);
  font-weight: 900;
}

.abp-table tr:last-child td {
  border-bottom: 0;
}

.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 abpBlueprintFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(0.5deg);
  }
}

@keyframes abpBuildNode1 {
  0%, 100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

@keyframes abpBuildNode2 {
  0%, 100% {
    transform: translateY(0) rotate(4deg);
  }

  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes abpFlow {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(280%);
  }
}

@media (max-width: 1080px) {
  .abp-price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .abp-hero-grid,
  .abp-split,
  .abp-expert-grid {
    grid-template-columns: 1fr;
  }

  .abp-process,
  .abp-cards {
    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-cards,
  .abp-process,
  .abp-price-grid,
  .abp-cert-grid,
  .abp-proof,
  .abp-build-modules {
    grid-template-columns: 1fr;
  }

  .abp-price-card.featured {
    transform: none;
  }

  .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-build-visual {
    min-height: 620px;
	display: none;
  }

  .abp-build-map {
    padding: 18px;
  }

  .abp-build-stage,
  .abp-build-line {
    display: none;
  }

  .abp-store-frame {
    width: 100%;
  }

  .abp-build-feed-row {
    grid-template-columns: auto 1fr;
    text-align: left;
  }

  .abp-build-feed-row small {
    grid-column: 2;
  }
}

 #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;
}

.abp-cta-box h2 {
    color: #fff;
}