@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap'); :root {
    --navy: #041328;
    --blue: #28bbf1;
    --line: #0d3152;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #444;
    font-family: "Outfit", sans-serif;
    color: #fff;
    scroll-behavior: smooth;
}

/* Shared navigation controls for all cover pages */
.cover-page header {
    position: relative;
}

.section-down-arrow {
    position: absolute;
    right: 18px;
    bottom: 9px;
    width: 31px;
    height: 31px;
    padding: 0;
    border: 1px solid rgba(8, 201, 239, .72);
    border-radius: 50%;
    background: rgba(7, 22, 44, .85);
    color: #08c9ef;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    z-index: 2;
}

.section-down-arrow img {
    width: 15px;
    height: 15px;
    filter: invert(72%) sepia(96%) saturate(1400%) hue-rotate(150deg) brightness(101%);
    animation: down-arrow-bounce 1.6s ease-in-out infinite;
}

.section-down-arrow:hover {
    background: #08c9ef;
    color: #07162c;
    transform: translateY(2px);
}

.section-down-arrow:hover img,
.back-to-top:hover img {
    filter: brightness(0) invert(1);
}

@keyframes down-arrow-bounce {
    0%, 100% { transform: translateY(-2px); }
    50% { transform: translateY(4px); }
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 22px;
    z-index: 20;
    padding: 10px 15px;
    border: 1px solid #08c9ef;
    border-radius: 999px;
    background: #07162c;
    color: #fff;
    font: 600 12px/1 "Outfit", sans-serif;
    letter-spacing: .3px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(22px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background .2s ease;
}

.back-to-top img {
    width: 14px;
    height: 14px;
    margin-right: 5px;
    vertical-align: -3px;
    filter: invert(72%) sepia(96%) saturate(1400%) hue-rotate(150deg) brightness(101%);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #08c9ef;
    color: #07162c;
}

@media (max-width: 575px) {
    .section-down-arrow {
        right: 10px;
        bottom: 8px;
    }

    .back-to-top {
        right: 14px;
        bottom: 14px;
    }
}

/* COVER PAGE 1: Company Overview */
.cover-page {
    background: #444;
}

.cover-page .container {
    width: 100%;
    max-width: 900px;
    padding: 28px 20px 16px;
}

.content-frame {
    position: relative;
    padding: 35px 40px 40px;
    background-image: url(../images/Cover-page-01.svg);
    background-size: cover;
}

.brand-logo {
    width: 122px;
    height: auto;
}

.cover-header small {
    font-size: 9px;
    letter-spacing: 1.4px;
    color: #b9c7d7;
}

.hero-content {
    padding-top: 80px;
}

.eyebrow {
    margin: 0 0 20px;
    color: #00d9ff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.8px;
}

.eyebrow span {
    display: inline-block;
    width: 20px;
    height: 1px;
    margin: 0 9px 2px 0;
    vertical-align: middle;
    background: #22bbea;
}

.hero-content h1 {
    margin: 25px 0;
    color: #f5f7fb;
    font-size: 50px;
    line-height: 60px;
    font-weight: 900;
    letter-spacing: -1.65px;
}

.hero-content h1 em {
    color: var(--blue);
    font-style: normal;
}

.hero-content p {
    margin: 22px 0 0;
    color: #e5edf7;
    font-size: 14px;
    line-height: 24px;
}

.hero-content .intro {
    margin-top: 26px;
    font-size: 16px;
}

.statistics {
   width: 100%;
    max-width: 100%;
    margin-top: 38px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
}

.stat {
    min-width: 0;
    padding: 20px;
    border-right: 1px solid var(--line);
    display: flex;
    flex: 2 0 auto;
    flex-direction: column;
    align-items: flex-start;
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    display: block;
    color: #1cc6fa;
    font-size: 23px;
    line-height: 1;
    font-weight: 700;
}

.stat small {
    display: block;
    margin-top: 8px;
    color: #fff;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: .75px;
    white-space: nowrap;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
    margin: 43px 0 0;
}

.logo-grid div {
    width: 120px;
    height: 54px;
    padding: 8px;
    border-radius: 7px;
    background: #fff;
    display: flex;
    flex: 0 0 120px;
    align-items: center;
    justify-content: center;
}

.logo-grid img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cover-footer {
    padding: 15px 35px;
    border-top: 1px solid #20415f;
    background: #0a1628;
    color: #d7e5f4;
    font-size: 10px;
    letter-spacing: .6px;
}

.cover-footer span {
    padding: 7px 14px;
    border: 1px solid #53708d;
    border-radius: 100px;
}

.cover-footer b {
    font-weight: 500;
}

/* COVER PAGE 2: About Staffing ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â same .container width as Cover Page 1 */
.about-cover {
    width: 100%;
    margin-top: 24px;
    background: #fff;
    color: #08162c;
}

.about-header {
    height: 59px;
    padding: 11px 60px;
    border-bottom: 2px solid #08c9ef;
    background: #07162c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-logo {
    width: 101px;
    height: auto;
}

.about-header span {
    margin-right: 190px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    white-space: nowrap;
}

.about-content {
    padding: 40px 47px 55px;
}

.about-cover .section-label {
    margin: 0 0 12px;
    color: #00aede;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.05px;
}

.section-label i {
    display: inline-block;
    width: 25px;
    height: 1px;
    margin: 0 0 3px 5px;
    background: #47d8f5;
}

.about-cover h1 {
    margin: 0 0 25px;
    font-size: 30px;
    line-height: 35px;
    font-weight: 900;
    letter-spacing: 0px;
}

.about-cover h1 em {
    color: #08c9ef;
    font-style: normal;
}

.about-intro {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 22px;
}

.metric-grid article {
    min-height: 83px;
    padding: 13px 8px;
    border: 1px solid #0d597c;
    border-radius: 9px;
    box-shadow: inset 0 2px 0 -1px #08c9ef;
    background: #07162c;
    color: #fff;
    text-align: center;
    display: grid;
    place-content: center;
}

.metric-grid strong {
    color: #08c9ef;
    font-size: 25px;
    line-height: 1.1;
    font-weight: 800;
}

.metric-grid span {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.28;
    letter-spacing: .1px;
}

.about-divider {
    height: 1px;
    margin: 29px 0 31px;
    background: #bceffc;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.two-column h2, .market-card h2 {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -.4px;
}

.two-column p:not(.section-label) {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
}

.two-column ul {
    padding: 3px 0 0 12px;
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}

.two-column li {
    margin: 12px 0;
}

.two-column li::marker {
    font-size: 14px;
}

.about-cover blockquote {
    margin: 23px 0 0;
    padding: 13px 16px;
    border-left: 3px solid #08c9ef;
    border-radius: 0 8px 8px 0;
    background: #f1f5fa;
    font-size: 13px;
    line-height: 1.6;
}

.market-card {
    margin-top: 58px;
    padding: 21px 24px 24px;
    border: 1px solid #0b668e;
    border-radius: 11px;
    background: linear-gradient(110deg, #07162c, #0a1d38);
    color: #fff;
}

.market-card h2 {
    margin-bottom: 13px;
}

.market-card p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.75;
}

.market-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.market-tags span {
    padding: 5px 9px;
    border: 1px solid #075a83;
    border-radius: 5px;
    background: #08253e;
    color: #08c9ef;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.about-footer {
    min-height: 40px;
    padding: 8px 47px;
    background: #07162c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.about-footer b {
    font-size: 10px;
}

/* COVER PAGE 3: Why Staffinc Exists ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â same .container width as Cover Page 1 */
.problem-cover {
    width: 100%;
    margin-top: 24px;
    background: #fff;
    color: #08162c;
}

.problem-header {
    height: 59px;
    padding: 11px 60px;
    border-bottom: 2px solid #08c9ef;
    background: #07162c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.problem-logo {
    width: 101px;
    height: auto;
}

.problem-header span {
    margin-right: 180px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    white-space: nowrap;
}

.problem-content {
    padding: 40px 47px 55px;
}

.problem-label {
    margin: 0 0 12px;
    color: #00aede;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.05px;
}

.problem-label i {
    display: inline-block;
    width: 25px;
    height: 1px;
    margin: 0 0 3px 5px;
    background: #47d8f5;
}

.problem-cover h1 {
    margin: 0 0 17px;
    font-size: 30px;
    line-height: 35px;
    font-weight: 900;
    letter-spacing: 0;
}

.problem-cover h1 em {
    color: #08c9ef;
    font-style: normal;
}

.problem-intro {
    max-width: 545px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
    margin-top: 30px;
}

.problem-card {
    position: relative;
    min-height: 137px;
    padding: 20px 17px 16px;
    overflow: hidden;
    border: 1px solid #bceffc;
    border-radius: 9px;
    background: #f3f6fb;
}

.problem-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00D9FF 0%, rgba(0, 0, 0, 0) 100%);
}

.problem-card img {
    width: 18px;
    height: 18px;
    margin-bottom: 11px;
    object-fit: contain;
    object-position: left center;
}

.problem-card h2 {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: 0;
}

.problem-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}

.outcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 25px;
}

.result-card {
    min-height: 190px;
    padding: 23px 24px;
    border: 1px solid #0b668e;
    border-radius: 11px;
    background: linear-gradient(120deg, #07162c, #0a1d38);
    color: #fff;
}

.result-card h2 {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

.result-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
    color: #c7d5e6;
    font-size: 14px;
    line-height: 1.45;
}

.result-card li {
    position: relative;
    padding-left: 13px;
    margin: 13px 0;
}

.result-card li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #08c9ef;
}

.approach-card {
    padding: 6px 3px;
}

.approach-card h2 {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -.4px;
}

.approach-card > p:not(.problem-label) {
    margin: 0;
    color: #3D5A7A;
    font-size: 14px;
    line-height: 1.85;
}

.approach-card blockquote {
    margin: 23px 0 0;
    padding: 13px 16px;
    border-left: 3px solid #08c9ef;
    border-radius: 0 8px 8px 0;
    background: #f1f5fa;
    font-size: 13px;
    line-height: 1.6;
}

.problem-footer {
    min-height: 40px;
    padding: 8px 47px;
    background: #07162c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.problem-footer b {
    font-size: 10px;
}

/* COVER PAGE 4: Platforms We Build ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â same .container width as Cover Page 1 */
.platform-cover {
    width: 100%;
    margin-top: 24px;
    background: #fff;
    color: #08162c;
}

.platform-header {
    height: 59px;
    padding: 11px 60px;
    border-bottom: 2px solid #08c9ef;
    background: #07162c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.platform-logo {
    width: 101px;
    height: auto;
}

.platform-header span {
    margin-right: 190px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    white-space: nowrap;
}

.platform-content {
    padding: 40px 47px 55px;
}

.platform-label {
    margin: 0 0 12px;
    color: #00aede;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.05px;
}

.platform-label i {
    display: inline-block;
    width: 25px;
    height: 1px;
    margin: 0 0 3px 5px;
    background: #47d8f5;
}

.platform-cover h1 {
    margin: 0 0 17px;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
}

.platform-cover h1 em {
    color: #08c9ef;
    font-style: normal;
}

.platform-intro {
    max-width: 545px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
    margin-top: 27px;
}

.platform-card {
    position: relative;
    min-height: 145px;
    padding: 18px 17px 14px;
    overflow: hidden;
    border: 1px solid #bceffc;
    border-radius: 9px;
    background: #f3f6fb;
}

.platform-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00D9FF 0%, rgba(0, 0, 0, 0) 100%);
}

.platform-card img {
    width: 19px;
    height: 19px;
    margin-bottom: 11px;
    object-fit: contain;
    object-position: left center;
}

.platform-card h2 {
    margin: 0 0 9px;
    font-size: 16px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: 0;
}

.platform-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 12px;
}

.feature-tags span {
    padding: 6px 8px;
    border: 1px solid #a6eafa;
    border-radius: 3px;
    background: #e5f8fd;
    color: #00aede;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.capability-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 26px;
    padding: 21px 24px;
    border: 1px solid #0b668e;
    border-radius: 11px;
    background: linear-gradient(120deg, #07162c, #0a1d38);
    color: #fff;
}

.capability-card h2 {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

.capability-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
}

.capability-tags {
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.capability-tags span {
    padding: 5px 9px;
    border: 1px solid #075a83;
    border-radius: 5px;
    background: #08253e;
    color: #08c9ef;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

.platform-footer {
    min-height: 40px;
    padding: 8px 47px;
    background: #07162c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.platform-footer b {
    font-size: 10px;
}

/* COVER PAGE 5: Our Build Process ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â same .container width as Cover Page 1 */
.process-cover {
    width: 100%;
    margin-top: 24px;
    background: #fff;
    color: #08162c;
}

.process-header {
    height: 59px;
    padding: 11px 60px;
    border-bottom: 2px solid #08c9ef;
    background: #07162c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.process-logo {
    width: 101px;
    height: auto;
}

.process-header span {
    margin-right: 190px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    white-space: nowrap;
}

.process-content {
    padding: 40px 47px 55px;
}

.process-label {
    margin: 0 0 12px;
    color: #00aede;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.05px;
}

.process-label i {
    display: inline-block;
    width: 25px;
    height: 1px;
    margin: 0 0 3px 5px;
    background: #47d8f5;
}

.process-cover h1 {
    margin: 0 0 17px;
    font-size: 31px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
}

.process-cover h1 em {
    color: #08c9ef;
    font-style: normal;
}

.process-intro {
    max-width: 545px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 26px;
}

.process-timeline {
    position: relative;
    padding-left: 39px;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 17px;
    left: 14px;
    width: 1px;
    background: #08c9ef;
}

.process-timeline article {
    position: relative;
    min-height: 82px;
    padding-bottom: 25px;
}

.process-timeline article > span {
    position: absolute;
    top: -5px;
    left: -44px;
    z-index: 1;
    width: 35px;
    height: 35px;
    border: 2px solid #08c9ef;
    border-radius: 50%;
    background: #07162c;
    color: #08c9ef;
    font-size: 12px;
    font-weight: 700;
    display: grid;
    place-items: center;
}

.process-timeline h2 {
    margin: 1px 0 8px;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 700;
}

.process-timeline p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}

.process-side {
    display: grid;
    gap: 12px;
    align-content: start;
}

.different-card, .delivery-card {
    border: 1px solid #0b668e;
    border-radius: 11px;
    background: linear-gradient(120deg, #07162c, #0a1d38);
    color: #fff;
}

.different-card {
    padding: 22px 23px;
}

.different-card h2, .delivery-card h2 {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

.different-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 14px;
    line-height: 1.45;
}

.different-card li {
    position: relative;
    padding-left: 13px;
    margin: 13px 0;
}

.different-card li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #08c9ef;
}

.delivery-card {
    padding: 15px 18px;
}

.delivery-card > img {
    width: 18px;
    height: 18px;
    margin-bottom: 12px;
    object-fit: contain;
}

.delivery-card h2 {
    margin-bottom: 8px;
}

.delivery-card > p {
    margin: 0 0 12px;
    font-size: 14px;
}

.delivery-card dl {
    margin: 0;
    font-size: 14px;
}

.delivery-card dl div {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.delivery-card dt, .delivery-card dd {
    margin: 0;
    font-weight: 400;
}

.delivery-card dd {
    color: #08c9ef;
}

.process-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

.process-bottom > img {
    width: 100%;
    border-radius: 9px;
    object-fit: cover;
}

.tech-card {
    position: relative;
    padding: 20px 17px 14px;
    overflow: hidden;
    border: 1px solid #bceffc;
    border-radius: 9px;
    background: #f3f6fb;
}

.tech-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00D9FF 0%, rgba(0, 0, 0, 0) 100%);
}

.tech-card > img {
    width: 18px;
    height: 18px;
    margin-bottom: 11px;
    object-fit: contain;
}

.tech-card h2 {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.12;
    font-weight: 800;
}

.tech-card p {
    margin: 0;
    color: #48658d;
    font-size: 14px;
    line-height: 1.7;
}

.process-footer {
    min-height: 40px;
    padding: 8px 47px;
    background: #07162c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.process-footer b {
    font-size: 10px;
}

/* COVER PAGE 6: Structure & Team ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â same .container width as Cover Page 1 */
.structure-cover {
    width: 100%;
    margin-top: 24px;
    background: #fff;
    color: #08162c;
}

.structure-header {
    height: 59px;
    padding: 11px 60px;
    border-bottom: 2px solid #08c9ef;
    background: #07162c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.structure-logo {
    width: 101px;
    height: auto;
}

.structure-header span {
    margin-right: 195px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    white-space: nowrap;
}

.structure-content {
    padding: 40px 47px 55px;
}

.structure-label {
    margin: 0 0 12px;
    color: #00aede;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.05px;
}

.structure-label i {
    display: inline-block;
    width: 25px;
    height: 1px;
    margin: 0 0 3px 5px;
    background: #47d8f5;
}

.structure-cover h1 {
    margin: 0 0 17px;
    font-size: 30px;
    line-height: 35px;
    font-weight: 900;
    letter-spacing: 0;
}

.structure-cover h1 em {
    color: #08c9ef;
    font-style: normal;
}

.structure-intro {
    max-width: 545px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 23px;
}

.team-card {
    min-height: 290px;
    padding: 20px 23px;
    border: 1px solid #0b668e;
    border-radius: 11px;
    background: linear-gradient(120deg, #07162c, #0a1d38);
    color: #fff;
}

.team-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-title > img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.team-title h2 {
    margin: 0 0 2px;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 800;
}

.team-title small {
    display: block;
    font-size: 12px;
}

.team-card > p {
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.75;
}

.team-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 14px;
    line-height: 1.45;
}

.team-card li {
    position: relative;
    padding-left: 13px;
    margin: 13px 0;
}

.team-card li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #08c9ef;
}

.structure-divider {
    height: 1px;
    margin: 36px 0 31px;
    background: #bceffc;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
    margin-top: 18px;
}

.benefit-grid article {
    position: relative;
    min-height: 160px;
    padding: 19px 16px;
    overflow: hidden;
    border: 1px solid #bceffc;
    border-radius: 9px;
    background: #f3f6fb;
}

.benefit-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00D9FF 0%, rgba(0, 0, 0, 0) 100%);
}

.benefit-grid img {
    width: 19px;
    height: 19px;
    margin-bottom: 11px;
    object-fit: contain;
    object-position: left center;
}

.benefit-grid h2 {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: 0;
}

.benefit-grid p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}

.structure-footer {
    min-height: 40px;
    padding: 8px 47px;
    background: #07162c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.structure-footer b {
    font-size: 10px;
}

/* COVER PAGE 7: Who We Work With ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â same .container width as Cover Page 1 */
.clients-cover {
    width: 100%;
    margin-top: 24px;
    background: #fff;
    color: #08162c;
}

.clients-header {
    height: 59px;
    padding: 11px 60px;
    border-bottom: 2px solid #08c9ef;
    background: #07162c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.clients-logo {
    width: 101px;
    height: auto;
}

.clients-header span {
    margin-right: 175px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
}

.clients-content {
    padding: 40px 47px 55px;
}

.clients-label {
    margin: 0 0 12px;
    color: #00aede;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.05px;
}

.clients-label i {
    display: inline-block;
    width: 25px;
    height: 1px;
    margin: 0 0 3px 5px;
    background: #47d8f5;
}

.clients-cover h1 {
    margin: 0 0 17px;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
}

.clients-cover h1 em {
    color: #08c9ef;
    font-style: normal;
}

.clients-intro {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.clients-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.clients-main h2 {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
}

.client-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.client-type-grid article {
    position: relative;
    min-height: 124px;
    padding: 16px 12px;
    overflow: hidden;
    border: 1px solid #bceffc;
    border-radius: 9px;
    background: #f3f6fb;
}

.client-type-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,#00D9FF 0%,rgba(0,0,0,0) 100%);
}

.client-type-grid img {
    width: 18px;
    height: 18px;
    margin-bottom: 10px;
    object-fit: contain;
}

.client-type-grid h3 {
    margin: 0 0 7px;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 700;
}

.client-type-grid p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.client-type-grid .startup {
    grid-column: 1 / -1;
    min-height: 81px;
    display: flex;
    gap: 11px;
    align-items: flex-start;
}

.startup img {
    margin: 0;
}

.startup p {
    color: #48658d;
}

.client-type-grid .startup {
    display: block;
    padding: 16px 12px;
}

.startup-icon {
    display: block;
    margin: 0 0 11px;
    color: #ffb000;
    font-size: 20px;
    line-height: 1;
}

.stage-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 14px;
}

.stage-list li {
    position: relative;
    padding-left: 14px;
    margin: 16px 0;
    line-height: 1.45;
}

.stage-list li::before, .trigger-card li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #08c9ef;
}

.stage-list blockquote {
    margin: 19px 0 0;
    padding: 13px 16px;
    border-left: 3px solid #08c9ef;
    border-radius: 0 8px 8px 0;
    background: #f1f5fa;
    font-size: 13px;
    line-height: 1.6;
}

.trigger-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 33px;
    padding: 21px 24px;
    border: 1px solid #0b668e;
    border-radius: 11px;
    background: linear-gradient(120deg,#07162c,#0a1d38);
    color: #fff;
}

.trigger-card h2 {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 700;
}

.trigger-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
}

.trigger-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 14px;
}

.trigger-card li {
    position: relative;
    padding-left: 13px;
    margin: 12px 0;
    line-height: 1.45;
}

.clients-footer {
    min-height: 40px;
    padding: 8px 47px;
    background: #07162c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.clients-footer b {
    font-size: 10px;
}

/* COVER PAGE 8: Next Steps ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â same .container width as Cover Page 1 */
.next-cover {
    width: 100%;
    min-height: 650px;
    margin-top: 24px;
    background: #07162c;
    color: #fff;
}

.next-header {
    height: 59px;
    padding: 11px 60px;
    border-bottom: 2px solid #08c9ef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.next-logo {
    width: 101px;
    height: auto;
}

.next-header span {
    margin-right: 205px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
}

.next-content {
    padding: 105px 47px 70px;
    background: radial-gradient(circle at 95% 10%,rgba(8,201,239,.1),transparent 22%),radial-gradient(circle at 10% 90%,rgba(8,201,239,.08),transparent 20%);
}

.next-label {
    margin: 0 0 23px;
    color: #08c9ef;
    font-size: 12px;
    font-weight: 600;
}

.next-label i {
    display: inline-block;
    width: 20px;
    height: 1px;
    margin: 0 7px 3px 0;
    background: #08c9ef;
}

.next-cover h1 {
    margin: 0 0 27px;
    font-size: 38px;
    line-height: 50px;
    font-weight: 900;
    letter-spacing: -1.3px;
}

.next-cover h1 em {
    color: #08c9ef;
    font-style: normal;
}

.next-intro {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
}

.next-action-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-top: 28px;
}

.next-action-grid article {
    min-height: 180px;
    padding: 17px 14px 14px;
    border: 1px solid #075a83;
    border-radius: 9px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.next-action-grid img {
    width: 19px;
    height: 19px;
    margin-bottom: 13px;
    object-fit: contain;
}

.next-action-grid h2 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
}

.next-action-grid p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 30px;
}

.next-action-grid a {
    width: 100%;
    margin-top: auto;
    padding: 8px 4px;
    border: 1px solid #076b91;
    border-radius: 5px;
    background: #073147;
    color: #08c9ef;
    font-size: 12px;
    text-decoration: none;
}

.next-action-grid article:first-child a {
    border-color: #08c9ef;
    background: #08c9ef;
    color: #07162c;
}

.demo-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 27px;
    padding: 19px 21px;
    border: 1px solid #075a83;
    border-radius: 10px;
    background: #09283a;
}

.demo-card h2 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
}

.demo-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.demo-card ul {
    padding: 0;
    margin: 0;
    align-self: center;
    list-style: none;
    font-size: 14px;
}

.demo-card li {
    position: relative;
    padding-left: 13px;
    margin: 8px 0;
}

.demo-card li::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #08c9ef;
}

.next-footer {
    min-height: 40px;
    padding: 8px 47px;
    background: #07162c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.next-footer b {
    font-size: 10px;
}

@media (max-width: 850px) {
    .cover-page .container {
        padding: 18px;
    }

    .about-cover {
        min-height: 0;
    }

    .about-header {
        padding: 18px 28px;
    }

    .about-header span {
        margin: 0;
        font-size: 13px;
    }

    .about-content {
        padding: 30px 28px 40px;
    }

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

    .two-column {
        gap: 45px;
    }

    .market-card {
        margin-top: 45px;
    }

    .about-footer {
        padding: 15px 28px;
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .content-frame {
        padding: 45px 27px 32px;
    }

    .hero-content {
        padding-top: 45px;
    }

    .hero-content h1 {
        font-size: clamp(32px, 9vw, 42px);
        line-height: 1.1;
    }

    .statistics {
        width: 100%;
        justify-content: center;
    }

    .stat {
        padding: 14px;
        flex: 0 0 50%;
    }

    .stat:nth-child(2), .stat:nth-child(4) {
        border-right: 0;
    }

    .stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .logo-grid {
        max-width: 100%;
    }

    .about-header {
        height: 78px;
    }

    .about-logo {
        width: 120px;
    }

    .about-header span {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .about-cover h1 {
        font-size: 35px;
    }

    .about-intro {
        font-size: 15px;
    }

    .metric-grid {
        gap: 14px;
    }

    .metric-grid article {
        min-height: 125px;
    }

    .metric-grid strong {
        font-size: 34px;
    }

    .metric-grid span {
        font-size: 14px;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .market-card {
        padding: 28px 23px;
    }

    .about-footer {
        display: grid;
        gap: 8px;
    }

    .about-footer b {
        justify-self: end;
    }
}


.next-action-grid article:first-child a:hover {
    background: #073147;
    color: #fff;
}

.next-action-grid a:hover {
    background: #08c9ef;
    color: #000;
}

/* Responsive layout for all cover sections */
html, body {
    overflow-x: hidden;
}

@media (max-width: 850px) {
    .cover-page .container {
        max-width: 100%;
        padding: 18px 14px;
    }

    .content-frame {
        padding: 30px 28px 34px;
    }

    .hero-content {
        padding-top: 58px;
    }

    .hero-content h1 {
        font-size: clamp(38px, 6vw, 50px);
        line-height: 1.15;
    }

    .about-header, .problem-header, .platform-header, .process-header,
    .structure-header, .clients-header, .next-header {
        padding: 11px 28px;
    }

    .about-header span, .problem-header span, .platform-header span,
    .process-header span, .structure-header span, .clients-header span,
    .next-header span {
        margin-right: 42px;
        font-size: 11px;
    }

    .about-content, .problem-content, .platform-content, .process-content,
    .structure-content, .clients-content, .next-content {
        padding: 34px 28px 44px;
    }

    .problem-grid, .platform-grid, .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .outcome-grid, .process-layout, .clients-main {
        grid-template-columns: 1fr;
    }

    .process-bottom {
        grid-template-columns: 1fr;
    }

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

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

    .client-type-grid .startup {
        grid-column: 1 / -1;
    }

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

    .demo-card {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-footer, .problem-footer, .platform-footer, .process-footer,
    .structure-footer, .clients-footer, .next-footer, .cover-footer {
        padding: 10px 28px;
        gap: 12px;
        flex-wrap: wrap;
    }
    .capability-card {

    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
    .cover-page .container {
        padding: 10px 8px;
    }

    .content-frame {
        padding: 24px 19px 28px;
    }

    .brand-logo, .about-logo, .problem-logo, .platform-logo,
    .process-logo, .structure-logo, .clients-logo, .next-logo {
        width: 92px;
    }

    .cover-header small {
        font-size: 8px;
    }

    .hero-content {
        padding-top: 44px;
    }

    .hero-content h1, .about-cover h1, .problem-cover h1,
    .platform-cover h1, .process-cover h1, .structure-cover h1,
    .clients-cover h1, .next-cover h1 {
        font-size: clamp(28px, 9vw, 39px);
        line-height: 1.12;
        letter-spacing: -.5px;
    }

    .hero-content p, .about-intro, .problem-intro, .platform-intro,
    .process-intro, .structure-intro, .clients-intro, .next-intro,
    .problem-card p, .platform-card p, .team-card > p,
    .benefit-grid p, .client-type-grid p, .next-action-grid p {
        font-size: 13px;
        line-height: 1.6;
    }

    .statistics {
        width: 100%;
    }

    .stat {
        flex: 1 0 50%;
        padding: 14px 12px;
    }

    .stat small {
        font-size: 9px;
        white-space: normal;
    }

    .about-header, .problem-header, .platform-header, .process-header,
    .structure-header, .clients-header, .next-header {
        height: 64px;
        padding: 10px 18px;
    }

    .about-header span, .problem-header span, .platform-header span,
    .process-header span, .structure-header span, .clients-header span,
    .next-header span {
        max-width: 145px;
        margin-right: 34px;
        overflow: hidden;
        font-size: 9px;
        letter-spacing: .8px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .about-content, .problem-content, .platform-content, .process-content,
    .structure-content, .clients-content, .next-content {
        padding: 28px 18px 34px;
    }

    .metric-grid, .problem-grid, .platform-grid, .team-grid,
    .benefit-grid, .client-type-grid, .next-action-grid {
        grid-template-columns: 1fr;
    }

    .client-type-grid .startup {
        grid-column: auto;
    }

    .trigger-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 19px;
    }

    .process-timeline {
        margin-left: 30px;
    }

    .process-timeline article > span {
        left: -38px;
    }

    .about-footer, .problem-footer, .platform-footer, .process-footer,
    .structure-footer, .clients-footer, .next-footer, .cover-footer {
        padding: 10px 18px;
        font-size: 10px;
    }

    .about-footer b, .problem-footer b, .platform-footer b,
    .process-footer b, .structure-footer b, .clients-footer b,
    .next-footer b, .cover-footer b {
        margin-left: auto;
    }

    .section-down-arrow {
        right: 9px;
        width: 28px;
        height: 28px;
    }

    .back-to-top {
        right: 12px;
        bottom: 12px;
        padding: 9px 12px;
    }
}
header.cover-header.d-flex.align-items-center.justify-content-between .section-down-arrow {
    right: 70px;
}
