:root {
  --as-orange: #f49a00;
  --as-orange-dark: #d88600;
  --as-ink: #1f2630;
  --as-muted: #667085;
  --as-soft: #fff4df;
  --as-soft-2: #fffaf2;
  --as-line: #edf0f4;
  --as-dark: #111827;
  --as-dark-2: #1f2937;
  --as-green: #12b76a;
  --as-blue: #175cd3;
  --as-shadow: 0 18px 45px rgba(28, 35, 48, 0.08);
  --as-shadow-strong: 0 24px 70px rgba(28, 35, 48, 0.12);
  --as-radius: 22px;
  --as-wrap: 1350px;
}

.as-page {
  font-family: 'Maven Pro', Inter, Arial, sans-serif;
  color: var(--as-ink);
  background: #ffffff;
  overflow: hidden;
}

.as-page * {
  box-sizing: border-box;
}

.as-page a {
  color: var(--as-orange-dark);
  text-decoration: none;
}

.as-page a:hover {
  color: var(--as-orange);
}

.as-wrap {
  max-width: var(--as-wrap);
  margin: 0 auto;
  padding: 0 22px;
}

.as-section {
  padding: 45px 0;
}

.as-section-soft {
  background: #fffaf2;
}

.as-section-light {
  background: #f8fafc;
}

.as-section-dark {
  background: #111827;
  color: #ffffff;
}

.as-section-dark h2 {
    color: #ffffff;
}

.as-architecture-card strong {
    color: #000;
}

.as-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--as-orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.as-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--as-orange);
}

.as-section-dark .as-kicker {
  color: #ffd08a;
}

.as-line {
  width: 76px;
  height: 5px;
  border-radius: 999px;
  background: var(--as-orange);
  margin: 16px 0 24px;
}

.as-head {
  text-align: center;
  max-width: 930px;
  margin: 0 auto 40px;
}

.as-head .as-line {
  margin-left: auto;
  margin-right: auto;
}

.as-head h2 {
  font-size: 34px;
  line-height: 1.22;
  margin: 0 0 14px;
  letter-spacing: -0.025em;
}

.as-head p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--as-muted);
  margin: 0;
}

.as-section-dark .as-head p {
  color: #d0d5dd;
}

.as-text h2 {
  font-size: 34px;
  line-height: 1.24;
  margin: 0 0 12px;
  letter-spacing: -0.025em;
}

.as-text h3 {
  font-size: 22px;
  margin: 24px 0 12px;
}

.as-text p {
  font-size: 15px;
  line-height: 1.82;
  color: var(--as-muted);
  margin: 0 0 18px;
}

.as-section-dark .as-text p {
  color: #d0d5dd;
}

.as-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.as-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;
}

.as-btn-primary {
  background: var(--as-orange);
  color: #ffffff !important;
  box-shadow: 0 12px 26px rgba(244, 154, 0, 0.24);
}

.as-btn-primary:hover {
  background: var(--as-orange-dark);
  color: #ffffff !important;
}

.as-btn-secondary {
  background: #ffffff;
  border: 1px solid #f4d39d;
  color: var(--as-orange-dark) !important;
}

.as-btn-dark {
  background: #ffffff;
  color: #111827 !important;
}

.as-btn-dark:hover {
  background: #fff4df;
  color: #111827 !important;
}

.as-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.as-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.as-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.as-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.as-card {
  background: #ffffff;
  border: 1px solid var(--as-line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--as-shadow);
}

.as-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff4df;
  color: var(--as-orange-dark);
  font-style: normal;
  font-weight: 900;
  margin-bottom: 15px;
}

.as-card h3 {
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 10px;
}

.as-card p {
  font-size: 14px;
  line-height: 1.72;
  color: var(--as-muted);
  margin: 0;
}

.as-mini-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: start;
  background: #ffffff;
  border: 1px solid var(--as-line);
  border-radius: 16px;
  padding: 17px;
  box-shadow: 0 8px 24px rgba(28, 35, 48, 0.05);
}

.as-mini-card i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff4df;
  color: var(--as-orange-dark);
  font-style: normal;
  font-weight: 900;
}

.as-mini-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.as-mini-card span {
  font-size: 13px;
  line-height: 1.58;
  color: var(--as-muted);
}

.as-box {
  background: #ffffff;
  border: 1px solid var(--as-line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(28, 35, 48, 0.055);
}

.as-box h3 {
  font-size: 20px;
  margin: 0 0 12px;
}

.as-box p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--as-muted);
  margin: 0 0 14px;
}

.as-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.as-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  line-height: 1.55;
  color: #4f5968;
}

.as-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;
}

.as-note {
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid var(--as-line);
  border-radius: 18px;
  padding: 20px;
  color: var(--as-muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.as-process {
  counter-reset: step;
}

.as-step {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--as-line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(28, 35, 48, 0.055);
}

.as-step::before {
  counter-increment: step;
  content: counter(step);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff4df;
  color: var(--as-orange-dark);
  font-weight: 900;
  margin-bottom: 16px;
}

.as-step h3 {
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 8px;
}

.as-step p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--as-muted);
  margin: 0;
}

.as-breadcrumb-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--as-line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--as-muted);
  margin-bottom: 18px;
  margin-right: 15px;
}

.as-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
}

.as-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ffffff;
  border: 1px solid var(--as-line);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(28, 35, 48, 0.045);
}

.as-tags span::before {
  content: '✓';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ecfdf3;
  color: #087443;
  font-size: 11px;
}

/* HERO ENTERPRISE */

.as-hero-enterprise {
  padding: 45px 0 52px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 244, 223, 0.92) 0, rgba(255, 244, 223, 0.44) 28%, rgba(255, 250, 242, 0) 48%),
    linear-gradient(180deg, #fffaf2 0%, #ffffff 84%);
}

.as-hero-enterprise-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 52px;
  align-items: center;
}

.as-hero-enterprise h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
}

.as-hero-lead {
  font-size: 16px;
  line-height: 1.84;
  color: #4f5968;
  margin: 0 0 18px;
}

.as-enterprise-panel {
  background: #111827;
  color: #ffffff;
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--as-shadow-strong);
  position: relative;
  overflow: hidden;
}

.as-enterprise-panel h3 {
    color: #ffffff;
}

.as-enterprise-panel::before {
  content: '';
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(244, 154, 0, 0.22);
}

.as-enterprise-panel::after {
  content: '';
  position: absolute;
  left: -70px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.as-enterprise-panel-inner {
  position: relative;
  z-index: 2;
}

.as-enterprise-panel h3 {
  font-size: 25px;
  line-height: 1.25;
  margin: 0 0 12px;
}

.as-enterprise-panel p {
  color: #d0d5dd;
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 22px;
}

.as-architecture-map {
  display: grid;
  gap: 12px;
}

.as-architecture-row {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  align-items: start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px;
}

.as-architecture-row b {
  min-height: 34px;
  border-radius: 12px;
  background: #ffffff;
  color: #111827;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.as-architecture-row strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.as-architecture-row span {
  display: block;
  color: #d0d5dd;
  font-size: 12px;
  line-height: 1.55;
}

/* SYSTEM CARDS */

.as-system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.as-system-card {
  background: #ffffff;
  border: 1px solid var(--as-line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--as-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.as-system-card:hover {
  transform: translateY(-4px);
  border-color: #f7bd59;
  box-shadow: 0 22px 54px rgba(28, 35, 48, 0.1);
}

.as-system-card small {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff4df;
  color: var(--as-orange-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.as-system-card h3 {
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 10px;
}

.as-system-card p {
  color: var(--as-muted);
  font-size: 14px;
  line-height: 1.72;
  margin: 0 0 18px;
}

.as-system-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--as-orange-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.as-system-card a::after {
  content: '→';
  font-size: 15px;
}

.as-system-card-featured {
  border-color: #f7bd59;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 244, 223, 0.95) 0, rgba(255, 244, 223, 0) 42%),
    #ffffff;
}

.as-enterprise-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 244, 223, 0.85) 0, rgba(255, 244, 223, 0) 48%),
    #ffffff;
}

.as-route-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.as-route-box {
  background: #ffffff;
  border: 1px solid var(--as-line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--as-shadow);
}

.as-route-box h3 {
  font-size: 22px;
  margin: 0 0 12px;
}

.as-route-box p {
  color: var(--as-muted);
  line-height: 1.75;
  font-size: 14px;
  margin: 0 0 16px;
}

.as-route-list {
  display: grid;
  gap: 12px;
}

.as-route-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--as-line);
}

.as-route-item:last-child {
  border-bottom: 0;
}

.as-route-item i {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #fff4df;
  color: var(--as-orange-dark);
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 900;
}

.as-route-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.as-route-item span {
  display: block;
  color: var(--as-muted);
  font-size: 13px;
  line-height: 1.55;
}

.as-architecture-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.as-architecture-card {
  background: #ffffff;
  border: 1px solid var(--as-line);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(28, 35, 48, 0.055);
}

.as-architecture-card b {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  margin: 0 auto 12px;
  background: #fff4df;
  color: var(--as-orange-dark);
  font-size: 13px;
}

.as-architecture-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.as-architecture-card span {
  display: block;
  color: var(--as-muted);
  font-size: 12px;
  line-height: 1.5;
}

.as-link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.as-link-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--as-line);
  color: var(--as-orange-dark);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(28, 35, 48, 0.045);
}

.as-link-cloud a:hover {
  border-color: #f7bd59;
  background: #fffaf2;
}

.as-cta {
  padding: 56px 0;
  background: #111827;
  color: #ffffff;
}

.as-cta h2 {
    color: #fff;
}

.as-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.as-cta h2 {
  font-size: 30px;
  line-height: 1.25;
  margin: 0 0 10px;
}

.as-cta p {
  color: #d0d5dd;
  line-height: 1.7;
  margin: 0;
}

.as-faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.as-faq details {
  background: #ffffff;
  border: 1px solid var(--as-line);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 6px 20px rgba(28, 35, 48, 0.035);
}

.as-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 22px;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.as-faq summary::-webkit-details-marker {
  display: none;
}

.as-faq summary::after {
  content: '+';
  color: var(--as-orange);
  font-size: 20px;
  line-height: 1;
}

.as-faq details[open] summary::after {
  content: '–';
}

.as-faq details p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--as-muted);
  font-size: 14px;
  line-height: 1.75;
}

.as-contact-box {
  background: #ffffff;
  border: 1px dashed #f1c980;
  border-radius: 22px;
  padding: 34px;
  text-align: center;
  color: var(--as-muted);
  box-shadow: 0 10px 28px rgba(28, 35, 48, 0.04);
}

@media (max-width: 1080px) {
  .as-architecture-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .as-hero-enterprise-grid,
  .as-route-grid,
  .as-split,
  .as-cta-box {
    grid-template-columns: 1fr;
  }

  .as-system-grid,
  .as-grid-3,
  .as-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .as-hero-enterprise h1 {
    font-size: 36px;
  }
}

@media (max-width: 700px) {
  .as-section {
    padding: 52px 0;
  }

  .as-hero-enterprise {
    padding: 42px 0 34px;
  }

  .as-hero-enterprise-grid {
    text-align: center;
  }

  .as-hero-enterprise .as-line {
    margin-left: auto;
    margin-right: auto;
  }

  .as-hero-enterprise h1 {
    font-size: 31px;
  }

  .as-head h2,
  .as-text h2 {
    font-size: 26px;
  }

  .as-system-grid,
  .as-grid-2,
  .as-grid-3,
  .as-grid-4,
  .as-architecture-grid {
    grid-template-columns: 1fr;
  }

  .as-architecture-row,
  .as-route-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .as-architecture-row b,
  .as-route-item i {
    margin: 0 auto;
  }

  .as-btns,
  .as-tags {
    justify-content: center;
  }
}



#page .post-content, #page .grid-container {
        max-width: 100%!important;
    }
	
	#page .grid-container {
    padding-left: 0px;
     padding-right: 0px;
}

/* Breadcrumbs WordPress / Rank Math / Yoast */

.epcl-breadcrumbs {
  border-bottom: 1px solid var(--as-line, #edf0f4);
  font-family: 'Maven Pro', Inter, Arial, sans-serif;
}

.epcl-breadcrumbs #breadcrumbs {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 22px 0;
    color: var(--as-muted, #667085);
    font-size: 12px;
    line-height: 1.6;
    padding-bottom: 10px;
}

.epcl-breadcrumbs #breadcrumbs span {
  color: var(--as-muted, #667085);
}

.epcl-breadcrumbs #breadcrumbs a {
  color: var(--as-muted, #667085);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.epcl-breadcrumbs #breadcrumbs a:hover {
  color: var(--as-orange-dark, #d88600);
}

.epcl-breadcrumbs .breadcrumb_last {
  color: var(--as-ink, #1f2630);
  font-weight: 800;
}

/* Jeżeli breadcrumb jest bezpośrednio nad hero, wyrównuje tło z pierwszą sekcją */
.epcl-breadcrumbs + .as-page .as-hero-enterprise,
.epcl-breadcrumbs + .as-page .as-hero-hub,
.epcl-breadcrumbs + .as-page .as-hero-subpage {
  padding-top: 38px;
}

@media (max-width: 700px) {
  .epcl-breadcrumbs #breadcrumbs {
    padding: 12px 22px 0;
    font-size: 11px;
  }
}



@media screen and (min-width: 767px) {
.content {
    margin-top: 0px!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;
}


.as-fluid-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
max-width: 400px!important;
    margin: 0 auto;
}

.as-image-caption {
  margin-top: 14px;
  color: var(--as-muted);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

#breadcrumbs {
    display: none;
}
#header div.menu-wrapper {
    margin-bottom: 15px;
}




/* CONTACT PAGE - dodatkowe style */

.as-contact-hero-panel {
  position: relative;
  background: #111827;
  color: #ffffff;
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--as-shadow-strong);
  overflow: hidden;
}

.as-contact-hero-panel::before {
  content: '';
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(244, 154, 0, 0.22);
}

.as-contact-hero-panel::after {
  content: '';
  position: absolute;
  left: -70px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.as-contact-hero-panel-inner {
  position: relative;
  z-index: 2;
}

.as-contact-hero-panel h3 {
  color: #ffffff;
  font-size: 25px;
  line-height: 1.25;
  margin: 0 0 12px;
}

.as-contact-hero-panel p {
  color: #d0d5dd;
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 22px;
}

.as-contact-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.as-contact-mini {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px;
}

.as-contact-mini strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 5px;
}

.as-contact-mini span {
  display: block;
  color: #d0d5dd;
  font-size: 12px;
  line-height: 1.5;
  word-break: break-word;
}

.as-contact-highlight {
  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;
}

.as-contact-highlight 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(--as-orange);
  font-weight: 900;
}

.as-contact-highlight strong {
  display: block;
  margin-bottom: 2px;
}

.as-contact-highlight span {
  display: block;
  color: #d0d5dd;
  font-size: 13px;
  line-height: 1.55;
}

.as-contact-highlight a {
  color: #ffffff !important;
  background: var(--as-orange);
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
}

.as-contact-form-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.as-contact-form-box {
  background: #ffffff;
  border: 1px solid var(--as-line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--as-shadow);
}

.as-contact-form-box h2 {
  font-size: 30px;
  margin: 0 0 8px;
}

.as-contact-form-box h6 {
  color: var(--as-orange-dark);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.as-contact-bank-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--as-line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--as-shadow);
}

.as-contact-bank-card::before {
  content: '';
  position: absolute;
  right: -70px;
  top: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: #fff4df;
}

.as-contact-bank-card h3,
.as-contact-bank-card p,
.as-contact-bank-list {
  position: relative;
  z-index: 1;
}

.as-contact-bank-card h3 {
  font-size: 25px;
  line-height: 1.25;
  margin: 0 0 12px;
}

.as-contact-bank-card p {
  color: var(--as-muted);
  line-height: 1.75;
  margin: 0 0 20px;
}

.as-contact-bank-list {
  display: grid;
  gap: 12px;
}

.as-contact-bank-item {
  background: #fffaf2;
  border: 1px solid #fde5be;
  border-radius: 16px;
  padding: 16px;
}

.as-contact-bank-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.as-contact-bank-item span {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  color: var(--as-muted);
  word-break: break-word;
}

.as-contact-map-box {
  background: #ffffff;
  border: 1px dashed #f1c980;
  border-radius: 22px;
  padding: 34px;
  text-align: center;
  color: var(--as-muted);
  box-shadow: 0 10px 28px rgba(28, 35, 48, 0.04);
}

.as-contact-map-box h3 {
  font-size: 22px;
  color: var(--as-ink);
  margin: 0 0 12px;
}

.as-contact-map-box p {
  margin: 0 0 18px;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .as-contact-form-grid {
    grid-template-columns: 1fr;
  }

  .as-contact-mini-grid {
    grid-template-columns: 1fr;
  }

  .as-contact-highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .as-contact-highlight i {
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .as-contact-form-box,
  .as-contact-bank-card,
  .as-contact-map-box,
  .as-contact-hero-panel {
    padding: 24px;
  }
}