@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@500;600;700;800&family=Roboto:ital,wght@0,400;0,500;0,700;1,400&display=swap');

:root {
    --ap-primary: #062f7a;
    --ap-primary-deep: #031d55;
    --ap-accent: #11b9e8;
    --ap-ink: #041844;
    --ap-muted: #4f628f;
    --ap-soft: #eaf5ff;
    --ap-border: #d7e5f6;
    --ap-white: #ffffff;
    --ap-dark-text: #dbe7ff;
}

body {
    margin: 0;
    color: var(--ap-ink);
    background: var(--ap-white);
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Catamaran", sans-serif;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.ap-topbar {
    background: var(--ap-ink);
    color: var(--ap-dark-text);
    font-size: 13px;
    padding: 10px 0;
}

.ap-topbar a {
    color: var(--ap-dark-text);
    margin-left: 18px;
}

.ap-topbar a:hover {
    color: var(--ap-accent);
}

.ap-nav-wrap {
    border-bottom: 1px solid rgba(215, 229, 246, 0.86);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(150%) blur(8px);
    box-shadow: 0 10px 26px rgba(4, 24, 68, 0.08);
    position: sticky;
    top: 0;
    z-index: 1100;
}

.ap-navbar {
    padding: 10px 0;
    min-height: 104px;
}

.ap-navbar .navbar-brand {
    padding: 0;
    margin-right: 18px;
    display: inline-flex;
    align-items: center;
}

.ap-logo {
    height: 104px;
    max-width: 100%;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(3, 29, 85, 0.14));
}

.ap-logo-footer {
    max-height: 190px;
    max-width: 100%;
    width: auto;
    height: auto;
    display: inline-block;
    padding: 10px 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.94));
    border: 1px solid rgba(208, 223, 247, 0.86);
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.ap-nav-link {
    color: var(--ap-ink) !important;
    font-weight: 700;
    letter-spacing: 0.2px;
    margin: 0 4px;
    padding: 10px 15px !important;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.ap-nav-link:hover {
    color: var(--ap-primary) !important;
    background: rgba(6, 47, 122, 0.08);
    border-color: rgba(6, 47, 122, 0.14);
}

.ap-nav-link.active {
    color: var(--ap-primary) !important;
    background: rgba(6, 47, 122, 0.1);
    border-color: rgba(6, 47, 122, 0.24);
}

.ap-btn {
    background: var(--ap-primary);
    border: none;
    color: var(--ap-white);
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.ap-btn:hover {
    color: var(--ap-white);
    background: var(--ap-primary-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(6, 47, 122, 0.24);
}

.ap-btn-outline {
    background: transparent;
    color: var(--ap-primary);
    border: 2px solid var(--ap-primary);
}

.ap-btn-outline:hover {
    color: var(--ap-white);
    background: var(--ap-primary);
}

.ap-navbar .navbar-toggler {
    border: 1px solid #b7cbe9;
    border-radius: 12px;
    padding: 7px 10px;
    background: var(--ap-white);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ap-navbar .navbar-toggler:hover {
    border-color: #9ab8e2;
    background: #f4f8ff;
}

.ap-navbar .navbar-toggler[aria-expanded="true"] {
    border-color: rgba(6, 47, 122, 0.35);
    background: #edf4ff;
}

.ap-navbar .navbar-toggler-icon {
    width: 1.2em;
    height: 1.2em;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(6,47,122,0.88)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.ap-navbar .navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(6, 47, 122, 0.15);
}

.ap-page-hero {
    background: linear-gradient(122deg, rgba(4, 24, 68, 0.95), rgba(6, 47, 122, 0.9), rgba(17, 185, 232, 0.55));
    color: var(--ap-white);
    padding: 88px 0 74px;
}

.ap-page-hero h1 {
    color: var(--ap-white);
    margin-bottom: 12px;
}

.ap-page-hero p {
    color: #e4eeff;
    max-width: 740px;
}

.ap-breadcrumb {
    margin-top: 16px;
    color: #dce8ff;
    font-size: 14px;
}

.ap-breadcrumb a {
    color: #dce8ff;
}

.ap-section {
    padding: 88px 0;
}

.ap-section-soft {
    background: var(--ap-soft);
}

.ap-section-head {
    margin-bottom: 34px;
}

.ap-section-head .kicker {
    color: var(--ap-accent);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.2px;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

.ap-section-head p {
    color: var(--ap-muted);
    max-width: 760px;
}

.ap-card {
    background: var(--ap-white);
    border: 1px solid var(--ap-border);
    border-radius: 18px;
    padding: 26px 24px;
    height: 100%;
}

.ap-card p,
.ap-card li {
    color: var(--ap-muted);
}

.ap-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--ap-soft);
    color: var(--ap-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.ap-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ap-checklist li {
    padding-left: 26px;
    margin-bottom: 10px;
    position: relative;
}

.ap-checklist li:before {
    content: "\2713";
    font-family: inherit;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ap-accent);
    font-size: 14px;
}

.ap-about-lead {
    color: var(--ap-muted);
    font-size: 17px;
    line-height: 1.78;
    margin-bottom: 14px;
}

.ap-highlight {
    background: linear-gradient(135deg, var(--ap-ink), var(--ap-primary));
    border: 1px solid rgba(17, 185, 232, 0.42);
    border-radius: 22px;
    padding: 34px;
    color: var(--ap-white);
}

.ap-highlight h2,
.ap-highlight h3,
.ap-highlight p {
    color: var(--ap-white);
}

.ap-highlight p {
    color: #dce8ff;
}

.ap-highlight-subhead {
    color: #ffffff;
    margin-bottom: 8px;
}

.ap-slick {
    margin: 0 -12px;
}

.ap-slick .ap-slick-slide {
    padding: 0 12px;
}

.ap-slick .slick-track {
    display: flex;
}

.ap-slick .slick-slide {
    height: inherit !important;
}

.ap-slick .slick-slide > div {
    height: 100%;
}

.ap-slick .ap-card {
    height: 100%;
}

.ap-slick .slick-dots {
    bottom: -36px;
}

.ap-slick .slick-dots li {
    width: 16px;
}

.ap-slick .slick-dots li button:before {
    font-size: 10px;
    color: var(--ap-primary);
    opacity: 0.28;
}

.ap-slick .slick-dots li.slick-active button:before {
    color: var(--ap-accent);
    opacity: 1;
}

.ap-highlight-slider .ap-highlight h3 {
    margin-bottom: 12px;
}

.ap-highlight-slider .ap-highlight p {
    margin-bottom: 0;
}

.ap-stat {
    border-radius: 14px;
    border: 1px solid var(--ap-border);
    background: var(--ap-white);
    padding: 18px 16px;
    text-align: center;
}

.ap-stat h3 {
    margin-bottom: 5px;
    color: var(--ap-primary);
}

.ap-stat p {
    margin: 0;
    color: var(--ap-muted);
    font-size: 13px;
}

.ap-img-cover {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.ap-contact-block {
    background: var(--ap-white);
    border: 1px solid var(--ap-border);
    border-radius: 20px;
    overflow: hidden;
}

.ap-contact-side {
    background: var(--ap-soft);
    padding: 32px 28px;
    height: 100%;
}

.ap-contact-side p,
.ap-contact-side li {
    color: var(--ap-muted);
}

.ap-contact-side ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}

.ap-contact-side li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 13px;
}

.ap-contact-side i {
    color: var(--ap-primary);
    margin-top: 4px;
}

.ap-contact-side a {
    color: var(--ap-muted);
}

.ap-contact-side a:hover {
    color: var(--ap-primary);
}

.ap-form-wrap {
    padding: 32px 28px;
}

.ap-form-control {
    border-radius: 12px;
    border: 1px solid var(--ap-border);
    min-height: 50px;
    margin-bottom: 14px;
    color: var(--ap-ink);
}

textarea.ap-form-control {
    min-height: 140px;
    resize: vertical;
}

.ap-contact-note {
    color: var(--ap-muted);
    font-size: 13px;
    margin-bottom: 10px;
}

.ap-support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.ap-support-tile {
    background: var(--ap-white);
    border: 1px solid var(--ap-border);
    border-radius: 14px;
    padding: 16px 14px;
}

.ap-support-tile h4 {
    margin-bottom: 7px;
    color: var(--ap-primary);
}

.ap-support-tile p {
    margin: 0;
    color: var(--ap-muted);
}

.ap-table {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--ap-border);
}

.ap-table .table {
    margin: 0;
}

.ap-table thead {
    background: var(--ap-soft);
}

.ap-table th,
.ap-table td {
    vertical-align: middle;
    border-color: var(--ap-border);
}

.ap-badge {
    display: inline-block;
    border-radius: 999px;
    padding: 5px 11px;
    font-size: 12px;
    font-weight: 600;
}

.ap-badge.ap-live {
    background: #d8f8e8;
    color: #106d44;
}

.ap-badge.ap-progress {
    background: #e4f5ff;
    color: #125b8f;
}

.ap-product-hero,
.ap-about-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.ap-product-hero:before,
.ap-about-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, rgba(4, 24, 68, 0.9), rgba(6, 47, 122, 0.76), rgba(17, 185, 232, 0.42));
}

.ap-product-hero .container,
.ap-about-hero .container {
    position: relative;
    z-index: 1;
}

.ap-hero-tag {
    display: inline-block;
    background: rgba(17, 185, 232, 0.2);
    color: #e9f8ff;
    border: 1px solid rgba(17, 185, 232, 0.54);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 7px 14px;
    margin-bottom: 14px;
}

.ap-product-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.ap-product-stat {
    border: 1px solid var(--ap-border);
    border-radius: 14px;
    background: var(--ap-white);
    padding: 16px 14px;
}

.ap-product-stat h3 {
    margin-bottom: 4px;
    color: var(--ap-primary);
}

.ap-product-stat p {
    margin: 0;
    color: var(--ap-muted);
    font-size: 13px;
}

.ap-product-intro-image {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--ap-border);
    background: var(--ap-white);
    box-shadow: 0 16px 30px rgba(6, 47, 122, 0.16);
}

.ap-product-intro-image img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
}

.ap-product-note {
    padding: 16px 18px;
    color: var(--ap-muted);
    font-size: 14px;
    line-height: 1.55;
}

.ap-product-card {
    background: var(--ap-white);
    border: 1px solid var(--ap-border);
    border-radius: 18px;
    padding: 22px 20px;
    height: 100%;
    box-shadow: 0 14px 28px rgba(6, 47, 122, 0.1);
}

.ap-pack-stage {
    background: linear-gradient(160deg, #edf5ff, #ffffff);
    border: 1px solid #dce8f8;
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 14px;
    min-height: 168px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ap-pack-shot {
    max-width: 100%;
    max-height: 142px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.ap-product-card-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.ap-product-card h4 {
    margin: 0;
    color: var(--ap-primary-deep);
    flex: 1 1 100%;
}

.ap-product-card p {
    color: var(--ap-muted);
}

.ap-product-card .ap-badge {
    margin-top: 2px;
    white-space: normal;
    word-break: break-word;
    max-width: 100%;
}

.js-product-category-slider .slick-list {
    padding: 8px 6px 24px;
}

.js-product-category-slider .slick-slide {
    height: inherit !important;
}

.js-product-category-slider .slick-slide > div {
    height: 100%;
}

.js-product-category-slider .ap-product-card {
    height: 100%;
}

.ap-formats {
    margin-bottom: 12px;
}

.ap-checklist.ap-checklist-compact li {
    margin-bottom: 9px;
    font-size: 14px;
}

.ap-product-table td,
.ap-product-table th {
    font-size: 14px;
}

.ap-product-footnote {
    margin-top: 14px;
    margin-bottom: 0;
    color: var(--ap-muted);
    font-size: 14px;
}

.ap-product-pillars {
    display: grid;
    gap: 14px;
}

.ap-product-pillar {
    border: 1px solid var(--ap-border);
    border-radius: 14px;
    padding: 16px 16px 14px;
    background: var(--ap-white);
}

.ap-product-pillar h4 {
    margin-bottom: 7px;
    color: var(--ap-primary);
}

.ap-product-pillar p {
    margin: 0;
    color: var(--ap-muted);
}

.ap-footer {
    margin-top: 60px;
    background: var(--ap-ink);
    color: var(--ap-dark-text);
    padding-top: 64px;
}

.ap-footer h4 {
    color: var(--ap-white);
    margin-bottom: 16px;
}

.ap-footer p,
.ap-footer li,
.ap-footer a {
    color: var(--ap-dark-text);
}

.ap-footer a:hover {
    color: var(--ap-accent);
}

.ap-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ap-footer li {
    margin-bottom: 10px;
}

.ap-footer-bottom {
    margin-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 15px 0 20px;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .ap-page-hero {
        padding: 72px 0 58px;
    }

    .ap-section {
        padding: 70px 0;
    }

    .ap-navbar {
        min-height: 86px;
        padding: 8px 0;
    }

    .ap-logo {
        height: 84px;
    }

    .ap-navbar .navbar-collapse {
        margin-top: 14px;
        padding: 16px;
        border: 1px solid var(--ap-border);
        border-radius: 16px;
        background: var(--ap-white);
        box-shadow: 0 14px 28px rgba(4, 24, 68, 0.12);
    }

    .ap-navbar .navbar-nav {
        align-items: stretch !important;
        gap: 2px;
    }

    .ap-nav-link {
        margin: 2px 0;
        padding: 10px 14px !important;
        display: block;
    }

    .ap-navbar .nav-item.ml-lg-2 {
        margin-left: 0 !important;
        margin-top: 10px !important;
        padding-top: 12px;
        border-top: 1px solid var(--ap-border);
    }

    .ap-navbar .ap-btn {
        display: block;
        width: 100%;
        text-align: center;
    }

    .ap-topbar .text-md-right {
        text-align: left !important;
        margin-top: 8px;
    }

    .ap-topbar a {
        margin-left: 0;
        margin-right: 14px;
    }

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

    .ap-product-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ap-product-intro-image img {
        height: 280px;
    }

    .ap-product-card-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .ap-logo {
        height: 74px;
    }

    .ap-page-hero h1 {
        font-size: 31px;
    }

    .ap-highlight {
        padding: 26px 22px;
    }

    .ap-product-stat-grid {
        grid-template-columns: 1fr;
    }

    .ap-support-grid {
        grid-template-columns: 1fr;
    }

    .ap-product-intro-image img {
        height: 220px;
    }

    .ap-product-card {
        padding: 18px 16px;
    }

    .ap-pack-stage {
        min-height: 148px;
    }

    .ap-pack-shot {
        max-height: 122px;
    }
}
