:root {
    --bwd-ink: #10131f;
    --bwd-muted: #5e6475;
    --bwd-line: #e7e9f2;
    --bwd-white: #ffffff;
    --bwd-soft: #f7f8fc;
    --bwd-blue: #246bfe;
    --bwd-coral: #ff5f57;
    --bwd-green: #0fa678;
    --bwd-yellow: #ffd84d;
    --bwd-violet: #7c3cff;
    --bwd-shadow: 0 18px 55px rgba(21, 26, 45, 0.12);
    --bwd-radius: 8px;
    --bwd-container: 1180px;
    --bwd-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bwd-white);
    color: var(--bwd-ink);
    font-family: var(--bwd-font);
    font-size: 16px;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration-color: rgba(36, 107, 254, 0.35);
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--bwd-blue);
}

h1,
h2,
h3,
h4 {
    margin: 0 0 18px;
    line-height: 1.04;
    letter-spacing: 0;
}

h1 {
    max-width: 920px;
    font-size: clamp(42px, 7vw, 86px);
}

h2 {
    font-size: clamp(32px, 4vw, 56px);
}

h3 {
    font-size: clamp(22px, 2.4vw, 30px);
}

p {
    margin: 0 0 18px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
    z-index: 1000;
    width: auto;
    height: auto;
    padding: 12px 16px;
    clip: auto;
    background: var(--bwd-ink);
    color: var(--bwd-white);
}

.bwd-container {
    width: min(calc(100% - 40px), var(--bwd-container));
    margin-inline: auto;
}

.bwd-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(231, 233, 242, 0.9);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
}

.bwd-site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 24px;
}

.bwd-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 850;
    text-decoration: none;
}

.bwd-brand__mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 2px solid var(--bwd-ink);
    border-radius: var(--bwd-radius);
    background: var(--bwd-yellow);
    box-shadow: 6px 6px 0 var(--bwd-ink);
    color: var(--bwd-ink);
    font-size: 14px;
}

.bwd-brand__text {
    font-size: 18px;
}

.bwd-menu,
.bwd-footer-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bwd-menu a,
.bwd-footer-menu a {
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
}

.bwd-menu li:last-child a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    border: 2px solid var(--bwd-ink);
    border-radius: var(--bwd-radius);
    padding: 0 16px;
    background: var(--bwd-ink);
    color: var(--bwd-white);
    box-shadow: 4px 4px 0 var(--bwd-yellow);
}

.bwd-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 2px solid var(--bwd-ink);
    border-radius: var(--bwd-radius);
    background: var(--bwd-white);
}

.bwd-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--bwd-ink);
}

.bwd-hero {
    overflow: hidden;
    padding: 96px 0 54px;
    background:
        linear-gradient(135deg, rgba(36, 107, 254, 0.12), transparent 35%),
        linear-gradient(315deg, rgba(255, 216, 77, 0.38), transparent 38%),
        var(--bwd-white);
}

.bwd-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: center;
    gap: 56px;
}

.bwd-hero__content p {
    max-width: 680px;
    color: var(--bwd-muted);
    font-size: clamp(18px, 2vw, 22px);
}

.bwd-hero__actions,
.bwd-plugin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.bwd-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bwd-ink);
    border-radius: var(--bwd-radius);
    padding: 0 18px;
    font-size: 15px;
    font-weight: 850;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.bwd-button:hover {
    transform: translate(-2px, -2px);
    color: inherit;
}

.bwd-button--primary {
    background: var(--bwd-blue);
    color: var(--bwd-white);
    box-shadow: 5px 5px 0 var(--bwd-ink);
}

.bwd-button--secondary {
    background: var(--bwd-yellow);
    color: var(--bwd-ink);
    box-shadow: 5px 5px 0 var(--bwd-ink);
}

.bwd-button--ghost {
    background: var(--bwd-white);
    color: var(--bwd-ink);
}

.bwd-hero__visual {
    position: relative;
    min-height: 470px;
}

.bwd-hero__visual::before {
    position: absolute;
    inset: 34px 34px 74px 54px;
    border: 2px solid var(--bwd-ink);
    border-radius: 24px;
    background:
        linear-gradient(90deg, rgba(16, 19, 31, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(16, 19, 31, 0.08) 1px, transparent 1px),
        var(--bwd-white);
    background-size: 28px 28px;
    box-shadow: 18px 18px 0 var(--bwd-coral);
    content: "";
}

.bwd-orbit-card {
    position: absolute;
    width: min(76%, 340px);
    border: 2px solid var(--bwd-ink);
    border-radius: var(--bwd-radius);
    padding: 22px;
    background: var(--bwd-white);
    box-shadow: 10px 10px 0 var(--bwd-ink);
}

.bwd-orbit-card span,
.bwd-card__meta,
.bwd-status {
    display: block;
    margin-bottom: 8px;
    color: var(--bwd-muted);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.bwd-orbit-card strong {
    display: block;
    font-size: 26px;
    line-height: 1.08;
}

.bwd-orbit-card--web {
    top: 0;
    left: 0;
    background: #eaf1ff;
}

.bwd-orbit-card--shop {
    top: 154px;
    right: 0;
    background: #fff5c9;
}

.bwd-orbit-card--plugin {
    bottom: 0;
    left: 62px;
    background: #e8fff7;
}

.bwd-section,
.bwd-page-hero {
    padding: 86px 0;
}

.bwd-section--services {
    background: var(--bwd-ink);
    color: var(--bwd-white);
}

.bwd-section--plugins {
    background: linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
}

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

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

.bwd-section-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.bwd-section-heading p {
    color: var(--bwd-muted);
    font-size: 18px;
}

.bwd-section--services .bwd-section-heading p {
    color: rgba(255, 255, 255, 0.72);
}

.bwd-section-heading--row {
    display: flex;
    max-width: none;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.bwd-service-grid,
.bwd-card-grid,
.bwd-plugin-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.bwd-card-grid,
.bwd-plugin-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bwd-card-grid--plugins,
.bwd-plugin-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bwd-service,
.bwd-card {
    border: 2px solid var(--bwd-ink);
    border-radius: var(--bwd-radius);
    background: var(--bwd-white);
    color: var(--bwd-ink);
    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.2);
}

.bwd-service {
    min-height: 230px;
    padding: 24px;
}

.bwd-service p,
.bwd-card p {
    color: var(--bwd-muted);
}

.bwd-service--blue {
    background: #eaf1ff;
}

.bwd-service--coral {
    background: #ffe9e7;
}

.bwd-service--green {
    background: #e6fff6;
}

.bwd-service--yellow {
    background: #fff4bd;
}

.bwd-capability-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bwd-capability-list span {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    border: 2px solid var(--bwd-ink);
    border-radius: var(--bwd-radius);
    padding: 0 14px;
    background: var(--bwd-white);
    box-shadow: 4px 4px 0 rgba(16, 19, 31, 0.14);
    font-weight: 800;
}

.bwd-capability-list span:nth-child(4n + 1) {
    background: #eaf1ff;
}

.bwd-capability-list span:nth-child(4n + 2) {
    background: #ffe9e7;
}

.bwd-capability-list span:nth-child(4n + 3) {
    background: #e6fff6;
}

.bwd-capability-list span:nth-child(4n + 4) {
    background: #fff4bd;
}

.bwd-card {
    overflow: hidden;
}

.bwd-card__image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 2px solid var(--bwd-ink);
    background: var(--bwd-soft);
}

.bwd-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bwd-plugin-card .bwd-card__image {
    aspect-ratio: 16 / 9;
}

.bwd-card__body {
    padding: 24px;
}

.bwd-card h3 a {
    text-decoration: none;
}

.bwd-card__price {
    display: block;
    margin: 16px 0 0;
}

.bwd-client-card__logo {
    max-height: 70px;
    width: auto;
    margin-bottom: 18px;
}

.bwd-page-hero {
    background: var(--bwd-soft);
}

.bwd-page-hero h1 {
    font-size: clamp(38px, 5vw, 68px);
}

.bwd-page-hero__description {
    max-width: 720px;
    color: var(--bwd-muted);
    font-size: 19px;
}

.bwd-content {
    max-width: 780px;
}

.bwd-content > *:first-child {
    margin-top: 0;
}

.bwd-content img {
    border-radius: var(--bwd-radius);
}

.bwd-product-hero {
    padding: 76px 0;
    background:
        linear-gradient(135deg, rgba(124, 60, 255, 0.12), transparent 42%),
        linear-gradient(315deg, rgba(15, 166, 120, 0.13), transparent 42%),
        var(--bwd-white);
}

.bwd-product-hero--project {
    background:
        linear-gradient(135deg, rgba(36, 107, 254, 0.13), transparent 45%),
        linear-gradient(315deg, rgba(255, 216, 77, 0.36), transparent 42%),
        var(--bwd-white);
}

.bwd-product-hero__grid,
.bwd-two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
    align-items: center;
    gap: 48px;
}

.bwd-product-hero h1 {
    font-size: clamp(42px, 6vw, 78px);
}

.bwd-product-hero p {
    color: var(--bwd-muted);
    font-size: 19px;
}

.bwd-price-line {
    display: inline-flex;
    margin-top: 8px;
    border: 2px solid var(--bwd-ink);
    border-radius: var(--bwd-radius);
    padding: 8px 12px;
    background: var(--bwd-yellow);
    font-weight: 850;
}

.bwd-product-hero__image {
    margin: 0;
    overflow: hidden;
    border: 2px solid var(--bwd-ink);
    border-radius: var(--bwd-radius);
    background: var(--bwd-white);
    box-shadow: 12px 12px 0 var(--bwd-ink);
}

.bwd-product-hero__image img {
    width: 100%;
}

.bwd-two-column {
    align-items: start;
}

.bwd-product-spec,
.bwd-note {
    border: 2px solid var(--bwd-ink);
    border-radius: var(--bwd-radius);
    padding: 26px;
    background: var(--bwd-white);
    box-shadow: 7px 7px 0 var(--bwd-yellow);
}

.bwd-product-spec h2 {
    font-size: 28px;
}

.bwd-product-spec dl {
    margin: 0;
}

.bwd-product-spec dl div {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 16px;
    border-top: 1px solid var(--bwd-line);
    padding: 14px 0;
}

.bwd-product-spec dt {
    color: var(--bwd-muted);
    font-weight: 800;
}

.bwd-product-spec dd {
    margin: 0;
}

.bwd-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bwd-feature-list li {
    border: 2px solid var(--bwd-ink);
    border-radius: var(--bwd-radius);
    padding: 18px;
    background: var(--bwd-white);
    font-weight: 750;
}

.bwd-cta {
    padding: 90px 0;
    background: var(--bwd-blue);
    color: var(--bwd-white);
}

.bwd-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, auto);
    align-items: center;
    gap: 28px;
}

.bwd-cta h2 {
    max-width: 780px;
}

.bwd-cta p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.bwd-site-footer {
    padding: 42px 0;
    border-top: 1px solid var(--bwd-line);
    background: var(--bwd-ink);
    color: var(--bwd-white);
}

.bwd-site-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.bwd-site-footer p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.68);
}

.bwd-footer-menu {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}

.bwd-elementor-content {
    width: 100%;
}

.navigation.pagination {
    margin-top: 38px;
}

@media (max-width: 980px) {
    .bwd-hero__grid,
    .bwd-product-hero__grid,
    .bwd-two-column,
    .bwd-cta__inner {
        grid-template-columns: 1fr;
    }

    .bwd-service-grid,
    .bwd-card-grid,
    .bwd-card-grid--plugins,
    .bwd-plugin-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bwd-section-heading--row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .bwd-container {
        width: min(calc(100% - 28px), var(--bwd-container));
    }

    .bwd-site-header__inner {
        min-height: 68px;
    }

    .bwd-nav-toggle {
        display: block;
    }

    .bwd-primary-nav {
        position: absolute;
        top: 68px;
        right: 14px;
        left: 14px;
        display: none;
        border: 2px solid var(--bwd-ink);
        border-radius: var(--bwd-radius);
        padding: 16px;
        background: var(--bwd-white);
        box-shadow: 8px 8px 0 var(--bwd-ink);
    }

    .bwd-primary-nav.is-open {
        display: block;
    }

    .bwd-menu {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .bwd-menu li:last-child a {
        justify-content: center;
    }

    .bwd-hero,
    .bwd-section,
    .bwd-page-hero,
    .bwd-product-hero,
    .bwd-cta {
        padding: 56px 0;
    }

    .bwd-hero__visual {
        min-height: 410px;
    }

    .bwd-orbit-card {
        width: 82%;
    }

    .bwd-card-grid,
    .bwd-card-grid--plugins,
    .bwd-plugin-preview-grid,
    .bwd-service-grid,
    .bwd-feature-list {
        grid-template-columns: 1fr;
    }

    .bwd-product-spec dl div {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .bwd-site-footer__inner {
        flex-direction: column;
    }
}
