.coworking-page {
    --cw-ink: #0b2638;
    --cw-deep: #071d2b;
    --cw-blue: #1b6fe5;
    --cw-teal: #00b99a;
    --cw-orange: #f5a623;
    --cw-muted: #5f7180;
    --cw-line: #dfe8ee;
    --cw-soft: #f4f8fa;
    color: var(--cw-ink);
    background: #fff;
}

.coworking-page * { box-sizing: border-box; }
.coworking-page .wrap { width: min(1180px, calc(100% - 48px)); }

.cw-hero {
    min-height: 660px;
    position: relative;
    display: flex;
    align-items: center;
    background: url(../images/coworking-hero.jpg) center/cover no-repeat;
    overflow: hidden;
}

.cw-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 24, 37, .96) 0%, rgba(4, 24, 37, .86) 42%, rgba(4, 24, 37, .24) 75%, rgba(4, 24, 37, .08) 100%);
}

.cw-hero__content { position: relative; z-index: 1; max-width: 720px; padding: 150px 0 90px; color: #fff; }
.cw-eyebrow { margin: 0 0 18px; color: #47ddc6; font-size: 15px; letter-spacing: .16em; font-weight: 700; }
.cw-hero h1 { margin: 0; font-size: 52px; line-height: 1.18; font-weight: 700; letter-spacing: -.02em; }
.cw-hero__lead { max-width: 650px; margin: 24px 0 0; color: rgba(255,255,255,.82); font-size: 19px; line-height: 1.8; }
.cw-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.cw-tags li { padding: 8px 14px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(255,255,255,.08); color: #fff; font-size: 14px; }
.cw-actions { display: flex; gap: 14px; margin-top: 34px; }
.cw-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 148px; height: 48px; padding: 0 22px; border-radius: 4px; font-size: 15px; transition: .25s ease; }
.cw-btn--primary { background: var(--cw-teal); color: #fff; }
.cw-btn--primary:hover { background: #00a88c; color: #fff; }
.cw-btn--ghost { border: 1px solid rgba(255,255,255,.45); color: #fff; }
.cw-btn--ghost:hover { background: #fff; color: var(--cw-ink); }

.cw-section { padding: 92px 0; }
.cw-section--soft { background: var(--cw-soft); }
.cw-section--dark { background: var(--cw-deep); color: #fff; }
.cw-section-head { max-width: 790px; margin-bottom: 42px; }
.cw-kicker { display: block; margin-bottom: 12px; color: var(--cw-blue); font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.cw-section--dark .cw-kicker { color: #47ddc6; }
.cw-section h2 { margin: 0; font-size: 38px; line-height: 1.35; color: inherit; }
.cw-section-head p { margin: 17px 0 0; color: var(--cw-muted); font-size: 17px; line-height: 1.8; }
.cw-section--dark .cw-section-head p { color: rgba(255,255,255,.7); }

.cw-problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cw-problem { min-height: 190px; padding: 28px; border: 1px solid var(--cw-line); background: #fff; }
.cw-problem__num { color: var(--cw-orange); font-size: 13px; font-weight: 700; }
.cw-problem h3 { margin: 22px 0 10px; font-size: 20px; color: var(--cw-ink); }
.cw-problem p { margin: 0; color: var(--cw-muted); font-size: 14px; line-height: 1.75; }

.cw-platform { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.cw-platform__core { padding: 40px; border-radius: 10px; background: linear-gradient(145deg, #0d3348, #082331); box-shadow: 0 22px 60px rgba(0,0,0,.2); }
.cw-platform__core small { color: #4de3cb; font-weight: 700; letter-spacing: .1em; }
.cw-platform__core h3 { margin: 15px 0 10px; color: #fff; font-size: 28px; }
.cw-platform__core p { margin: 0; color: rgba(255,255,255,.68); line-height: 1.8; }
.cw-object-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.cw-object-list li { padding: 9px 12px; border-radius: 3px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.86); font-size: 13px; }
.cw-loop { display: grid; gap: 16px; }
.cw-loop article { padding: 22px 24px; border-left: 3px solid var(--cw-teal); background: rgba(255,255,255,.06); }
.cw-loop h3 { margin: 0 0 8px; color: #fff; font-size: 19px; }
.cw-loop p { margin: 0; color: rgba(255,255,255,.66); line-height: 1.7; }

.cw-scene-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cw-scene { position: relative; min-height: 260px; padding: 30px; border: 1px solid var(--cw-line); background: #fff; overflow: hidden; }
.cw-scene::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: linear-gradient(90deg, var(--cw-blue), var(--cw-teal)); transform: scaleX(0); transform-origin: left; transition: .25s ease; }
.cw-scene:hover::after { transform: scaleX(1); }
.cw-scene__icon { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: #eaf3ff; color: var(--cw-blue); font-size: 15px; font-weight: 700; }
.cw-scene h3 { margin: 20px 0 12px; color: var(--cw-ink); font-size: 21px; }
.cw-scene p { margin: 0; color: var(--cw-muted); font-size: 14px; line-height: 1.75; }
.cw-scene strong { display: block; margin-top: 18px; color: var(--cw-teal); font-size: 13px; }

.cw-capability { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: start; }
.cw-capability__intro { position: sticky; top: 110px; }
.cw-capability__intro p { color: var(--cw-muted); font-size: 16px; line-height: 1.85; }
.cw-capability-list { border-top: 1px solid var(--cw-line); }
.cw-capability-list article { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--cw-line); }
.cw-capability-list b { color: var(--cw-blue); font-size: 14px; }
.cw-capability-list h3 { margin: 0 0 7px; color: var(--cw-ink); font-size: 19px; }
.cw-capability-list p { margin: 0; color: var(--cw-muted); font-size: 14px; line-height: 1.7; }

.cw-value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.14); }
.cw-value { min-height: 220px; padding: 30px; background: var(--cw-deep); }
.cw-value span { color: #4de3cb; font-size: 13px; font-weight: 700; }
.cw-value h3 { margin: 28px 0 12px; color: #fff; font-size: 22px; }
.cw-value p { margin: 0; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.75; }

.cw-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; counter-reset: step; }
.cw-step { position: relative; padding: 26px 22px 24px; border-top: 2px solid var(--cw-line); counter-increment: step; }
.cw-step::before { content: "0" counter(step); display: block; margin: -42px 0 22px; width: 34px; height: 34px; border-radius: 50%; background: var(--cw-blue); color: #fff; font-size: 12px; font-weight: 700; line-height: 34px; text-align: center; }
.cw-step h3 { margin: 0 0 9px; color: var(--cw-ink); font-size: 18px; }
.cw-step p { margin: 0; color: var(--cw-muted); font-size: 13px; line-height: 1.7; }

.cw-cta { background: linear-gradient(120deg, #0b2c40, #071d2b); color: #fff; }
.cw-cta__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; padding: 72px 0; }
.cw-cta h2 { margin: 0; color: #fff; font-size: 36px; line-height: 1.4; }
.cw-cta p { margin: 18px 0 0; color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.8; }
.cw-cta__list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 0; padding: 0; list-style: none; }
.cw-cta__list li { padding: 13px 15px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.78); font-size: 13px; }
.cw-cta .cw-actions { margin-top: 26px; }

@media (max-width: 960px) {
    .coworking-page .wrap { width: min(100% - 36px, 720px); }
    .cw-hero { min-height: 620px; background-position: 60% center; }
    .cw-hero::before { background: rgba(4,24,37,.8); }
    .cw-hero__content { padding-top: 130px; }
    .cw-hero h1 { font-size: 40px; }
    .cw-problem-grid, .cw-scene-grid { grid-template-columns: 1fr 1fr; }
    .cw-platform, .cw-capability, .cw-cta__inner { grid-template-columns: 1fr; }
    .cw-capability__intro { position: static; }
    .cw-value-grid { grid-template-columns: 1fr 1fr; }
    .cw-steps { grid-template-columns: 1fr; gap: 18px; }
    .cw-step { border-top: 0; border-left: 2px solid var(--cw-line); padding: 0 0 22px 30px; }
    .cw-step::before { position: absolute; left: -18px; top: -2px; margin: 0; }
}

@media (max-width: 640px) {
    .coworking-page .wrap { width: calc(100% - 30px); }
    .cw-hero { min-height: 610px; }
    .cw-hero__content { padding: 122px 0 64px; }
    .cw-eyebrow { font-size: 12px; }
    .cw-hero h1 { font-size: 32px; line-height: 1.3; }
    .cw-hero__lead { font-size: 15px; }
    .cw-actions { display: grid; grid-template-columns: 1fr; }
    .cw-btn { width: 100%; }
    .cw-section { padding: 64px 0; }
    .cw-section h2, .cw-cta h2 { font-size: 28px; }
    .cw-section-head p { font-size: 15px; }
    .cw-problem-grid, .cw-scene-grid, .cw-value-grid, .cw-cta__list { grid-template-columns: 1fr; }
    .cw-platform__core, .cw-problem, .cw-scene, .cw-value { padding: 24px; }
    .cw-capability-list article { grid-template-columns: 42px 1fr; }
    .cw-cta__inner { padding: 58px 0; gap: 36px; }
}
