/* Extracted from mobile-app-development.html inline <style> block 01. */
:root {
    --ws-blue: #1557ff;
    --ws-blue-dark: #072b88;
    --ws-black: #07111f;
    --ws-text: #1e293b;
    --ws-muted: #64748b;
    --ws-soft: #f5f8ff;
    --ws-white: #ffffff;
    --ws-border: #dbe7ff;
    --ws-shadow: 0 14px 40px rgba(7,17,31,.08);
}

.ws_app_advanced_wrap,
.ws_app_advanced_wrap * {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ws_app_advanced_wrap {
    background: #ffffff;
    color: var(--ws-text);
    overflow: hidden;
}

.ws_app_section {
    position: relative;
    padding: 72px 20px;
}

.ws_app_container {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Improved Premium Badge */
.ws_app_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    padding: 7px 16px 7px 11px;
    border-radius: 999px;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.1px;
    white-space: nowrap;
    position: relative;
    isolation: isolate;
}

.ws_app_eyebrow span {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 0 0 auto;
}

.ws_app_eyebrow span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #1557ff;
    box-shadow: 0 0 0 6px rgba(21,87,255,.14);
}

.ws_app_section:not(.ws_dark_section) .ws_app_eyebrow {
    color: #07328f;
    background: linear-gradient(180deg,#ffffff 0%,#f7faff 100%);
    border: 1px solid rgba(21,87,255,.16);
    box-shadow:
        0 8px 22px rgba(7,17,31,.05),
        inset 0 1px 0 rgba(255,255,255,.9);
}

.ws_dark_section .ws_app_eyebrow {
    color: #ffffff;
    background: linear-gradient(180deg,rgba(255,255,255,.13),rgba(255,255,255,.07));
    border: 1px solid rgba(255,255,255,.18);
    box-shadow:
        0 10px 28px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.12);
    backdrop-filter: blur(14px);
}

.ws_app_eyebrow::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(120deg,transparent 0%,rgba(255,255,255,.32) 38%,transparent 70%);
    opacity: 0;
    transform: translateX(-25%);
    transition: .35s ease;
    z-index: -1;
}

.ws_app_eyebrow:hover::after {
    opacity: 1;
    transform: translateX(20%);
}

.ws_app_title {
    margin: 20px 0 12px;
    font-size: clamp(26px, 2.4vw, 38px);
    line-height: 1.22;
    letter-spacing: -.45px;
    color: var(--ws-black);
    font-weight: 800;
    max-width: 880px;
}

.ws_app_title strong {
    color: var(--ws-blue);
    font-weight: 800;
}

.ws_app_desc {
    max-width: 760px;
    font-size: 15.5px;
    line-height: 1.72;
    font-weight: 400;
    color: var(--ws-muted);
    margin: 0;
}

.ws_app_grid_3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 36px;
}

.ws_app_grid_2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
}

.ws_app_card {
    background: #ffffff;
    border: 1px solid var(--ws-border);
    border-radius: 24px;
    padding: 26px;
    box-shadow: var(--ws-shadow);
    transition: .25s ease;
}

.ws_app_card:hover {
    transform: translateY(-4px);
    border-color: rgba(21,87,255,.42);
}

.ws_app_icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg,var(--ws-blue),var(--ws-blue-dark));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 18px;
}

.ws_app_card h3 {
    font-size: 18px;
    line-height: 1.35;
    color: var(--ws-black);
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -.2px;
}

.ws_app_card p {
    color: var(--ws-muted);
    font-size: 14.5px;
    line-height: 1.65;
    font-weight: 400;
    margin: 0;
}

.ws_app_card ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.ws_app_card li {
    display: flex;
    gap: 10px;
    color: #334155;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 9px;
}

.ws_app_card li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ws-blue);
    margin-top: 8px;
    flex: 0 0 auto;
}

/* Dark Section */
.ws_dark_section {
    background:
        radial-gradient(circle at top left,rgba(21,87,255,.32),transparent 30%),
        linear-gradient(135deg,#07111f,#081a38 55%,#07111f);
    color: #ffffff;
}

.ws_dark_section .ws_app_title,
.ws_dark_section .ws_app_card h3 {
    color: #ffffff;
}

.ws_dark_section .ws_app_desc,
.ws_dark_section .ws_app_card p,
.ws_dark_section .ws_app_card li {
    color: #d8e2f0;
}

.ws_dark_section .ws_app_card {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.14);
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.ws_dark_section .ws_app_card:hover {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.28);
}

/* App Category Live Effects */
.ws_dark_section .ws_app_grid_3 .ws_app_card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    transform-style: preserve-3d;
}

.ws_dark_section .ws_app_grid_3 .ws_app_card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg,rgba(255,255,255,.05),rgba(21,87,255,.85),rgba(255,255,255,.08));
    -webkit-mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .35s ease;
    z-index: -1;
}

.ws_dark_section .ws_app_grid_3 .ws_app_card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    left: var(--mouse-x,50%);
    top: var(--mouse-y,50%);
    transform: translate(-50%,-50%);
    background: radial-gradient(circle,rgba(21,87,255,.38),rgba(21,87,255,.12) 35%,transparent 70%);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
    z-index: -1;
}

.ws_dark_section .ws_app_grid_3 .ws_app_card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow:
        0 24px 60px rgba(0,0,0,.26),
        0 0 45px rgba(21,87,255,.20);
}

.ws_dark_section .ws_app_grid_3 .ws_app_card:hover::before,
.ws_dark_section .ws_app_grid_3 .ws_app_card:hover::after {
    opacity: 1;
}

.ws_live_shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,transparent 20%,rgba(255,255,255,.10) 45%,transparent 70%);
    transform: translateX(-120%);
    transition: transform .75s ease;
    pointer-events: none;
    z-index: 1;
}

.ws_dark_section .ws_app_grid_3 .ws_app_card:hover .ws_live_shine {
    transform: translateX(120%);
}

@keyframes ws_app_float_soft {
    0%,100% { translate: 0 0; }
    50% { translate: 0 -5px; }
}

.ws_dark_section .ws_app_grid_3 .ws_app_card:nth-child(1) { animation: ws_app_float_soft 6s ease-in-out infinite; }
.ws_dark_section .ws_app_grid_3 .ws_app_card:nth-child(2) { animation: ws_app_float_soft 7s ease-in-out infinite; }
.ws_dark_section .ws_app_grid_3 .ws_app_card:nth-child(3) { animation: ws_app_float_soft 6.5s ease-in-out infinite; }
.ws_dark_section .ws_app_grid_3 .ws_app_card:nth-child(4) { animation: ws_app_float_soft 7.5s ease-in-out infinite; }
.ws_dark_section .ws_app_grid_3 .ws_app_card:nth-child(5) { animation: ws_app_float_soft 6.8s ease-in-out infinite; }
.ws_dark_section .ws_app_grid_3 .ws_app_card:nth-child(6) { animation: ws_app_float_soft 7.2s ease-in-out infinite; }

/* Architecture */
.ws_arch_box {
    padding: 30px;
    border-radius: 26px;
    background: linear-gradient(180deg,#ffffff,#f7faff);
    border: 1px solid var(--ws-border);
    box-shadow: var(--ws-shadow);
}

.ws_arch_box h3 {
    margin: 0;
    color: var(--ws-black);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -.2px;
}

.ws_arch_layers {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.ws_arch_layer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 17px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid var(--ws-border);
}

.ws_arch_layer strong {
    color: var(--ws-black);
    font-size: 14.5px;
    line-height: 1.4;
    font-weight: 700;
}

.ws_arch_layer span {
    color: var(--ws-muted);
    font-size: 13.5px;
    line-height: 1.45;
    font-weight: 500;
    text-align: right;
}

/* Process */
.ws_process_timeline {
    margin-top: 36px;
    display: grid;
    gap: 16px;
}

.ws_process_item {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 18px;
    align-items: flex-start;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 24px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(12px);
}

.ws_process_no {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--ws-blue);
    font-size: 20px;
    line-height: 1;
    font-weight: 800;
}

.ws_process_item h3 {
    color: #ffffff;
    margin: 0 0 7px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -.2px;
}

.ws_process_item p {
    color: #d8e2f0;
    margin: 0;
    font-size: 14.5px;
    line-height: 1.65;
    font-weight: 400;
}

/* Comparison */
.ws_compare_table {
    margin-top: 36px;
    border: 1px solid var(--ws-border);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--ws-shadow);
    background: #ffffff;
}

.ws_compare_row {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1fr;
    border-bottom: 1px solid var(--ws-border);
}

.ws_compare_row:last-child {
    border-bottom: 0;
}

.ws_compare_cell {
    padding: 18px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
    font-weight: 500;
    border-right: 1px solid var(--ws-border);
}

.ws_compare_cell:last-child {
    border-right: 0;
}

.ws_compare_head .ws_compare_cell {
    background: #07111f;
    color: #ffffff;
    font-weight: 800;
}

.ws_compare_good {
    color: #0f766e;
    font-weight: 700;
}

.ws_compare_bad {
    color: #b91c1c;
    font-weight: 700;
}

/* CTA */
.ws_cta_final {
    background:
        radial-gradient(circle at 20% 10%,rgba(21,87,255,.18),transparent 28%),
        linear-gradient(135deg,#f8fbff,#ffffff);
}

.ws_cta_box {
    border-radius: 30px;
    background: #07111f;
    padding: 44px;
    color: #ffffff;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 28px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ws_cta_box::before {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(21,87,255,.35);
    filter: blur(20px);
}

.ws_cta_box h2 {
    font-size: clamp(24px,2.4vw,34px);
    line-height: 1.24;
    font-weight: 800;
    letter-spacing: -.45px;
    margin: 0 0 12px;
    color: #ffffff;
    max-width: 700px;
}

.ws_cta_box p {
    color: #d8e2f0;
    line-height: 1.7;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    max-width: 700px;
}

.ws_cta_actions {
    display: flex;
    flex-direction: column;
    gap: 13px;
    position: relative;
    z-index: 2;
}

.ws_cta_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 15px;
    background: #ffffff;
    color: #07111f;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none !important;
    transition: .25s ease;
}

.ws_cta_btn:hover {
    transform: translateY(-3px);
    color: #07111f;
}

.ws_cta_btn_blue {
    background: var(--ws-blue);
    color: #ffffff;
}

.ws_cta_btn_blue:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
    .ws_app_section {
        padding: 58px 16px;
    }

    .ws_app_grid_3,
    .ws_app_grid_2,
    .ws_cta_box {
        grid-template-columns: 1fr;
    }

    .ws_compare_row {
        grid-template-columns: 1fr;
    }

    .ws_compare_cell {
        border-right: 0;
        border-bottom: 1px solid var(--ws-border);
    }

    .ws_compare_cell:last-child {
        border-bottom: 0;
    }

    .ws_process_item {
        grid-template-columns: 1fr;
    }

    .ws_cta_box {
        padding: 30px;
    }

    .ws_arch_layer {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .ws_arch_layer span {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .ws_app_eyebrow {
        font-size: 12px;
        min-height: 32px;
        padding: 7px 13px 7px 10px;
    }

    .ws_app_eyebrow span {
        width: 18px;
        height: 18px;
    }

    .ws_app_eyebrow span::before {
        width: 7px;
        height: 7px;
        box-shadow: 0 0 0 5px rgba(21,87,255,.14);
    }

    .ws_dark_section .ws_app_grid_3 .ws_app_card {
        animation: none !important;
    }

    .ws_dark_section .ws_app_grid_3 .ws_app_card:hover {
        transform: translateY(-4px);
    }
}
