
/* ==========================================================================
   ATHENA CLIENT LANDING V1.1.0
   ========================================================================== */

body.client-landing {
    margin: 0;
    background: #07111c;
    color: #ffffff;
    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;
}

.client-navbar {
    width: 100%;
    height: 64px;
    background: #081522;
    border-bottom: 1px solid rgba(255,255,255,.10);
    position: relative;
    z-index: 1000;
}

.client-navbar-inner {
    width: min(1180px, calc(100% - 40px));
    height: 64px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}

.client-brand {
    display: flex;
    align-items: center;
    gap: 11px;

    color: #ffffff;
    text-decoration: none;

    flex: 0 0 auto;
}

.client-brand-symbol {
    font-family: Georgia, serif;
    font-weight: 700;
    font-size: 39px;
    line-height: 1;
    transform: skew(-9deg);
}

.client-brand-text {
    display: flex;
    flex-direction: column;
}

.client-brand-text strong {
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .29em;
}

.client-brand-text small {
    margin-top: 2px;

    font-size: 5px;
    letter-spacing: .08em;
}

.client-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;

    flex: 1 1 auto;
}

.nav-link,
.nav-dropdown-trigger {
    appearance: none;
    border: 0;
    background: transparent;

    color: #ffffff;
    text-decoration: none;

    font: inherit;
    font-size: 13px;

    cursor: pointer;

    padding: 22px 0;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-menu {
    display: none;

    position: absolute;
    top: calc(100% - 2px);
    left: 0;

    min-width: 220px;

    background: #0b1a2b;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;

    padding: 8px;

    box-shadow:
        0 18px 45px rgba(0,0,0,.35);

    z-index: 1200;
}

.nav-dropdown:hover > .nav-dropdown-menu,
.nav-dropdown.open > .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a,
.nav-dropdown-menu button {
    display: block;
    width: 100%;

    padding: 10px 12px;

    color: #dce6f4;
    text-decoration: none;

    background: transparent;
    border: 0;
    border-radius: 6px;

    text-align: left;

    font-size: 12px;

    cursor: pointer;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu button:hover {
    background: #172a43;
    color: #ffffff;
}

.client-nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;

    flex: 0 0 auto;
}

.nav-search {
    appearance: none;

    border: 0;
    background: transparent;

    color: #ffffff;

    font-size: 21px;

    cursor: pointer;
}

.nav-signin {
    color: #ffffff;
    text-decoration: none;

    font-size: 13px;

    white-space: nowrap;
}

.nav-register {
    min-height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 18px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #347aff,
            #1c59eb
        );

    border-radius: 7px;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;
}

.language-dropdown {
    position: relative;
}

.language-trigger {
    min-width: 46px;
    justify-content: center;
}

.language-menu {
    width: 520px;
    max-height: 570px;

    left: auto;
    right: 0;

    overflow-y: auto;

    padding: 14px;

    display: none;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}

.language-dropdown:hover .language-menu,
.language-dropdown.open .language-menu {
    display: grid;
}

.language-group {
    min-width: 0;
}

.language-group-title {
    color: #7892b6;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .14em;
    text-transform: uppercase;

    margin: 4px 0 6px;

    padding: 0 12px;
}

.client-mobile-menu {
    display: none;

    appearance: none;
    border: 0;
    background: transparent;

    color: #ffffff;

    font-size: 24px;

    cursor: pointer;
}


/* --------------------------------------------------------------------------
   APPROVED WIREFRAME
   -------------------------------------------------------------------------- */

.approved-wireframe {
    width: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #07111c;
}

.wireframe-stage {
    position: relative;

    width: 100%;

    margin: 0 auto;
}

.wireframe-image {
    display: block;

    width: 100%;
    height: auto;

    margin: 0;

    padding: 0;

    user-select: none;
}


/*
Image native dimensions are 1304 x 402.

The hot-spots below are expressed as percentages so that
they remain aligned when the image scales responsively.
*/

.wireframe-hotspot {
    position: absolute;

    display: block;

    z-index: 20;

    background: transparent;

    border: 0;

    cursor: pointer;
}


/* Get started free button:
   x ≈ 66
   y ≈ 297
   width ≈ 177
   height ≈ 44
*/

.hotspot-start {
    left: 5.06%;
    top: 73.88%;

    width: 13.57%;
    height: 10.95%;
}


/* Watch video button:
   x ≈ 259
   y ≈ 297
   width ≈ 159
   height ≈ 44
*/

.hotspot-video {
    left: 19.86%;
    top: 73.88%;

    width: 12.20%;
    height: 10.95%;
}


/*
Visible focus is provided for keyboard users only.
It does not alter the wireframe during ordinary use.
*/

.wireframe-hotspot:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: -3px;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1080px) {

    .client-main-nav {
        gap: 18px;
    }

    .client-navbar-inner {
        width: min(100% - 26px, 1180px);
    }

    .client-brand-text small {
        display: none;
    }

    .language-menu {
        width: 460px;
    }
}


@media (max-width: 900px) {

    .client-navbar {
        height: auto;
        min-height: 64px;
    }

    .client-navbar-inner {
        min-height: 64px;

        flex-wrap: wrap;
    }

    .client-mobile-menu {
        display: block;

        margin-left: auto;
    }

    .client-main-nav {
        display: none;

        order: 10;

        width: 100%;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 6px 0 14px;
    }

    .client-main-nav.mobile-open {
        display: flex;
    }

    .nav-link,
    .nav-dropdown-trigger {
        width: 100%;

        padding: 11px 8px;

        justify-content: space-between;

        text-align: left;
    }

    .nav-dropdown-menu {
        position: static;

        width: 100%;
        min-width: 0;

        margin: 0 0 7px;

        box-shadow: none;
    }

    .client-nav-actions {
        margin-left: auto;
    }

    .nav-search {
        display: none;
    }

    .language-menu {
        position: absolute;

        width: min(92vw, 470px);

        right: 0;
        left: auto;
    }
}


@media (max-width: 600px) {

    .client-navbar-inner {
        width: calc(100% - 20px);
    }

    .client-brand-text strong {
        font-size: 15px;
    }

    .client-brand-symbol {
        font-size: 32px;
    }

    .nav-signin {
        display: none;
    }

    .nav-register {
        min-height: 36px;

        padding: 0 12px;
    }

    .language-menu {
        width: calc(100vw - 20px);

        grid-template-columns: 1fr;

        max-height: 70vh;
    }

    /*
    The image remains exactly unchanged.
    On very narrow screens, it scales proportionally.
    */
    .wireframe-stage {
        min-width: 100%;
    }
}

/* ==========================================================================
   ATHENA CLIENT LANDING V1.1.0
   ========================================================================== */

body.client-landing {
    margin: 0;
    background: #07111c;
    color: #ffffff;
    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;
}

.client-navbar {
    width: 100%;
    height: 64px;
    background: #081522;
    border-bottom: 1px solid rgba(255,255,255,.10);
    position: relative;
    z-index: 1000;
}

.client-navbar-inner {
    width: min(1180px, calc(100% - 40px));
    height: 64px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}

.client-brand {
    display: flex;
    align-items: center;
    gap: 11px;

    color: #ffffff;
    text-decoration: none;

    flex: 0 0 auto;
}

.client-brand-symbol {
    font-family: Georgia, serif;
    font-weight: 700;
    font-size: 39px;
    line-height: 1;
    transform: skew(-9deg);
}

.client-brand-text {
    display: flex;
    flex-direction: column;
}

.client-brand-text strong {
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .29em;
}

.client-brand-text small {
    margin-top: 2px;

    font-size: 5px;
    letter-spacing: .08em;
}

.client-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;

    flex: 1 1 auto;
}

.nav-link,
.nav-dropdown-trigger {
    appearance: none;
    border: 0;
    background: transparent;

    color: #ffffff;
    text-decoration: none;

    font: inherit;
    font-size: 13px;

    cursor: pointer;

    padding: 22px 0;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-menu {
    display: none;

    position: absolute;
    top: calc(100% - 2px);
    left: 0;

    min-width: 220px;

    background: #0b1a2b;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;

    padding: 8px;

    box-shadow:
        0 18px 45px rgba(0,0,0,.35);

    z-index: 1200;
}

.nav-dropdown:hover > .nav-dropdown-menu,
.nav-dropdown.open > .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a,
.nav-dropdown-menu button {
    display: block;
    width: 100%;

    padding: 10px 12px;

    color: #dce6f4;
    text-decoration: none;

    background: transparent;
    border: 0;
    border-radius: 6px;

    text-align: left;

    font-size: 12px;

    cursor: pointer;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu button:hover {
    background: #172a43;
    color: #ffffff;
}

.client-nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;

    flex: 0 0 auto;
}

.nav-search {
    appearance: none;

    border: 0;
    background: transparent;

    color: #ffffff;

    font-size: 21px;

    cursor: pointer;
}

.nav-signin {
    color: #ffffff;
    text-decoration: none;

    font-size: 13px;

    white-space: nowrap;
}

.nav-register {
    min-height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 18px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #347aff,
            #1c59eb
        );

    border-radius: 7px;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;
}

.language-dropdown {
    position: relative;
}

.language-trigger {
    min-width: 46px;
    justify-content: center;
}

.language-menu {
    width: 520px;
    max-height: 570px;

    left: auto;
    right: 0;

    overflow-y: auto;

    padding: 14px;

    display: none;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}

.language-dropdown:hover .language-menu,
.language-dropdown.open .language-menu {
    display: grid;
}

.language-group {
    min-width: 0;
}

.language-group-title {
    color: #7892b6;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .14em;
    text-transform: uppercase;

    margin: 4px 0 6px;

    padding: 0 12px;
}

.client-mobile-menu {
    display: none;

    appearance: none;
    border: 0;
    background: transparent;

    color: #ffffff;

    font-size: 24px;

    cursor: pointer;
}


/* --------------------------------------------------------------------------
   APPROVED WIREFRAME
   -------------------------------------------------------------------------- */

.approved-wireframe {
    width: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #07111c;
}

.wireframe-stage {
    position: relative;

    width: 100%;

    margin: 0 auto;
}

.wireframe-image {
    display: block;

    width: 100%;
    height: auto;

    margin: 0;

    padding: 0;

    user-select: none;
}


/*
Image native dimensions are 1304 x 402.

The hot-spots below are expressed as percentages so that
they remain aligned when the image scales responsively.
*/

.wireframe-hotspot {
    position: absolute;

    display: block;

    z-index: 20;

    background: transparent;

    border: 0;

    cursor: pointer;
}


/* Get started free button:
   x ≈ 66
   y ≈ 297
   width ≈ 177
   height ≈ 44
*/

.hotspot-start {
    left: 5.06%;
    top: 73.88%;

    width: 13.57%;
    height: 10.95%;
}


/* Watch video button:
   x ≈ 259
   y ≈ 297
   width ≈ 159
   height ≈ 44
*/

.hotspot-video {
    left: 19.86%;
    top: 73.88%;

    width: 12.20%;
    height: 10.95%;
}


/*
Visible focus is provided for keyboard users only.
It does not alter the wireframe during ordinary use.
*/

.wireframe-hotspot:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: -3px;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1080px) {

    .client-main-nav {
        gap: 18px;
    }

    .client-navbar-inner {
        width: min(100% - 26px, 1180px);
    }

    .client-brand-text small {
        display: none;
    }

    .language-menu {
        width: 460px;
    }
}


@media (max-width: 900px) {

    .client-navbar {
        height: auto;
        min-height: 64px;
    }

    .client-navbar-inner {
        min-height: 64px;

        flex-wrap: wrap;
    }

    .client-mobile-menu {
        display: block;

        margin-left: auto;
    }

    .client-main-nav {
        display: none;

        order: 10;

        width: 100%;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 6px 0 14px;
    }

    .client-main-nav.mobile-open {
        display: flex;
    }

    .nav-link,
    .nav-dropdown-trigger {
        width: 100%;

        padding: 11px 8px;

        justify-content: space-between;

        text-align: left;
    }

    .nav-dropdown-menu {
        position: static;

        width: 100%;
        min-width: 0;

        margin: 0 0 7px;

        box-shadow: none;
    }

    .client-nav-actions {
        margin-left: auto;
    }

    .nav-search {
        display: none;
    }

    .language-menu {
        position: absolute;

        width: min(92vw, 470px);

        right: 0;
        left: auto;
    }
}


@media (max-width: 600px) {

    .client-navbar-inner {
        width: calc(100% - 20px);
    }

    .client-brand-text strong {
        font-size: 15px;
    }

    .client-brand-symbol {
        font-size: 32px;
    }

    .nav-signin {
        display: none;
    }

    .nav-register {
        min-height: 36px;

        padding: 0 12px;
    }

    .language-menu {
        width: calc(100vw - 20px);

        grid-template-columns: 1fr;

        max-height: 70vh;
    }

    /*
    The image remains exactly unchanged.
    On very narrow screens, it scales proportionally.
    */
    .wireframe-stage {
        min-width: 100%;
    }
}

/* ==========================================================================
   ATHENA CLIENT LIVE LANDING REPLICA V1.3.0
   ========================================================================== */

.athena-client-lower {
    width: 100%;
    background: #ffffff;
    color: #0c1930;
    font-family: Arial, Helvetica, sans-serif;
}


/* --------------------------------------------------------------------------
   CAPABILITIES
   -------------------------------------------------------------------------- */

.acl-capabilities {
    width: 100%;
    min-height: 188px;

    display: grid;
    grid-template-columns: repeat(6, 1fr);

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fdfefe 100%
        );

    border-top: 1px solid #eef2f8;
    border-bottom: 1px solid #e6edf6;
}

.acl-capability {
    min-width: 0;

    text-align: center;

    padding:
        28px 16px
        23px;

    border-right: 1px solid #edf1f6;
}

.acl-capability:last-child {
    border-right: 0;
}

.acl-icon {
    width: 42px;
    height: 42px;

    margin: 0 auto 8px;
}

.acl-icon svg {
    width: 100%;
    height: 100%;

    fill: none;

    stroke: #286cff;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.acl-capability h3 {
    margin: 0 0 7px;

    font-size: 15px;
    line-height: 1.18;

    font-weight: 700;

    color: #0b1930;
}

.acl-capability p {
    margin: 0;

    color: #62718a;

    font-size: 14px;
    line-height: 1.35;
}


/* --------------------------------------------------------------------------
   TRUST STRIP
   -------------------------------------------------------------------------- */

.acl-trust {
    min-height: 87px;

    background:
        linear-gradient(
            90deg,
            #f3f7fd 0%,
            #edf4fb 50%,
            #f4f8fd 100%
        );

    border-bottom: 1px solid #e7edf5;

    padding: 17px 20px 15px;
}

.acl-trust-title {
    text-align: center;

    color: #8094b3;

    font-size: 10px;

    letter-spacing: .22em;

    margin-bottom: 12px;
}

.acl-trust-items {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 52px;
}

.acl-trust-items span {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #324762;

    font-size: 13px;

    white-space: nowrap;
}

.acl-trust-items svg {
    width: 29px;
    height: 29px;

    fill: none;

    stroke: #385a85;
    stroke-width: 1.9;
    stroke-linejoin: round;
}


/* --------------------------------------------------------------------------
   PRICING
   -------------------------------------------------------------------------- */

.acl-pricing-wrap {
    width: min(1172px, calc(100% - 68px));

    margin: 0 auto;

    padding-top: 17px;
}

.acl-pricing-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 15px;
}

.acl-pricing-heading h2 {
    margin: 0 0 3px;

    font-size: 20px;
    line-height: 1.15;

    color: #0d1930;
}

.acl-pricing-heading p {
    margin: 0;

    color: #64758f;

    font-size: 14px;
}

.acl-pricing-heading > a {
    padding-bottom: 7px;

    color: #155cff;

    text-decoration: none;

    font-size: 13px;

    white-space: nowrap;
}


.acl-plans {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;
}

.acl-plan {
    min-height: 197px;

    display: flex;
    flex-direction: column;

    padding: 17px 17px 13px;

    border: 1px solid #dce4ee;
    border-radius: 8px;

    background: #ffffff;
}

.acl-plan-heading {
    display: flex;

    align-items: flex-start;

    gap: 13px;
}

.acl-plan-symbol {
    min-width: 25px;

    color: #255eaf;

    font-size: 24px;
    line-height: 1;
}

.free-symbol {
    transform: rotate(-25deg);
}

.team-symbol {
    color: #12aed0;

    letter-spacing: -9px;

    margin-right: 7px;
}

.business-symbol {
    color: #7838e8;
}

.acl-plan h3 {
    margin: 0 0 2px;

    color: #0b1930;

    font-size: 16px;
}

.acl-plan-audience {
    color: #60708b;

    font-size: 13px;
}

.acl-plan > p {
    margin: 10px 0 3px;

    color: #65758e;

    font-size: 13px;
    line-height: 1.35;

    min-height: 36px;
}

.acl-price {
    margin-bottom: 8px;

    color: #07152e;

    font-size: 27px;
    line-height: 1;

    font-weight: 700;
}

.acl-price small {
    color: #60708b;

    font-size: 12px;

    font-weight: 400;
}

.acl-plan-button {
    min-height: 37px;

    margin-top: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;

    background:
        linear-gradient(
            180deg,
            #edf3fb,
            #e6eef9
        );

    color: #0658ff;

    text-decoration: none;

    font-size: 13px;
}


/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */

.acl-cta {
    position: relative;

    min-height: 130px;

    margin-top: 11px;

    overflow: hidden;

    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 16px 29px;

    color: white;

    background:
        linear-gradient(
            90deg,
            #2d55a3 0%,
            #5e84b7 47%,
            #c5a6a1 77%,
            #f0c6b4 100%
        );
}

.acl-cta:after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 30%;
    height: 55%;

    background:
        linear-gradient(
            160deg,
            transparent 0 37%,
            rgba(30,44,57,.35) 38% 44%,
            transparent 45%
        );
}

.acl-mountains {
    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;
}

.mountain {
    position: absolute;

    bottom: -3px;

    width: 210px;
    height: 110px;

    background:
        linear-gradient(
            145deg,
            rgba(234,237,242,.8),
            rgba(61,78,102,.85) 50%,
            rgba(18,37,62,.92)
        );

    clip-path:
        polygon(
            50% 0,
            100% 100%,
            0 100%
        );
}

.m1 {
    left: 39%;
}

.m2 {
    left: 49%;

    transform: scale(.75);
}

.m3 {
    left: 56%;

    transform: scale(.65);
}

.m4 {
    left: 64%;

    transform: scale(.5);
}

.acl-cta-copy,
.acl-cta-action {
    position: relative;

    z-index: 2;
}

.acl-cta-copy h2 {
    margin: 0 0 7px;

    font-size: 24px;
    line-height: 1.1;
}

.acl-cta-copy p {
    margin: 0;

    font-size: 12px;
    line-height: 1.4;
}

.acl-cta-action {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 7px;

    margin-right: 110px;
}

.acl-cta-action a {
    min-height: 36px;

    display: flex;
    align-items: center;

    padding: 0 16px;

    border-radius: 6px;

    background: #246cff;

    color: white;

    text-decoration: none;

    font-size: 11px;
}

.acl-cta-action small {
    font-size: 10px;
}


/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */

.acl-footer {
    min-height: 46px;

    display: grid;

    grid-template-columns:
        230px 1fr 230px;

    align-items: center;
}

.acl-footer-brand {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #13223a;

    text-decoration: none;

    font-family: Georgia, serif;

    font-size: 15px;

    letter-spacing: .27em;
}

.acl-footer-a {
    font-size: 30px;
    font-weight: 700;

    transform: skew(-10deg);
}

.acl-footer-nav {
    display: flex;

    justify-content: center;

    gap: 28px;
}

.acl-footer-nav a {
    color: #34465f;

    text-decoration: none;

    font-size: 11px;
}

.acl-footer-right {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 13px;

    color: #34465f;
}

.acl-social {
    font-size: 13px;
}

.acl-language-button {
    border: 0;

    background: transparent;

    color: #24364f;

    cursor: pointer;

    font-size: 11px;
}


/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */

@media(max-width:1000px) {

    .acl-capabilities {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .acl-capability:nth-child(3) {
        border-right: 0;
    }

    .acl-trust-items {
        flex-wrap: wrap;
        gap: 20px 35px;
    }

    .acl-cta-action {
        margin-right: 20px;
    }
}


@media(max-width:760px) {

    .acl-pricing-wrap {
        width: calc(100% - 28px);
    }

    .acl-plans {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .acl-footer {
        grid-template-columns: 1fr;

        gap: 12px;

        padding: 18px 0;
    }

    .acl-footer-nav {
        justify-content: flex-start;

        flex-wrap: wrap;
    }

    .acl-footer-right {
        justify-content: flex-start;
    }
}


@media(max-width:560px) {

    .acl-capabilities {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .acl-capability:nth-child(3) {
        border-right:
            1px solid #edf1f6;
    }

    .acl-capability:nth-child(even) {
        border-right: 0;
    }

    .acl-pricing-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 7px;
    }

    .acl-plans {
        grid-template-columns: 1fr;
    }

    .acl-cta {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;

        padding: 22px;
    }

    .acl-cta-action {
        align-items: flex-start;

        margin-right: 0;
    }
}

