:root {
    --blue: #005bbb;
    --dark-blue: #003d58;
    --teal: #007b80;
    --purple: #4b006e;
    --purple-dark: #470a68;
    --text: #05051f;
    --muted: #555;
    --footer-line: linear-gradient(90deg, #4b006e, #005bbb);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    color: var(--text);
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

strong {
    color: var(--purple-dark);
    font-weight: 700;
}

.section-inner {
    width: min(100% - 48px, 820px);
    margin: 0 auto;
}

.section-inner.narrow {
    width: min(100% - 48px, 720px);
}

.accent-underline {
    display: inline;
    background-image: linear-gradient(90deg,
            #00a8e8 0%,
            #00a8e8 62%,
            rgba(0, 168, 232, 0.18) 100%);
    background-repeat: no-repeat;
    background-size: 100% 6px;
    background-position: 0 88%;
}

/* ================================
  HERO
================================ */
.pricelists-hero {
    position: relative;
    min-height: 386px;
    background: linear-gradient(90deg, #4b006e 0%, #1f3d9d 100%);
    color: #fff;
    overflow: visible;
}

.pricelists-hero-inner {
    position: relative;
    width: min(100% - 220px, 1280px);
    min-height: 386px;
    margin: 0 auto;
}

.pricelists-hero-copy {
    position: relative;
    z-index: 2;
    padding-top: 122px;
}

.pricelists-hero h1 {
    font-size: 53px;
    line-height: 1.28;
    font-weight: 400;
    margin: 0;
    max-width: 760px;
}

.hero-collage {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-img {
    position: absolute;
    display: block;
    object-fit: cover;
    box-shadow: none;
}

.hero-img-top {
    top: 86px;
    right: 64px;
    width: 370px;
    height: 190px;
}

.hero-img-main {
    top: 330px;
    right: 258px;
    width: 380px;
    height: 238px;
}

.hero-img-small {
    top: 350px;
    right: 0;
    width: 218px;
    height: 112px;
}

.shape {
    position: absolute;
    display: block;
}

.shape-cyan {
    top: 242px;
    right: 365px;
    width: 132px;
    height: 62px;
    background: #00a8e8;
}

.shape-purple {
    top: 132px;
    right: 0;
    width: 80px;
    height: 36px;
    background: var(--purple);
}

.shape-blue {
    top: 454px;
    right: -18px;
    width: 100px;
    height: 46px;
    background: var(--blue);
}

/* ================================
  ACCORDIONS
================================ */
.accordion-section {
    padding: 210px 24px 110px;
}

.accordion {
    margin: 0 0 52px;
}

.accordion-trigger {
    width: 100%;
    min-height: 84px;
    border: 0;
    padding: 0 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(90deg, #4b006e 0%, #005bbb 100%);
    color: #fff;
    font-family: inherit;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.accordion-trigger span:first-child {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.accordion-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg) translateY(-4px);
    transition: transform 0.22s ease;
}

.accordion.is-open .accordion-icon {
    transform: rotate(225deg) translateY(-4px);
}

.accordion-panel {
    display: none;
}

.accordion.is-open .accordion-panel {
    display: block;
}

.table-wrap {
 overflow-x: auto;
 background: #fff;
}
table {
 width: 100%;
 border-collapse: collapse;
 table-layout: fixed;
 background: #fff;
}
th,
td {
 padding: 18px 20px;
 vertical-align: top;
 text-align: left;
 font-size: 13px;
 line-height: 1.40;
 border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
th {
 color: var(--text);
 font-weight: 700;
 background: #fff;
}
tbody tr:nth-child(odd) {
 background: #f1f1f1;
}
tbody tr:nth-child(even) {
 background: #fff;
}
td {
 background: transparent;
}
td:nth-child(1),
th:nth-child(1) {
 width: 32%;
}
td:nth-child(2),
th:nth-child(2) {
 width: 36%;
}
td:nth-child(3),
th:nth-child(3) {
 width: 32%;
}

/* ================================
  SPLIT SECTIONS
================================ */
.split-section {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: #fff;
}

.contact-center {
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(90deg, #4b006e, #005bbb) 1;
}

.split-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 320px;
    background: #e6e6e6;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 0;
}

.split-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: start;
    min-height: 680px;
}

.split-left-image .split-image {
    order: 1;
}

.split-left-image .split-copy {
    order: 2;
}

.split-right-image .split-copy {
    order: 1;
}

.split-right-image .split-image {
    order: 2;
}

.split-image {
    height: 565px;
    margin-top: 58px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-bottom: 6px solid #00a8e8;
}

.split-copy {
    padding: 145px 76px 110px 96px;
}

.split-right-image .split-copy {
    padding-left: 118px;
    padding-right: 64px;
}

.split-copy h2 {
    color: #25272d;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 400;
    margin: 0 0 30px;
}

.split-copy p {
    max-width: 610px;
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 20px;
}

/* ================================
  IMAGE-ONLY ANIMATIONS
================================ */
.js-enabled [data-animate-images] .hero-img,
.js-enabled [data-animate-images] .shape,
.js-enabled [data-animate-images] .split-image {
    opacity: 0;
}

[data-animate-images].is-visible .hero-img,
[data-animate-images].is-visible .shape {
    animation: imageSlideInRight 900ms ease-out both;
}

[data-animate-images].is-visible .hero-img-main {
    animation-delay: 120ms;
}

[data-animate-images].is-visible .hero-img-small {
    animation-delay: 220ms;
}

[data-animate-images].is-visible .shape-cyan {
    animation-delay: 80ms;
}

[data-animate-images].is-visible .shape-purple {
    animation-delay: 160ms;
}

[data-animate-images].is-visible .shape-blue {
    animation-delay: 260ms;
}

.split-left-image.is-visible .split-image {
    animation: imageSlideInLeft 900ms ease-out both;
}

.split-right-image.is-visible .split-image {
    animation: imageSlideInRight 900ms ease-out both;
}

@keyframes imageSlideInRight {
    from {
        opacity: 0;
        transform: translateX(70px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes imageSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-70px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================
  RESPONSIVE: TABLET
================================ */
@media (max-width: 1100px) {
    .pricelists-hero-inner {
        width: min(100% - 80px, 1280px);
    }

    .pricelists-hero h1 {
        font-size: 46px;
    }

    .hero-img-top {
        right: 20px;
        width: 320px;
    }

    .hero-img-main {
        right: 190px;
        width: 340px;
    }

    .hero-img-small {
        width: 190px;
    }

    .split-copy {
        padding-left: 64px;
        padding-right: 48px;
    }

    .split-right-image .split-copy {
        padding-left: 64px;
    }
}

/* ================================
  RESPONSIVE: MOBILE
================================ */
@media (max-width: 900px) {

    .section-inner,
    .section-inner.narrow {
        width: min(100% - 48px, 720px);
    }

    .pricelists-hero {
        min-height: auto;
        overflow: hidden;
    }

    .pricelists-hero-inner {
        width: 100%;
        min-height: 620px;
        padding: 0 14px;
    }

    .pricelists-hero-copy {
        padding-top: 64px;
    }

    .pricelists-hero h1 {
        font-size: 32px;
        line-height: 1.3;
        max-width: 430px;
    }

    .accent-underline {
        background-size: 100% 4px;
        background-position: 0 86%;
    }

    .hero-collage {
        position: relative;
        height: 420px;
        margin-top: 76px;
    }

    .hero-img-top {
        top: 0;
        right: 38px;
        width: 270px;
        height: 138px;
        z-index: 3;
    }

    .hero-img-main {
        top: 178px;
        left: 0;
        right: auto;
        width: 292px;
        height: 176px;
        z-index: 3;
    }

    .hero-img-small {
        top: 196px;
        right: 0;
        width: 130px;
        height: 82px;
        z-index: 4;
    }

    .shape-cyan {
        top: 112px;
        left: 102px;
        right: auto;
        width: 96px;
        height: 46px;
        z-index: 2;
    }

    .shape-purple {
        top: 32px;
        right: 0;
        width: 52px;
        height: 26px;
        z-index: 1;
    }

    .shape-blue {
        top: 274px;
        right: 0;
        width: 64px;
        height: 36px;
        z-index: 2;
    }

    .accordion-section {
        padding: 72px 24px 84px;
    }

    .accordion {
        margin-bottom: 32px;
    }

    .accordion-trigger {
        min-height: 72px;
        padding: 0 22px;
        font-size: 15px;
    }

    th,
    td {
        min-width: 180px;
        padding: 14px 16px;
        font-size: 14px;
    }

    .split-section {
        min-height: auto;
    }

    .split-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .split-left-image .split-image,
    .split-right-image .split-image {
        order: 2;
    }

    .split-left-image .split-copy,
    .split-right-image .split-copy {
        order: 1;
    }

    .split-copy,
    .split-right-image .split-copy {
        padding: 72px 28px 42px;
    }

    .split-copy h2 {
        font-size: 34px;
    }

    .split-image {
        height: 340px;
        margin-top: 0;
    }

    .split-bg {
        height: 280px;
    }
}

/* ================================
  RESPONSIVE: SMALL MOBILE
================================ */
@media (max-width: 560px) {

    .section-inner,
    .section-inner.narrow {
        width: min(100% - 40px, 420px);
    }

    .pricelists-hero-inner {
        min-height: 620px;
    }

    .pricelists-hero h1 {
        font-size: 30px;
    }

    .hero-collage {
        height: 420px;
    }

    .accordion-section {
        padding-inline: 20px;
    }

    .accordion-trigger {
        min-height: 68px;
        padding: 0 18px;
        font-size: 14px;
    }

    .split-copy,
    .split-right-image .split-copy {
        padding: 62px 24px 38px;
    }

    .split-copy h2 {
        font-size: 30px;
    }

    .split-copy p,
    th,
    td {
        font-size: 14px;
    }

    .split-image {
        height: 280px;
    }
}